Use explicit agebd_env_suffix lower/upper (#65)
Deploy / deploy (push) Failing after 42s

Sub env vars cicd

Co-authored-by: Benjamin Labrecque <labrecque.benji@gmail.com>
Reviewed-on: #65
This commit was merged in pull request #65.
This commit is contained in:
2026-08-05 11:02:18 +02:00
co-authored by Benjamin Labrecque
parent fc46d1a48b
commit a06fded916
69 changed files with 734 additions and 719 deletions
@@ -12,6 +12,15 @@ SERVICE_NAME_UPPER=$(echo "$SERVICE_NAME" | tr '[:lower:]' '[:upper:]')
SERVICE_DIR=/sls/bd/hla/${AGEBD_ENV}/services/${SERVICE_NAME_LOWER}/current
SYSTEMD_UNIT_NAME=AGEBD-SERVICE-${SERVICE_NAME_UPPER}.service
SYSTEMD_UNIT_FILE_PATH=${SERVICE_DIR}/systemd/${SYSTEMD_UNIT_NAME}
IOC_DIR=${SERVICE_DIR}/ioc
if [ "${AGEBD_ENV}" = "dev" ]; then
AGEBD_ENV_SUFFIX_UPPER="-DEV"
AGEBD_ENV_SUFFIX_LOWER="-dev"
else
AGEBD_ENV_SUFFIX_UPPER=""
AGEBD_ENV_SUFFIX_LOWER=""
fi
# TODO: see https://gitea.psi.ch/sls/hla_framework_bd/issues/50
# rm -rf "${SERVICE_DIR}"
@@ -27,11 +36,17 @@ rsync -avz --delete \
--exclude='.pytest_cache/' \
./services/${SERVICE_NAME_LOWER}/current/* ${SERVICE_DIR}/
### SUBSTITUTIONS
### IOC
sed -i "s/{{ *agebd_env_suffix_upper* }}/${AGEBD_ENV_SUFFIX_UPPER}/g" "${IOC_DIR}"
sed -i "s/{{ *agebd_env_suffix_lower* }}/${AGEBD_ENV_SUFFIX_LOWER}/g" "${IOC_DIR}"
### SYSTEMD
if [ -f "${SYSTEMD_UNIT_FILE_PATH}" ]; then
sed -i "s/{{ *agebd_env* }}/${AGEBD_ENV}/g" "${SYSTEMD_UNIT_FILE_PATH}"
fi
mkdir -p ${HOME}/.config/systemd/user
ln -sf "${SYSTEMD_UNIT_FILE_PATH}" "${HOME}/.config/systemd/user/${SYSTEMD_UNIT_NAME}"
+4 -4
View File
@@ -32,21 +32,21 @@
cmd: "mv {{ ioc_base_dir }}/{{ orig_params_name }} {{ ioc_base_dir }}/{{ target_params_name }}"
removes: "{{ ioc_base_dir }}/{{ orig_params_name }}" # Only runs if the original file exists
# Replace {{ agebd_env_suffix }} inside the newly renamed subs file
# Replace {{ agebd_env_suffix_upper }} inside the newly renamed subs file
- name: "[{{ target_service_name_lower }}] Substitute environment tokens inside subs file"
ansible.builtin.replace:
path: "{{ ioc_base_dir }}/{{ target_subs_name }}"
regexp: '\{\{\s*agebd_env_suffix\s*\}\}'
regexp: '\{\{\s*agebd_env_suffix_upper\s*\}\}'
replace: "{{ env_suffix_upper }}"
# Replace {{ agebd_env_suffix }} and {{ ioc_port }} inside the newly renamed params file
# Replace {{ agebd_env_suffix_lower }} and {{ ioc_port }} inside the newly renamed params file
- name: "[{{ target_service_name_lower }}] Substitute environment token inside params file"
ansible.builtin.replace:
path: "{{ ioc_base_dir }}/{{ target_params_name }}"
regexp: "{{ item.regexp }}"
replace: "{{ item.replace | string }}"
with_items:
- { regexp: '\{\{\s*agebd_env_suffix\s*\}\}', replace: "{{ env_suffix_lower }}" }
- { regexp: '\{\{\s*agebd_env_suffix_lower\s*\}\}', replace: "{{ env_suffix_lower }}" }
- { regexp: '\{\{\s*ioc_port\s*\}\}', replace: "{{ ioc_port }}" }
- name: "[{{ target_service_name_lower }}] Run ioc install"
+1 -1
View File
@@ -24,7 +24,7 @@ class MasterIocSubs(BaseModel):
Parses the configuration text and appends a new row before the closing bracket.
"""
quoted_service = f'"{service_name}"'
new_row = f' {{ "{{{{ agebd_env_suffix }}}}", {quoted_service:<22} , "{starton}", "{autooff}" }}'
new_row = f' {{ "{{{{ agebd_env_suffix_upper }}}}", {quoted_service:<22} , "{starton}", "{autooff}" }}'
# Use regex to find the last closing curly brace of the configuration block
# This targets the line that contains only a lone closing brace, optional spaces, and maybe a comma/semicolon.
+12 -12
View File
@@ -71,7 +71,7 @@ caLabel[statusTip="Operation"]{
<string notr="true">A</string>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-ALH$(AGEBD_ENV_SUFFIX):MASTER-GUIRELOAD</string>
<string notr="true">AGEBD-ALH{{ agebd_env_suffix_upper }}:MASTER-GUIRELOAD</string>
</property>
<property name="eventSignal">
<enum>caCalc::TriggerZeroToOne</enum>
@@ -106,7 +106,7 @@ caLabel[statusTip="Operation"]{
<string notr="true">!A</string>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-ALH$(AGEBD_ENV_SUFFIX):MASTER-ONOFF</string>
<string notr="true">AGEBD-ALH{{ agebd_env_suffix_upper }}:MASTER-ONOFF</string>
</property>
</widget>
<widget class="QTabWidget" name="tabWidget">
@@ -586,7 +586,7 @@ caLabel[statusTip="Operation"]{
<bool>false</bool>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-ALH$(AGEBD_ENV_SUFFIX):MASTER-ALIVE</string>
<string notr="true">AGEBD-ALH{{ agebd_env_suffix_upper }}:MASTER-ALIVE</string>
</property>
<property name="colorMode">
<enum>caLed::Alarm</enum>
@@ -602,7 +602,7 @@ caLabel[statusTip="Operation"]{
</rect>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-ALH$(AGEBD_ENV_SUFFIX):MASTER-STARTTIME</string>
<string notr="true">AGEBD-ALH{{ agebd_env_suffix_upper }}:MASTER-STARTTIME</string>
</property>
<property name="colorMode">
<enum>caLineEdit::Default</enum>
@@ -624,7 +624,7 @@ caLabel[statusTip="Operation"]{
</rect>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-ALH$(AGEBD_ENV_SUFFIX):MASTER-STATUS</string>
<string notr="true">AGEBD-ALH{{ agebd_env_suffix_upper }}:MASTER-STATUS</string>
</property>
<property name="colorMode">
<enum>caLineEdit::Default</enum>
@@ -646,7 +646,7 @@ caLabel[statusTip="Operation"]{
</rect>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-ALH$(AGEBD_ENV_SUFFIX):MASTER-VERSION</string>
<string notr="true">AGEBD-ALH{{ agebd_env_suffix_upper }}:MASTER-VERSION</string>
</property>
<property name="colorMode">
<enum>caLineEdit::Default</enum>
@@ -668,7 +668,7 @@ caLabel[statusTip="Operation"]{
</rect>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-ALH$(AGEBD_ENV_SUFFIX):MASTER-ONOFF</string>
<string notr="true">AGEBD-ALH{{ agebd_env_suffix_upper }}:MASTER-ONOFF</string>
</property>
<property name="stackingMode" stdset="0">
<enum>caChoice::Column</enum>
@@ -717,7 +717,7 @@ caLabel[statusTip="Operation"]{
<bool>false</bool>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-ALH$(AGEBD_ENV_SUFFIX):MASTER-ONOFF-RB</string>
<string notr="true">AGEBD-ALH{{ agebd_env_suffix_upper }}:MASTER-ONOFF-RB</string>
</property>
<property name="colorMode">
<enum>caLed::Alarm</enum>
@@ -763,7 +763,7 @@ caLabel[statusTip="Operation"]{
<bool>false</bool>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-CPCL-MASTER$(AGEBD_ENV_SUFFIX):STATUS</string>
<string notr="true">AGEBD-CPCL-MASTER{{ agebd_env_suffix_upper }}:STATUS</string>
</property>
<property name="colorMode">
<enum>caLed::Alarm</enum>
@@ -1040,7 +1040,7 @@ caLabel[statusTip="Operation"]{
<enum>EPushButton::None</enum>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-MASTER$(AGEBD_ENV_SUFFIX):MASTER-LOGS-REQ</string>
<string notr="true">AGEBD-MASTER{{ agebd_env_suffix_upper }}:MASTER-LOGS-REQ</string>
</property>
<property name="label">
<string notr="true">Logs</string>
@@ -1106,7 +1106,7 @@ caLabel[statusTip="Operation"]{
<bool>false</bool>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-ALH$(AGEBD_ENV_SUFFIX):MASTER-GUIRELOAD</string>
<string notr="true">AGEBD-ALH{{ agebd_env_suffix_upper }}:MASTER-GUIRELOAD</string>
</property>
<property name="label">
<string notr="true">Reload</string>
@@ -1172,7 +1172,7 @@ caLabel[statusTip="Operation"]{
<enum>EPushButton::None</enum>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-CPCL-MASTER$(AGEBD_ENV_SUFFIX):RESTART</string>
<string notr="true">AGEBD-CPCL-MASTER{{ agebd_env_suffix_upper }}:RESTART</string>
</property>
<property name="label">
<string notr="true">↺</string>
@@ -30,7 +30,7 @@
<number>0</number>
</property>
<property name="channel" stdset="0">
<string>AGEBD-TESTSERVICE99-X00$(AGEBD_ENV_SUFFIX):AO</string>
<string>AGEBD-TESTSERVICE99-X00{{ agebd_env_suffix_upper }}:AO</string>
</property>
<property name="maxValue">
<double>9.000000000000000</double>
@@ -49,10 +49,10 @@
</rect>
</property>
<property name="text">
<string>Toggle AGEBD-ALH$(AGEBD_ENV_SUFFIX):TESTSERVICE99-X00-ONOFF</string>
<string>Toggle AGEBD-ALH{{ agebd_env_suffix_upper }}:TESTSERVICE99-X00-ONOFF</string>
</property>
<property name="channel" stdset="0">
<string>AGEBD-ALH$(AGEBD_ENV_SUFFIX):TESTSERVICE99-X00-ONOFF</string>
<string>AGEBD-ALH{{ agebd_env_suffix_upper }}:TESTSERVICE99-X00-ONOFF</string>
</property>
</widget>
<widget class="QLabel" name="label">
@@ -70,7 +70,7 @@
</font>
</property>
<property name="text">
<string>Value of AGEBD-TESTSERVICE99-X00$(AGEBD_ENV_SUFFIX):AO</string>
<string>Value of AGEBD-TESTSERVICE99-X00{{ agebd_env_suffix_upper }}:AO</string>
</property>
</widget>
</widget>
@@ -1,5 +1,5 @@
file MASTER.template {
pattern { SUFFIX SERVICE STARTON AUTOOFF }
{ "{{ agebd_env_suffix }}", "MASTER" , "0", "30" }
{ "{{ agebd_env_suffix }}", "TESTSERVICE99-X00" , "0", "0" }
{ "{{ agebd_env_suffix_upper }}", "MASTER" , "0", "30" }
{ "{{ agebd_env_suffix_upper }}", "TESTSERVICE99-X00" , "0", "0" }
}
@@ -1,4 +1,4 @@
file TESTSERVICE99-X00.template {
pattern { DEVICE }
{ AGEBD-TESTSERVICE99-X00{{ agebd_env_suffix }} }
{ AGEBD-TESTSERVICE99-X00{{ agebd_env_suffix_upper }} }
}
@@ -1,6 +1,6 @@
cpu_architecture: x86_64
epics_version: 7.0.8
ioc_host: sls-vserv-bd-01{{ agebd_env_suffix }}
ioc_host: sls-vserv-bd-01{{ agebd_env_suffix_lower }}
ioc_port: {{ ioc_port }}
os: RHEL8
os_id: rhel
+13 -13
View File
@@ -71,7 +71,7 @@ caLabel[statusTip="Operation"]{
<string notr="true">A</string>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-ALH$(AGEBD_ENV_SUFFIX):MASTER-GUIRELOAD</string>
<string notr="true">AGEBD-ALH{{ agebd_env_suffix_upper }}:MASTER-GUIRELOAD</string>
</property>
<property name="eventSignal">
<enum>caCalc::TriggerZeroToOne</enum>
@@ -106,7 +106,7 @@ caLabel[statusTip="Operation"]{
<string notr="true">!A</string>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-ALH$(AGEBD_ENV_SUFFIX):MASTER-ONOFF</string>
<string notr="true">AGEBD-ALH{{ agebd_env_suffix_upper }}:MASTER-ONOFF</string>
</property>
</widget>
<widget class="QTabWidget" name="tabWidget">
@@ -586,7 +586,7 @@ caLabel[statusTip="Operation"]{
<bool>false</bool>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-ALH$(AGEBD_ENV_SUFFIX):MASTER-ALIVE</string>
<string notr="true">AGEBD-ALH{{ agebd_env_suffix_upper }}:MASTER-ALIVE</string>
</property>
<property name="colorMode">
<enum>caLed::Alarm</enum>
@@ -602,7 +602,7 @@ caLabel[statusTip="Operation"]{
</rect>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-ALH$(AGEBD_ENV_SUFFIX):MASTER-STARTTIME</string>
<string notr="true">AGEBD-ALH{{ agebd_env_suffix_upper }}:MASTER-STARTTIME</string>
</property>
<property name="colorMode">
<enum>caLineEdit::Default</enum>
@@ -624,7 +624,7 @@ caLabel[statusTip="Operation"]{
</rect>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-ALH$(AGEBD_ENV_SUFFIX):MASTER-STATUS</string>
<string notr="true">AGEBD-ALH{{ agebd_env_suffix_upper }}:MASTER-STATUS</string>
</property>
<property name="colorMode">
<enum>caLineEdit::Default</enum>
@@ -646,7 +646,7 @@ caLabel[statusTip="Operation"]{
</rect>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-ALH$(AGEBD_ENV_SUFFIX):MASTER-VERSION</string>
<string notr="true">AGEBD-ALH{{ agebd_env_suffix_upper }}:MASTER-VERSION</string>
</property>
<property name="colorMode">
<enum>caLineEdit::Default</enum>
@@ -668,7 +668,7 @@ caLabel[statusTip="Operation"]{
</rect>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-ALH$(AGEBD_ENV_SUFFIX):MASTER-ONOFF</string>
<string notr="true">AGEBD-ALH{{ agebd_env_suffix_upper }}:MASTER-ONOFF</string>
</property>
<property name="stackingMode" stdset="0">
<enum>caChoice::Column</enum>
@@ -717,7 +717,7 @@ caLabel[statusTip="Operation"]{
<bool>false</bool>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-ALH$(AGEBD_ENV_SUFFIX):MASTER-ONOFF-RB</string>
<string notr="true">AGEBD-ALH{{ agebd_env_suffix_upper }}:MASTER-ONOFF-RB</string>
</property>
<property name="colorMode">
<enum>caLed::Alarm</enum>
@@ -763,7 +763,7 @@ caLabel[statusTip="Operation"]{
<bool>false</bool>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-CPCL-MASTER$(AGEBD_ENV_SUFFIX):STATUS</string>
<string notr="true">AGEBD-CPCL-MASTER{{ agebd_env_suffix_upper }}:STATUS</string>
</property>
<property name="colorMode">
<enum>caLed::Alarm</enum>
@@ -1040,7 +1040,7 @@ caLabel[statusTip="Operation"]{
<enum>EPushButton::None</enum>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-MASTER$(AGEBD_ENV_SUFFIX):MASTER-LOGS-REQ</string>
<string notr="true">AGEBD-MASTER{{ agebd_env_suffix_upper }}:MASTER-LOGS-REQ</string>
</property>
<property name="label">
<string notr="true">Logs</string>
@@ -1106,7 +1106,7 @@ caLabel[statusTip="Operation"]{
<bool>false</bool>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-ALH$(AGEBD_ENV_SUFFIX):MASTER-GUIRELOAD</string>
<string notr="true">AGEBD-ALH{{ agebd_env_suffix_upper }}:MASTER-GUIRELOAD</string>
</property>
<property name="label">
<string notr="true">Reload</string>
@@ -1172,7 +1172,7 @@ caLabel[statusTip="Operation"]{
<enum>EPushButton::None</enum>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-CPCL-MASTER$(AGEBD_ENV_SUFFIX):RESTART</string>
<string notr="true">AGEBD-CPCL-MASTER{{ agebd_env_suffix_upper }}:RESTART</string>
</property>
<property name="label">
<string notr="true">↺</string>
@@ -1322,4 +1322,4 @@ caLabel[statusTip="Operation"]{
</hints>
</connection>
</connections>
</ui>
</ui>
@@ -1,4 +1,4 @@
file MASTER.template {
pattern { SUFFIX SERVICE STARTON AUTOOFF }
{ "{{ agebd_env_suffix }}", "MASTER" , "0", "30" }
{ "{{ agebd_env_suffix_upper }}", "MASTER" , "0", "30" }
}
+15 -15
View File
@@ -43,7 +43,7 @@
<string notr="true">A</string>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-ALH$(AGEBD_ENV_SUFFIX):DBPM3CURR-GUIRELOAD</string>
<string notr="true">AGEBD-ALH{{ agebd_env_suffix_upper }}:DBPM3CURR-GUIRELOAD</string>
</property>
<property name="eventSignal">
<enum>caCalc::TriggerZeroToOne</enum>
@@ -185,7 +185,7 @@
<set>Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-DBPM3CURR$(AGEBD_ENV_SUFFIX):CHARGE-AVG</string>
<string notr="true">AGEBD-DBPM3CURR{{ agebd_env_suffix_upper }}:CHARGE-AVG</string>
</property>
<property name="foreground">
<color>
@@ -245,7 +245,7 @@
<set>Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-DBPM3CURR$(AGEBD_ENV_SUFFIX):CURRENT-AVG</string>
<string notr="true">AGEBD-DBPM3CURR{{ agebd_env_suffix_upper }}:CURRENT-AVG</string>
</property>
<property name="foreground">
<color>
@@ -305,7 +305,7 @@
<set>Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-DBPM3CURR$(AGEBD_ENV_SUFFIX):ACCUMULATED-BEAM-DOSE</string>
<string notr="true">AGEBD-DBPM3CURR{{ agebd_env_suffix_upper }}:ACCUMULATED-BEAM-DOSE</string>
</property>
<property name="foreground">
<color>
@@ -521,7 +521,7 @@
<set>Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-DBPM3CURR$(AGEBD_ENV_SUFFIX):CURRENT-AVG.EGU</string>
<string notr="true">AGEBD-DBPM3CURR{{ agebd_env_suffix_upper }}:CURRENT-AVG.EGU</string>
</property>
<property name="foreground">
<color>
@@ -581,7 +581,7 @@
<set>Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-DBPM3CURR$(AGEBD_ENV_SUFFIX):CHARGE-AVG.EGU</string>
<string notr="true">AGEBD-DBPM3CURR{{ agebd_env_suffix_upper }}:CHARGE-AVG.EGU</string>
</property>
<property name="foreground">
<color>
@@ -641,7 +641,7 @@
<set>Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-DBPM3CURR$(AGEBD_ENV_SUFFIX):ACCUMULATED-BEAM-DOSE.EGU</string>
<string notr="true">AGEBD-DBPM3CURR{{ agebd_env_suffix_upper }}:ACCUMULATED-BEAM-DOSE.EGU</string>
</property>
<property name="foreground">
<color>
@@ -755,7 +755,7 @@
</rect>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-ALH$(AGEBD_ENV_SUFFIX):DBPM3CURR-ONOFF</string>
<string notr="true">AGEBD-ALH{{ agebd_env_suffix_upper }}:DBPM3CURR-ONOFF</string>
</property>
<property name="stackingMode" stdset="0">
<enum>caChoice::Column</enum>
@@ -796,7 +796,7 @@
<set>Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-DBPM3CURR$(AGEBD_ENV_SUFFIX):CALIBRATION-DBPM3-2-PCT-NEW</string>
<string notr="true">AGEBD-DBPM3CURR{{ agebd_env_suffix_upper }}:CALIBRATION-DBPM3-2-PCT-NEW</string>
</property>
<property name="foreground">
<color>
@@ -853,7 +853,7 @@
<string>Calculate New Calibration Factor</string>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-DBPM3CURR$(AGEBD_ENV_SUFFIX):CONTROL-RECALIBRATE</string>
<string notr="true">AGEBD-DBPM3CURR{{ agebd_env_suffix_upper }}:CONTROL-RECALIBRATE</string>
</property>
<property name="label">
<string notr="true">Calculate New Calibration Factor</string>
@@ -872,7 +872,7 @@
</rect>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-DBPM3CURR$(AGEBD_ENV_SUFFIX):CONTROL-RECALIBRATE-NPTS</string>
<string notr="true">AGEBD-DBPM3CURR{{ agebd_env_suffix_upper }}:CONTROL-RECALIBRATE-NPTS</string>
</property>
<property name="precision">
<number>0</number>
@@ -894,7 +894,7 @@
<string>Apply New Calibration Factor</string>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-DBPM3CURR$(AGEBD_ENV_SUFFIX):CONTROL-RECALIBRATE-APPLY</string>
<string notr="true">AGEBD-DBPM3CURR{{ agebd_env_suffix_upper }}:CONTROL-RECALIBRATE-APPLY</string>
</property>
<property name="label">
<string notr="true">Apply New Calibration Factor</string>
@@ -922,7 +922,7 @@
<set>Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-DBPM3CURR$(AGEBD_ENV_SUFFIX):CALIBRATION-DBPM3-2-PCT</string>
<string notr="true">AGEBD-DBPM3CURR{{ agebd_env_suffix_upper }}:CALIBRATION-DBPM3-2-PCT</string>
</property>
<property name="foreground">
<color>
@@ -1118,7 +1118,7 @@
<set>Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-DBPM3CURR$(AGEBD_ENV_SUFFIX):ACCUMULATED-BEAM-DOSE-PCT</string>
<string notr="true">AGEBD-DBPM3CURR{{ agebd_env_suffix_upper }}:ACCUMULATED-BEAM-DOSE-PCT</string>
</property>
<property name="foreground">
<color>
@@ -1194,7 +1194,7 @@
<set>Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-DBPM3CURR$(AGEBD_ENV_SUFFIX):ACCUMULATED-BEAM-DOSE-PCT.EGU</string>
<string notr="true">AGEBD-DBPM3CURR{{ agebd_env_suffix_upper }}:ACCUMULATED-BEAM-DOSE-PCT.EGU</string>
</property>
<property name="foreground">
<color>
+1 -1
View File
@@ -106,7 +106,7 @@ caLabel[statusTip=&quot;Operation&quot;]{
</rect>
</property>
<property name="macro">
<string>name=Orbit Feedback,alive=ARSGE-CECL-FOFB1:FOFB-OPERATE,panelcmd=A_DI_FOFB_CECL_USER.ui;name=Hor. Tune Feedback,onoff=AGEBD-ALH$(AGEBD_ENV_SUFFIX):TUNEFBX-ONOFF,alive=AGEBD-ALH$(AGEBD_ENV_SUFFIX):TUNEFBX-ALIVE,panelcmd=A_BD_TuneBump.ui;name=Ver. Tune Feedback,onoff=AGEBD-ALH$(AGEBD_ENV_SUFFIX):TUNEFBY-ONOFF,alive=AGEBD-ALH$(AGEBD_ENV_SUFFIX):TUNEFBY-ALIVE,panelcmd=A_BD_TuneBump.ui</string>
<string>name=Orbit Feedback,alive=ARSGE-CECL-FOFB1:FOFB-OPERATE,panelcmd=A_DI_FOFB_CECL_USER.ui;name=Hor. Tune Feedback,onoff=AGEBD-ALH{{ agebd_env_suffix_upper }}:TUNEFBX-ONOFF,alive=AGEBD-ALH{{ agebd_env_suffix_upper }}:TUNEFBX-ALIVE,panelcmd=A_BD_TuneBump.ui;name=Ver. Tune Feedback,onoff=AGEBD-ALH{{ agebd_env_suffix_upper }}:TUNEFBY-ONOFF,alive=AGEBD-ALH{{ agebd_env_suffix_upper }}:TUNEFBY-ALIVE,panelcmd=A_BD_TuneBump.ui</string>
</property>
<property name="filename" stdset="0">
<string notr="true">A_BD_FeedBackOverview_inc.ui</string>
+11 -11
View File
@@ -66,7 +66,7 @@ caLabel[statusTip=&quot;Operation&quot;]{
<string notr="true">A</string>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-ALH$(AGEBD_ENV_SUFFIX):INJECTIONGUARD-GUIRELOAD</string>
<string notr="true">AGEBD-ALH{{ agebd_env_suffix_upper }}:INJECTIONGUARD-GUIRELOAD</string>
</property>
<property name="eventSignal">
<enum>caCalc::TriggerZeroToOne</enum>
@@ -89,7 +89,7 @@ caLabel[statusTip=&quot;Operation&quot;]{
</font>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-INJECTIONGUARD$(AGEBD_ENV_SUFFIX):CONTROL-MODE</string>
<string notr="true">AGEBD-INJECTIONGUARD{{ agebd_env_suffix_upper }}:CONTROL-MODE</string>
</property>
</widget>
<widget class="caLabel" name="calabel">
@@ -125,7 +125,7 @@ caLabel[statusTip=&quot;Operation&quot;]{
</rect>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-INJECTIONGUARD$(AGEBD_ENV_SUFFIX):CHECK-SUM</string>
<string notr="true">AGEBD-INJECTIONGUARD{{ agebd_env_suffix_upper }}:CHECK-SUM</string>
</property>
<property name="colorMode">
<enum>caLineEdit::Alarm_Default</enum>
@@ -405,7 +405,7 @@ caLabel[statusTip=&quot;Operation&quot;]{
<number>30</number>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-INJECTIONGUARD$(AGEBD_ENV_SUFFIX):STATUS-SECRET-MASTER</string>
<string notr="true">AGEBD-INJECTIONGUARD{{ agebd_env_suffix_upper }}:STATUS-SECRET-MASTER</string>
</property>
<property name="colorMode">
<enum>caLed::Alarm</enum>
@@ -547,7 +547,7 @@ caLabel[statusTip=&quot;Operation&quot;]{
<set>Qt::AlignCenter</set>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-INJECTIONGUARD$(AGEBD_ENV_SUFFIX):CHECK-SUM-OP</string>
<string notr="true">AGEBD-INJECTIONGUARD{{ agebd_env_suffix_upper }}:CHECK-SUM-OP</string>
</property>
<property name="colorMode">
<enum>caLineEdit::Alarm_Default</enum>
@@ -617,7 +617,7 @@ caLabel[statusTip=&quot;Operation&quot;]{
<set>Qt::AlignCenter</set>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-INJECTIONGUARD$(AGEBD_ENV_SUFFIX):CHECK-SUM-MD</string>
<string notr="true">AGEBD-INJECTIONGUARD{{ agebd_env_suffix_upper }}:CHECK-SUM-MD</string>
</property>
<property name="colorMode">
<enum>caLineEdit::Alarm_Default</enum>
@@ -696,7 +696,7 @@ caLabel[statusTip=&quot;Operation&quot;]{
<set>Qt::AlignCenter</set>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-INJECTIONGUARD$(AGEBD_ENV_SUFFIX):CHECK-SUM-LATCH</string>
<string notr="true">AGEBD-INJECTIONGUARD{{ agebd_env_suffix_upper }}:CHECK-SUM-LATCH</string>
</property>
<property name="colorMode">
<enum>caLineEdit::Alarm_Default</enum>
@@ -724,7 +724,7 @@ caLabel[statusTip=&quot;Operation&quot;]{
<bool>false</bool>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-INJECTIONGUARD$(AGEBD_ENV_SUFFIX):RESET-LATCHES</string>
<string notr="true">AGEBD-INJECTIONGUARD{{ agebd_env_suffix_upper }}:RESET-LATCHES</string>
</property>
<property name="label">
<string notr="true">Reset</string>
@@ -771,7 +771,7 @@ caLabel[statusTip=&quot;Operation&quot;]{
<enum>Qt::ScrollBarAsNeeded</enum>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-INJECTIONGUARD$(AGEBD_ENV_SUFFIX):LOG</string>
<string notr="true">AGEBD-INJECTIONGUARD{{ agebd_env_suffix_upper }}:LOG</string>
</property>
<property name="fontScaleMode" stdset="0">
<enum>caMultiLineString::None</enum>
@@ -790,7 +790,7 @@ caLabel[statusTip=&quot;Operation&quot;]{
<string>Clear Logs</string>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-INJECTIONGUARD$(AGEBD_ENV_SUFFIX):LOG-CLEAR</string>
<string notr="true">AGEBD-INJECTIONGUARD{{ agebd_env_suffix_upper }}:LOG-CLEAR</string>
</property>
<property name="label">
<string notr="true">Clear Logs</string>
@@ -819,7 +819,7 @@ caLabel[statusTip=&quot;Operation&quot;]{
</rect>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-INJECTIONGUARD$(AGEBD_ENV_SUFFIX):LOG-PAUSE</string>
<string notr="true">AGEBD-INJECTIONGUARD{{ agebd_env_suffix_upper }}:LOG-PAUSE</string>
</property>
<property name="background">
<color>
+6 -6
View File
@@ -30,7 +30,7 @@
</size>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-INJECTIONGUARD$(AGEBD_ENV_SUFFIX):CONTROL-BRIDGE-CHECK-$(checknr)</string>
<string notr="true">AGEBD-INJECTIONGUARD{{ agebd_env_suffix_upper }}:CONTROL-BRIDGE-CHECK-$(checknr)</string>
</property>
<property name="background">
<color alpha="0">
@@ -62,7 +62,7 @@
<bool>false</bool>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-INJECTIONGUARD$(AGEBD_ENV_SUFFIX):CHECK-$(checknr)</string>
<string notr="true">AGEBD-INJECTIONGUARD{{ agebd_env_suffix_upper }}:CHECK-$(checknr)</string>
</property>
<property name="colorMode">
<enum>caLed::Alarm</enum>
@@ -81,7 +81,7 @@
<bool>false</bool>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-INJECTIONGUARD$(AGEBD_ENV_SUFFIX):CHECK-$(checknr)-MD</string>
<string notr="true">AGEBD-INJECTIONGUARD{{ agebd_env_suffix_upper }}:CHECK-$(checknr)-MD</string>
</property>
<property name="colorMode">
<enum>caLed::Alarm</enum>
@@ -110,7 +110,7 @@
<bool>true</bool>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-INJECTIONGUARD$(AGEBD_ENV_SUFFIX):CHECK-$(checknr).DESC</string>
<string notr="true">AGEBD-INJECTIONGUARD{{ agebd_env_suffix_upper }}:CHECK-$(checknr).DESC</string>
</property>
<property name="background">
<color alpha="0">
@@ -170,7 +170,7 @@
<bool>false</bool>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-INJECTIONGUARD$(AGEBD_ENV_SUFFIX):CHECK-$(checknr)-LATCH</string>
<string notr="true">AGEBD-INJECTIONGUARD{{ agebd_env_suffix_upper }}:CHECK-$(checknr)-LATCH</string>
</property>
<property name="colorMode">
<enum>caLed::Alarm</enum>
@@ -199,7 +199,7 @@
<number>20</number>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-INJECTIONGUARD$(AGEBD_ENV_SUFFIX):CONTROL-BRIDGE-CHECK-$(checknr)</string>
<string notr="true">AGEBD-INJECTIONGUARD{{ agebd_env_suffix_upper }}:CONTROL-BRIDGE-CHECK-$(checknr)</string>
</property>
<property name="colorMode">
<enum>caLed::Alarm</enum>
+4 -4
View File
@@ -43,7 +43,7 @@
<string notr="true">A</string>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-ALH$(AGEBD_ENV_SUFFIX):MASTER-GUIRELOAD</string>
<string notr="true">AGEBD-ALH{{ agebd_env_suffix_upper }}:MASTER-GUIRELOAD</string>
</property>
<property name="eventSignal">
<enum>caCalc::TriggerZeroToOne</enum>
@@ -62,7 +62,7 @@
<string>Clear Logs</string>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-MASTER$(AGEBD_ENV_SUFFIX):LOG-CLEAR</string>
<string notr="true">AGEBD-MASTER{{ agebd_env_suffix_upper }}:LOG-CLEAR</string>
</property>
<property name="label">
<string notr="true">Clear Logs</string>
@@ -94,7 +94,7 @@
<string>Get Systemd Status for each Service</string>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-MASTER$(AGEBD_ENV_SUFFIX):GET-SYSTEMD-STATUS</string>
<string notr="true">AGEBD-MASTER{{ agebd_env_suffix_upper }}:GET-SYSTEMD-STATUS</string>
</property>
<property name="label">
<string notr="true">Get Systemd Status for each Service</string>
@@ -151,7 +151,7 @@
<bool>true</bool>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-MASTER$(AGEBD_ENV_SUFFIX):LOG</string>
<string notr="true">AGEBD-MASTER{{ agebd_env_suffix_upper }}:LOG</string>
</property>
<property name="limitsMode">
<enum>caLineEdit::User</enum>
+14 -14
View File
@@ -24,7 +24,7 @@
</rect>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-ALH$(AGEBD_ENV_SUFFIX):NTURNS-ONOFF</string>
<string notr="true">AGEBD-ALH{{ agebd_env_suffix_upper }}:NTURNS-ONOFF</string>
</property>
<property name="stackingMode" stdset="0">
<enum>caChoice::Column</enum>
@@ -62,7 +62,7 @@
<string notr="true">A</string>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-ALH$(AGEBD_ENV_SUFFIX):NTURNS-GUIRELOAD</string>
<string notr="true">AGEBD-ALH{{ agebd_env_suffix_upper }}:NTURNS-GUIRELOAD</string>
</property>
<property name="eventSignal">
<enum>caCalc::TriggerZeroToOne</enum>
@@ -202,7 +202,7 @@
</rect>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-NTURNS$(AGEBD_ENV_SUFFIX):CONTROL-80-NPOINTS</string>
<string notr="true">AGEBD-NTURNS{{ agebd_env_suffix_upper }}:CONTROL-80-NPOINTS</string>
</property>
<property name="precisionMode">
<enum>caLineEdit::User</enum>
@@ -218,7 +218,7 @@
</rect>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-NTURNS$(AGEBD_ENV_SUFFIX):CONTROL-80-MINHEIGHT</string>
<string notr="true">AGEBD-NTURNS{{ agebd_env_suffix_upper }}:CONTROL-80-MINHEIGHT</string>
</property>
</widget>
<widget class="caTextEntry" name="catextentry_3">
@@ -231,7 +231,7 @@
</rect>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-NTURNS$(AGEBD_ENV_SUFFIX):CONTROL-80-MINSEP</string>
<string notr="true">AGEBD-NTURNS{{ agebd_env_suffix_upper }}:CONTROL-80-MINSEP</string>
</property>
</widget>
<widget class="caLabel" name="calabel_6">
@@ -292,7 +292,7 @@
</rect>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-NTURNS$(AGEBD_ENV_SUFFIX):CONTROL-2K-MINSEP</string>
<string notr="true">AGEBD-NTURNS{{ agebd_env_suffix_upper }}:CONTROL-2K-MINSEP</string>
</property>
</widget>
<widget class="caTextEntry" name="catextentry_5">
@@ -305,7 +305,7 @@
</rect>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-NTURNS$(AGEBD_ENV_SUFFIX):CONTROL-2K-MINHEIGHT</string>
<string notr="true">AGEBD-NTURNS{{ agebd_env_suffix_upper }}:CONTROL-2K-MINHEIGHT</string>
</property>
</widget>
<widget class="caTextEntry" name="catextentry_6">
@@ -318,7 +318,7 @@
</rect>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-NTURNS$(AGEBD_ENV_SUFFIX):CONTROL-2K-NPOINTS</string>
<string notr="true">AGEBD-NTURNS{{ agebd_env_suffix_upper }}:CONTROL-2K-NPOINTS</string>
</property>
<property name="precisionMode">
<enum>caLineEdit::User</enum>
@@ -388,7 +388,7 @@
<set>Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-NTURNS$(AGEBD_ENV_SUFFIX):STAGE0-Q-80TURNS</string>
<string notr="true">AGEBD-NTURNS{{ agebd_env_suffix_upper }}:STAGE0-Q-80TURNS</string>
</property>
<property name="foreground">
<color>
@@ -448,7 +448,7 @@
<set>Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-NTURNS$(AGEBD_ENV_SUFFIX):STAGE0-Q-2KTURNS</string>
<string notr="true">AGEBD-NTURNS{{ agebd_env_suffix_upper }}:STAGE0-Q-2KTURNS</string>
</property>
<property name="foreground">
<color>
@@ -526,7 +526,7 @@
</rect>
</property>
<property name="channels_1" stdset="0">
<string>AGEBD-NTURNS$(AGEBD_ENV_SUFFIX):BPM-WF-ENUMERATE;AGEBD-NTURNS$(AGEBD_ENV_SUFFIX):STAGE0-Q-80TURNS-WF</string>
<string>AGEBD-NTURNS{{ agebd_env_suffix_upper }}:BPM-WF-ENUMERATE;AGEBD-NTURNS{{ agebd_env_suffix_upper }}:STAGE0-Q-80TURNS-WF</string>
</property>
<property name="Style_1">
<enum>caCartesianPlot::Lines</enum>
@@ -542,7 +542,7 @@
</color>
</property>
<property name="channels_2" stdset="0">
<string>AGEBD-NTURNS$(AGEBD_ENV_SUFFIX):BPM-WF-ENUMERATE;AGEBD-NTURNS$(AGEBD_ENV_SUFFIX):STAGE0-Q-80TURNS-PEAKS</string>
<string>AGEBD-NTURNS{{ agebd_env_suffix_upper }}:BPM-WF-ENUMERATE;AGEBD-NTURNS{{ agebd_env_suffix_upper }}:STAGE0-Q-80TURNS-PEAKS</string>
</property>
<property name="Style_2">
<enum>caCartesianPlot::Sticks</enum>
@@ -582,7 +582,7 @@
</rect>
</property>
<property name="channels_1" stdset="0">
<string>AGEBD-NTURNS$(AGEBD_ENV_SUFFIX):BPM-WF-ENUMERATE;AGEBD-NTURNS$(AGEBD_ENV_SUFFIX):STAGE0-Q-2KTURNS-WF</string>
<string>AGEBD-NTURNS{{ agebd_env_suffix_upper }}:BPM-WF-ENUMERATE;AGEBD-NTURNS{{ agebd_env_suffix_upper }}:STAGE0-Q-2KTURNS-WF</string>
</property>
<property name="Style_1">
<enum>caCartesianPlot::Lines</enum>
@@ -598,7 +598,7 @@
</color>
</property>
<property name="channels_2" stdset="0">
<string>AGEBD-NTURNS$(AGEBD_ENV_SUFFIX):BPM-WF-ENUMERATE;AGEBD-NTURNS$(AGEBD_ENV_SUFFIX):STAGE0-Q-80TURNS-PEAKS;</string>
<string>AGEBD-NTURNS{{ agebd_env_suffix_upper }}:BPM-WF-ENUMERATE;AGEBD-NTURNS{{ agebd_env_suffix_upper }}:STAGE0-Q-80TURNS-PEAKS;</string>
</property>
<property name="Style_2">
<enum>caCartesianPlot::Sticks</enum>
+1 -1
View File
@@ -328,7 +328,7 @@
<string notr="true">A</string>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-ALH$(AGEBD_ENV_SUFFIX):ORBITBUMP-GUIRELOAD</string>
<string notr="true">AGEBD-ALH{{ agebd_env_suffix_upper }}:ORBITBUMP-GUIRELOAD</string>
</property>
<property name="eventSignal">
<enum>caCalc::TriggerZeroToOne</enum>
+7 -7
View File
@@ -31,7 +31,7 @@
</font>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-ORBITBUMP$(AGEBD_ENV_SUFFIX):BEAMLINE-BEND</string>
<string notr="true">AGEBD-ORBITBUMP{{ agebd_env_suffix_upper }}:BEAMLINE-BEND</string>
</property>
</widget>
<widget class="caMenu" name="camenu_2">
@@ -51,7 +51,7 @@
</font>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-ORBITBUMP$(AGEBD_ENV_SUFFIX):BEAMLINE-ID</string>
<string notr="true">AGEBD-ORBITBUMP{{ agebd_env_suffix_upper }}:BEAMLINE-ID</string>
</property>
</widget>
<widget class="caLineEdit" name="calineedit_87">
@@ -64,7 +64,7 @@
</rect>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-ORBITBUMP$(AGEBD_ENV_SUFFIX):BEAMLINECALC</string>
<string notr="true">AGEBD-ORBITBUMP{{ agebd_env_suffix_upper }}:BEAMLINECALC</string>
</property>
<property name="colorMode">
<enum>caLineEdit::Default</enum>
@@ -86,7 +86,7 @@
</rect>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-ORBITBUMP$(AGEBD_ENV_SUFFIX):BEAMLINETYPE-BEND</string>
<string notr="true">AGEBD-ORBITBUMP{{ agebd_env_suffix_upper }}:BEAMLINETYPE-BEND</string>
</property>
<property name="colorMode">
<enum>caLineEdit::Default</enum>
@@ -108,7 +108,7 @@
</rect>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-ORBITBUMP$(AGEBD_ENV_SUFFIX):BEAMLINETYPE</string>
<string notr="true">AGEBD-ORBITBUMP{{ agebd_env_suffix_upper }}:BEAMLINETYPE</string>
</property>
<property name="colorMode">
<enum>caLineEdit::Default</enum>
@@ -130,7 +130,7 @@
</rect>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-ORBITBUMP$(AGEBD_ENV_SUFFIX):BEAMLINETYPE-ID</string>
<string notr="true">AGEBD-ORBITBUMP{{ agebd_env_suffix_upper }}:BEAMLINETYPE-ID</string>
</property>
<property name="colorMode">
<enum>caLineEdit::Default</enum>
@@ -152,7 +152,7 @@
</rect>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-ORBITBUMP$(AGEBD_ENV_SUFFIX):BEAMLINE</string>
<string notr="true">AGEBD-ORBITBUMP{{ agebd_env_suffix_upper }}:BEAMLINE</string>
</property>
<property name="colorMode">
<enum>caLineEdit::Default</enum>
+20 -20
View File
@@ -24,7 +24,7 @@
</rect>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-ORBITBUMP$(AGEBD_ENV_SUFFIX):$(sourcepoint)-DELTAX-BPM1</string>
<string notr="true">AGEBD-ORBITBUMP{{ agebd_env_suffix_upper }}:$(sourcepoint)-DELTAX-BPM1</string>
</property>
</widget>
<widget class="caLineEdit" name="calineedit_2">
@@ -37,7 +37,7 @@
</rect>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-ORBITBUMP$(AGEBD_ENV_SUFFIX):$(sourcepoint)-DELTAY-BPM1</string>
<string notr="true">AGEBD-ORBITBUMP{{ agebd_env_suffix_upper }}:$(sourcepoint)-DELTAY-BPM1</string>
</property>
</widget>
<widget class="caLineEdit" name="calineedit_3">
@@ -50,7 +50,7 @@
</rect>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-ORBITBUMP$(AGEBD_ENV_SUFFIX):$(sourcepoint)-DELTAX-BPM2</string>
<string notr="true">AGEBD-ORBITBUMP{{ agebd_env_suffix_upper }}:$(sourcepoint)-DELTAX-BPM2</string>
</property>
</widget>
<widget class="caLineEdit" name="calineedit_4">
@@ -63,7 +63,7 @@
</rect>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-ORBITBUMP$(AGEBD_ENV_SUFFIX):$(sourcepoint)-DELTAY-BPM2</string>
<string notr="true">AGEBD-ORBITBUMP{{ agebd_env_suffix_upper }}:$(sourcepoint)-DELTAY-BPM2</string>
</property>
</widget>
<widget class="caSpinbox" name="caspinbox_2">
@@ -82,7 +82,7 @@
<number>0</number>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-ORBITBUMP$(AGEBD_ENV_SUFFIX):$(sourcepoint)-OFFSET-X</string>
<string notr="true">AGEBD-ORBITBUMP{{ agebd_env_suffix_upper }}:$(sourcepoint)-OFFSET-X</string>
</property>
<property name="colorMode">
<enum>caSpinbox::Alarm</enum>
@@ -116,7 +116,7 @@
<number>0</number>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-ORBITBUMP$(AGEBD_ENV_SUFFIX):$(sourcepoint)-OFFSET-XP</string>
<string notr="true">AGEBD-ORBITBUMP{{ agebd_env_suffix_upper }}:$(sourcepoint)-OFFSET-XP</string>
</property>
<property name="colorMode">
<enum>caSpinbox::Alarm</enum>
@@ -150,7 +150,7 @@
<number>0</number>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-ORBITBUMP$(AGEBD_ENV_SUFFIX):$(sourcepoint)-OFFSET-YP</string>
<string notr="true">AGEBD-ORBITBUMP{{ agebd_env_suffix_upper }}:$(sourcepoint)-OFFSET-YP</string>
</property>
<property name="colorMode">
<enum>caSpinbox::Alarm</enum>
@@ -184,7 +184,7 @@
<number>0</number>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-ORBITBUMP$(AGEBD_ENV_SUFFIX):$(sourcepoint)-OFFSET-Y</string>
<string notr="true">AGEBD-ORBITBUMP{{ agebd_env_suffix_upper }}:$(sourcepoint)-OFFSET-Y</string>
</property>
<property name="colorMode">
<enum>caSpinbox::Alarm</enum>
@@ -212,7 +212,7 @@
</rect>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-ORBITBUMP$(AGEBD_ENV_SUFFIX):$(sourcepoint)-DELTAX-BPM4</string>
<string notr="true">AGEBD-ORBITBUMP{{ agebd_env_suffix_upper }}:$(sourcepoint)-DELTAX-BPM4</string>
</property>
</widget>
<widget class="caLineEdit" name="calineedit_6">
@@ -225,7 +225,7 @@
</rect>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-ORBITBUMP$(AGEBD_ENV_SUFFIX):$(sourcepoint)-DELTAY-BPM3</string>
<string notr="true">AGEBD-ORBITBUMP{{ agebd_env_suffix_upper }}:$(sourcepoint)-DELTAY-BPM3</string>
</property>
</widget>
<widget class="caLineEdit" name="calineedit_7">
@@ -238,7 +238,7 @@
</rect>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-ORBITBUMP$(AGEBD_ENV_SUFFIX):$(sourcepoint)-DELTAY-BPM4</string>
<string notr="true">AGEBD-ORBITBUMP{{ agebd_env_suffix_upper }}:$(sourcepoint)-DELTAY-BPM4</string>
</property>
</widget>
<widget class="caLineEdit" name="calineedit_8">
@@ -251,7 +251,7 @@
</rect>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-ORBITBUMP$(AGEBD_ENV_SUFFIX):$(sourcepoint)-DELTAX-BPM3</string>
<string notr="true">AGEBD-ORBITBUMP{{ agebd_env_suffix_upper }}:$(sourcepoint)-DELTAX-BPM3</string>
</property>
</widget>
<widget class="caLineEdit" name="calineedit_9">
@@ -264,7 +264,7 @@
</rect>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-ORBITBUMP$(AGEBD_ENV_SUFFIX):$(sourcepoint)-BPM1</string>
<string notr="true">AGEBD-ORBITBUMP{{ agebd_env_suffix_upper }}:$(sourcepoint)-BPM1</string>
</property>
</widget>
<widget class="caLineEdit" name="calineedit_10">
@@ -277,7 +277,7 @@
</rect>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-ORBITBUMP$(AGEBD_ENV_SUFFIX):$(sourcepoint)-BPM2</string>
<string notr="true">AGEBD-ORBITBUMP{{ agebd_env_suffix_upper }}:$(sourcepoint)-BPM2</string>
</property>
</widget>
<widget class="caLineEdit" name="calineedit_11">
@@ -290,7 +290,7 @@
</rect>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-ORBITBUMP$(AGEBD_ENV_SUFFIX):$(sourcepoint)-BPM3</string>
<string notr="true">AGEBD-ORBITBUMP{{ agebd_env_suffix_upper }}:$(sourcepoint)-BPM3</string>
</property>
</widget>
<widget class="caLineEdit" name="calineedit_12">
@@ -303,7 +303,7 @@
</rect>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-ORBITBUMP$(AGEBD_ENV_SUFFIX):$(sourcepoint)-BPM4</string>
<string notr="true">AGEBD-ORBITBUMP{{ agebd_env_suffix_upper }}:$(sourcepoint)-BPM4</string>
</property>
</widget>
<widget class="caSpinbox" name="caspinbox_6">
@@ -475,7 +475,7 @@
</rect>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-ORBITBUMP$(AGEBD_ENV_SUFFIX):$(sourcepoint)-OFFSET-X-TOTAL</string>
<string notr="true">AGEBD-ORBITBUMP{{ agebd_env_suffix_upper }}:$(sourcepoint)-OFFSET-X-TOTAL</string>
</property>
<property name="colorMode">
<enum>caLineEdit::Alarm_Default</enum>
@@ -497,7 +497,7 @@
</rect>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-ORBITBUMP$(AGEBD_ENV_SUFFIX):$(sourcepoint)-OFFSET-Y-TOTAL</string>
<string notr="true">AGEBD-ORBITBUMP{{ agebd_env_suffix_upper }}:$(sourcepoint)-OFFSET-Y-TOTAL</string>
</property>
<property name="colorMode">
<enum>caLineEdit::Alarm_Default</enum>
@@ -516,7 +516,7 @@
</rect>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-ORBITBUMP$(AGEBD_ENV_SUFFIX):$(sourcepoint)-OFFSET-YP-TOTAL</string>
<string notr="true">AGEBD-ORBITBUMP{{ agebd_env_suffix_upper }}:$(sourcepoint)-OFFSET-YP-TOTAL</string>
</property>
<property name="colorMode">
<enum>caLineEdit::Alarm_Default</enum>
@@ -535,7 +535,7 @@
</rect>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-ORBITBUMP$(AGEBD_ENV_SUFFIX):$(sourcepoint)-OFFSET-XP-TOTAL</string>
<string notr="true">AGEBD-ORBITBUMP{{ agebd_env_suffix_upper }}:$(sourcepoint)-OFFSET-XP-TOTAL</string>
</property>
<property name="colorMode">
<enum>caLineEdit::Alarm_Default</enum>
+4 -4
View File
@@ -37,7 +37,7 @@
</rect>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-ORBITBUMP$(AGEBD_ENV_SUFFIX):$(sourcepoint)-OFFSET-X-TOTAL</string>
<string notr="true">AGEBD-ORBITBUMP{{ agebd_env_suffix_upper }}:$(sourcepoint)-OFFSET-X-TOTAL</string>
</property>
<property name="colorMode">
<enum>caLineEdit::Alarm_Default</enum>
@@ -59,7 +59,7 @@
</rect>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-ORBITBUMP$(AGEBD_ENV_SUFFIX):$(sourcepoint)-OFFSET-XP-TOTAL</string>
<string notr="true">AGEBD-ORBITBUMP{{ agebd_env_suffix_upper }}:$(sourcepoint)-OFFSET-XP-TOTAL</string>
</property>
<property name="colorMode">
<enum>caLineEdit::Alarm_Default</enum>
@@ -78,7 +78,7 @@
</rect>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-ORBITBUMP$(AGEBD_ENV_SUFFIX):$(sourcepoint)-OFFSET-Y-TOTAL</string>
<string notr="true">AGEBD-ORBITBUMP{{ agebd_env_suffix_upper }}:$(sourcepoint)-OFFSET-Y-TOTAL</string>
</property>
<property name="colorMode">
<enum>caLineEdit::Alarm_Default</enum>
@@ -97,7 +97,7 @@
</rect>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-ORBITBUMP$(AGEBD_ENV_SUFFIX):$(sourcepoint)-OFFSET-YP-TOTAL</string>
<string notr="true">AGEBD-ORBITBUMP{{ agebd_env_suffix_upper }}:$(sourcepoint)-OFFSET-YP-TOTAL</string>
</property>
<property name="colorMode">
<enum>caLineEdit::Alarm_Default</enum>
+24 -24
View File
@@ -52,7 +52,7 @@
<string notr="true">A</string>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-ALH$(AGEBD_ENV_SUFFIX):POSTMORTEMLOG-GUIRELOAD</string>
<string notr="true">AGEBD-ALH{{ agebd_env_suffix_upper }}:POSTMORTEMLOG-GUIRELOAD</string>
</property>
<property name="eventSignal">
<enum>caCalc::TriggerZeroToOne</enum>
@@ -74,7 +74,7 @@
<bool>true</bool>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-MASTER$(AGEBD_ENV_SUFFIX):LOG</string>
<string notr="true">AGEBD-MASTER{{ agebd_env_suffix_upper }}:LOG</string>
</property>
</widget>
<widget class="QTabWidget" name="tabWidget">
@@ -106,7 +106,7 @@
<string notr="true">Horizontal Tune (nominal: Qx = 39.37)</string>
</property>
<property name="channels_1" stdset="0">
<string>AGEBD-POSTMORTEMLOG$(AGEBD_ENV_SUFFIX):BUFFER-TIME;AGEBD-POSTMORTEMLOG$(AGEBD_ENV_SUFFIX):BUFFER-QX</string>
<string>AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }}:BUFFER-TIME;AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }}:BUFFER-QX</string>
</property>
<property name="color_1">
<color>
@@ -179,7 +179,7 @@
<string notr="true">Vertival Tune (nominal: Qy = 15.22)</string>
</property>
<property name="channels_1" stdset="0">
<string>AGEBD-POSTMORTEMLOG$(AGEBD_ENV_SUFFIX):BUFFER-TIME;AGEBD-POSTMORTEMLOG$(AGEBD_ENV_SUFFIX):BUFFER-QY</string>
<string>AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }}:BUFFER-TIME;AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }}:BUFFER-QY</string>
</property>
<property name="color_1">
<color>
@@ -252,7 +252,7 @@
<string notr="true">Vertival Beam Size (nominal: Sig_y = 10)</string>
</property>
<property name="channels_1" stdset="0">
<string>AGEBD-POSTMORTEMLOG$(AGEBD_ENV_SUFFIX):BUFFER-TIME;AGEBD-POSTMORTEMLOG$(AGEBD_ENV_SUFFIX):BUFFER-X01DD-SIGY</string>
<string>AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }}:BUFFER-TIME;AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }}:BUFFER-X01DD-SIGY</string>
</property>
<property name="color_1">
<color>
@@ -262,7 +262,7 @@
</color>
</property>
<property name="channels_2" stdset="0">
<string>AGEBD-POSTMORTEMLOG$(AGEBD_ENV_SUFFIX):BUFFER-TIME;AGEBD-POSTMORTEMLOG$(AGEBD_ENV_SUFFIX):BUFFER-X08DB-SIGY</string>
<string>AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }}:BUFFER-TIME;AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }}:BUFFER-X08DB-SIGY</string>
</property>
<property name="Style_2">
<enum>caCartesianPlot::Lines</enum>
@@ -332,7 +332,7 @@
<string notr="true">Horizontal Beam Size (nominal: Sig_x = 9)</string>
</property>
<property name="channels_1" stdset="0">
<string>AGEBD-POSTMORTEMLOG$(AGEBD_ENV_SUFFIX):BUFFER-TIME;AGEBD-POSTMORTEMLOG$(AGEBD_ENV_SUFFIX):BUFFER-X01DD-SIGX</string>
<string>AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }}:BUFFER-TIME;AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }}:BUFFER-X01DD-SIGX</string>
</property>
<property name="color_1">
<color>
@@ -342,7 +342,7 @@
</color>
</property>
<property name="channels_2" stdset="0">
<string>AGEBD-POSTMORTEMLOG$(AGEBD_ENV_SUFFIX):BUFFER-TIME;AGEBD-POSTMORTEMLOG$(AGEBD_ENV_SUFFIX):BUFFER-X08DB-SIGX</string>
<string>AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }}:BUFFER-TIME;AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }}:BUFFER-X08DB-SIGX</string>
</property>
<property name="Style_2">
<enum>caCartesianPlot::Lines</enum>
@@ -412,7 +412,7 @@
<string notr="true">Stored Beam Current</string>
</property>
<property name="channels_1" stdset="0">
<string>AGEBD-POSTMORTEMLOG$(AGEBD_ENV_SUFFIX):BUFFER-TIME;AGEBD-POSTMORTEMLOG$(AGEBD_ENV_SUFFIX):BUFFER-CURRPCT</string>
<string>AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }}:BUFFER-TIME;AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }}:BUFFER-CURRPCT</string>
</property>
<property name="color_1">
<color>
@@ -422,7 +422,7 @@
</color>
</property>
<property name="channels_2" stdset="0">
<string>AGEBD-POSTMORTEMLOG$(AGEBD_ENV_SUFFIX):BUFFER-TIME;AGEBD-POSTMORTEMLOG$(AGEBD_ENV_SUFFIX):BUFFER-CURRBPM</string>
<string>AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }}:BUFFER-TIME;AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }}:BUFFER-CURRBPM</string>
</property>
<property name="Style_2">
<enum>caCartesianPlot::Lines</enum>
@@ -492,7 +492,7 @@
<string notr="true">Beam Lifetime</string>
</property>
<property name="channels_1" stdset="0">
<string>AGEBD-POSTMORTEMLOG$(AGEBD_ENV_SUFFIX):BUFFER-TIME;AGEBD-POSTMORTEMLOG$(AGEBD_ENV_SUFFIX):BUFFER-TAUBPM</string>
<string>AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }}:BUFFER-TIME;AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }}:BUFFER-TAUBPM</string>
</property>
<property name="Style_1">
<enum>caCartesianPlot::FatDots</enum>
@@ -505,7 +505,7 @@
</color>
</property>
<property name="channels_2" stdset="0">
<string>AGEBD-POSTMORTEMLOG$(AGEBD_ENV_SUFFIX):BUFFER-TIME;AGEBD-POSTMORTEMLOG$(AGEBD_ENV_SUFFIX):BUFFER-TAUPCT</string>
<string>AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }}:BUFFER-TIME;AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }}:BUFFER-TAUPCT</string>
</property>
<property name="Style_2">
<enum>caCartesianPlot::FatDots</enum>
@@ -580,7 +580,7 @@
<string notr="true">Vertival Beam Size (nominal: Sig_y = 10)</string>
</property>
<property name="channels_1" stdset="0">
<string>AGEBD-POSTMORTEMLOG$(AGEBD_ENV_SUFFIX):BUFFER-TIME;AGEBD-POSTMORTEMLOG$(AGEBD_ENV_SUFFIX):BUFFER-X01DD-SIGY-LAST</string>
<string>AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }}:BUFFER-TIME;AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }}:BUFFER-X01DD-SIGY-LAST</string>
</property>
<property name="color_1">
<color>
@@ -590,7 +590,7 @@
</color>
</property>
<property name="channels_2" stdset="0">
<string>AGEBD-POSTMORTEMLOG$(AGEBD_ENV_SUFFIX):BUFFER-TIME;AGEBD-POSTMORTEMLOG$(AGEBD_ENV_SUFFIX):BUFFER-X08DB-SIGY-LAST</string>
<string>AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }}:BUFFER-TIME;AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }}:BUFFER-X08DB-SIGY-LAST</string>
</property>
<property name="Style_2">
<enum>caCartesianPlot::Lines</enum>
@@ -660,7 +660,7 @@
<string notr="true">Stored Beam Current</string>
</property>
<property name="channels_1" stdset="0">
<string>AGEBD-POSTMORTEMLOG$(AGEBD_ENV_SUFFIX):BUFFER-TIME;AGEBD-POSTMORTEMLOG$(AGEBD_ENV_SUFFIX):BUFFER-CURRPCT-LAST</string>
<string>AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }}:BUFFER-TIME;AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }}:BUFFER-CURRPCT-LAST</string>
</property>
<property name="color_1">
<color>
@@ -670,7 +670,7 @@
</color>
</property>
<property name="channels_2" stdset="0">
<string>AGEBD-POSTMORTEMLOG$(AGEBD_ENV_SUFFIX):BUFFER-TIME;AGEBD-POSTMORTEMLOG$(AGEBD_ENV_SUFFIX):BUFFER-CURRBPM-LAST</string>
<string>AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }}:BUFFER-TIME;AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }}:BUFFER-CURRBPM-LAST</string>
</property>
<property name="Style_2">
<enum>caCartesianPlot::Lines</enum>
@@ -740,7 +740,7 @@
<string notr="true">Horizontal Tune (nominal: Qx = 39.37)</string>
</property>
<property name="channels_1" stdset="0">
<string>AGEBD-POSTMORTEMLOG$(AGEBD_ENV_SUFFIX):BUFFER-TIME;AGEBD-POSTMORTEMLOG$(AGEBD_ENV_SUFFIX):BUFFER-QX-LAST</string>
<string>AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }}:BUFFER-TIME;AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }}:BUFFER-QX-LAST</string>
</property>
<property name="color_1">
<color>
@@ -813,7 +813,7 @@
<string notr="true">Horizontal Beam Size (nominal: Sig_x = 9)</string>
</property>
<property name="channels_1" stdset="0">
<string>AGEBD-POSTMORTEMLOG$(AGEBD_ENV_SUFFIX):BUFFER-TIME;AGEBD-POSTMORTEMLOG$(AGEBD_ENV_SUFFIX):BUFFER-X01DD-SIGX-LAST</string>
<string>AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }}:BUFFER-TIME;AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }}:BUFFER-X01DD-SIGX-LAST</string>
</property>
<property name="color_1">
<color>
@@ -823,7 +823,7 @@
</color>
</property>
<property name="channels_2" stdset="0">
<string>AGEBD-POSTMORTEMLOG$(AGEBD_ENV_SUFFIX):BUFFER-TIME;AGEBD-POSTMORTEMLOG$(AGEBD_ENV_SUFFIX):BUFFER-X08DB-SIGX-LAST</string>
<string>AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }}:BUFFER-TIME;AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }}:BUFFER-X08DB-SIGX-LAST</string>
</property>
<property name="Style_2">
<enum>caCartesianPlot::Lines</enum>
@@ -893,7 +893,7 @@
<string notr="true">Vertival Tune (nominal: Qy = 15.22)</string>
</property>
<property name="channels_1" stdset="0">
<string>AGEBD-POSTMORTEMLOG$(AGEBD_ENV_SUFFIX):BUFFER-TIME;AGEBD-POSTMORTEMLOG$(AGEBD_ENV_SUFFIX):BUFFER-QY-LAST</string>
<string>AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }}:BUFFER-TIME;AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }}:BUFFER-QY-LAST</string>
</property>
<property name="color_1">
<color>
@@ -966,7 +966,7 @@
<string notr="true">Beam Lifetime</string>
</property>
<property name="channels_1" stdset="0">
<string>AGEBD-POSTMORTEMLOG$(AGEBD_ENV_SUFFIX):BUFFER-TIME;AGEBD-POSTMORTEMLOG$(AGEBD_ENV_SUFFIX):BUFFER-TAUBPM-LAST</string>
<string>AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }}:BUFFER-TIME;AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }}:BUFFER-TAUBPM-LAST</string>
</property>
<property name="Style_1">
<enum>caCartesianPlot::FatDots</enum>
@@ -979,7 +979,7 @@
</color>
</property>
<property name="channels_2" stdset="0">
<string>AGEBD-POSTMORTEMLOG$(AGEBD_ENV_SUFFIX):BUFFER-TIME;AGEBD-POSTMORTEMLOG$(AGEBD_ENV_SUFFIX):BUFFER-TAUPCT-LAST</string>
<string>AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }}:BUFFER-TIME;AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }}:BUFFER-TAUPCT-LAST</string>
</property>
<property name="Style_2">
<enum>caCartesianPlot::FatDots</enum>
@@ -1072,7 +1072,7 @@
<string>Update Logs</string>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-MASTER$(AGEBD_ENV_SUFFIX):POSTMORTEMLOG-LOGS-REQ</string>
<string notr="true">AGEBD-MASTER{{ agebd_env_suffix_upper }}:POSTMORTEMLOG-LOGS-REQ</string>
</property>
<property name="label">
<string notr="true">Update Logs</string>
@@ -1104,7 +1104,7 @@
<string>Test Trigger Post Mortem</string>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-POSTMORTEMLOG$(AGEBD_ENV_SUFFIX):TEST</string>
<string notr="true">AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }}:TEST</string>
</property>
<property name="label">
<string notr="true">Test Trigger Post Mortem</string>
+42 -42
View File
@@ -24,7 +24,7 @@
</rect>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-ALH$(AGEBD_ENV_SUFFIX):SCRUBBING-ONOFF</string>
<string notr="true">AGEBD-ALH{{ agebd_env_suffix_upper }}:SCRUBBING-ONOFF</string>
</property>
<property name="stackingMode" stdset="0">
<enum>caChoice::Column</enum>
@@ -59,7 +59,7 @@
<string notr="true"/>
</property>
<property name="channels" stdset="0">
<string>ARIVA-VMAVE:PRESS-MAX;ARIVA-VMAVE-FE:PRESS-MAX;ARIVA-VMAVE-ALL:PRESS-MAX;AGEBD-SCRUBBING$(AGEBD_ENV_SUFFIX):CONTROL-VACUUM-MAX-PLOT;AGEBD-SCRUBBING$(AGEBD_ENV_SUFFIX):CONTROL-VACUUM-MIN-PLOT;AGEBD-SCRUBBING$(AGEBD_ENV_SUFFIX):CONTROL-VACUUM-DYN-PLOT</string>
<string>ARIVA-VMAVE:PRESS-MAX;ARIVA-VMAVE-FE:PRESS-MAX;ARIVA-VMAVE-ALL:PRESS-MAX;AGEBD-SCRUBBING{{ agebd_env_suffix_upper }}:CONTROL-VACUUM-MAX-PLOT;AGEBD-SCRUBBING{{ agebd_env_suffix_upper }}:CONTROL-VACUUM-MIN-PLOT;AGEBD-SCRUBBING{{ agebd_env_suffix_upper }}:CONTROL-VACUUM-DYN-PLOT</string>
</property>
<property name="units">
<enum>caStripPlot::Second</enum>
@@ -411,7 +411,7 @@
<string notr="true">A</string>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-ALH$(AGEBD_ENV_SUFFIX):SCRUBBING-GUIRELOAD</string>
<string notr="true">AGEBD-ALH{{ agebd_env_suffix_upper }}:SCRUBBING-GUIRELOAD</string>
</property>
<property name="eventSignal">
<enum>caCalc::TriggerOneToZero</enum>
@@ -427,7 +427,7 @@
</rect>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-ALH$(AGEBD_ENV_SUFFIX):SCRUBBING-INFO</string>
<string notr="true">AGEBD-ALH{{ agebd_env_suffix_upper }}:SCRUBBING-INFO</string>
</property>
<property name="colorMode">
<enum>caLineEdit::Alarm_Default</enum>
@@ -449,7 +449,7 @@
</rect>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-SCRUBBING$(AGEBD_ENV_SUFFIX):TOPUP-DELTAT</string>
<string notr="true">AGEBD-SCRUBBING{{ agebd_env_suffix_upper }}:TOPUP-DELTAT</string>
</property>
<property name="colorMode">
<enum>caLineEdit::Default</enum>
@@ -474,7 +474,7 @@
</rect>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-SCRUBBING$(AGEBD_ENV_SUFFIX):TOPUP-TAU</string>
<string notr="true">AGEBD-SCRUBBING{{ agebd_env_suffix_upper }}:TOPUP-TAU</string>
</property>
<property name="colorMode">
<enum>caLineEdit::Default</enum>
@@ -568,7 +568,7 @@
</rect>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-SCRUBBING$(AGEBD_ENV_SUFFIX):TOPUP-DELTAI</string>
<string notr="true">AGEBD-SCRUBBING{{ agebd_env_suffix_upper }}:TOPUP-DELTAI</string>
</property>
<property name="colorMode">
<enum>caLineEdit::Default</enum>
@@ -1913,7 +1913,7 @@
<number>22</number>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-INJECTIONGUARD$(AGEBD_ENV_SUFFIX):STATUS-SECRET-MASTER</string>
<string notr="true">AGEBD-INJECTIONGUARD{{ agebd_env_suffix_upper }}:STATUS-SECRET-MASTER</string>
</property>
<property name="colorMode">
<enum>caLed::Alarm</enum>
@@ -2937,7 +2937,7 @@ AGETI-CVME-MASTER-TMA:Evt-LI-Gun-EVRCount-I</string>
<number>0</number>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-SCRUBBING$(AGEBD_ENV_SUFFIX):WARMUPCYCLES-BOIN-SP.VAL</string>
<string notr="true">AGEBD-SCRUBBING{{ agebd_env_suffix_upper }}:WARMUPCYCLES-BOIN-SP.VAL</string>
</property>
<property name="precisionMode">
<enum>caSpinbox::User</enum>
@@ -2962,7 +2962,7 @@ AGETI-CVME-MASTER-TMA:Evt-LI-Gun-EVRCount-I</string>
<number>0</number>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-SCRUBBING$(AGEBD_ENV_SUFFIX):WARMUPCYCLES-BOMB-SP.VAL</string>
<string notr="true">AGEBD-SCRUBBING{{ agebd_env_suffix_upper }}:WARMUPCYCLES-BOMB-SP.VAL</string>
</property>
<property name="precisionMode">
<enum>caSpinbox::User</enum>
@@ -2987,7 +2987,7 @@ AGETI-CVME-MASTER-TMA:Evt-LI-Gun-EVRCount-I</string>
<number>0</number>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-SCRUBBING$(AGEBD_ENV_SUFFIX):WARMUPCYCLES-BOME-SP.VAL</string>
<string notr="true">AGEBD-SCRUBBING{{ agebd_env_suffix_upper }}:WARMUPCYCLES-BOME-SP.VAL</string>
</property>
<property name="precisionMode">
<enum>caSpinbox::User</enum>
@@ -3012,7 +3012,7 @@ AGETI-CVME-MASTER-TMA:Evt-LI-Gun-EVRCount-I</string>
<number>0</number>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-SCRUBBING$(AGEBD_ENV_SUFFIX):WARMUPCYCLES-BOEX-SP.VAL</string>
<string notr="true">AGEBD-SCRUBBING{{ agebd_env_suffix_upper }}:WARMUPCYCLES-BOEX-SP.VAL</string>
</property>
<property name="precisionMode">
<enum>caSpinbox::User</enum>
@@ -3037,7 +3037,7 @@ AGETI-CVME-MASTER-TMA:Evt-LI-Gun-EVRCount-I</string>
<number>0</number>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-SCRUBBING$(AGEBD_ENV_SUFFIX):WARMUPCYCLES-SRIN-SP.VAL</string>
<string notr="true">AGEBD-SCRUBBING{{ agebd_env_suffix_upper }}:WARMUPCYCLES-SRIN-SP.VAL</string>
</property>
<property name="precisionMode">
<enum>caSpinbox::User</enum>
@@ -3099,7 +3099,7 @@ Setpoint</string>
<bool>true</bool>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-SCRUBBING$(AGEBD_ENV_SUFFIX):WARMUPCYCLES-BOMB-RB.VAL</string>
<string notr="true">AGEBD-SCRUBBING{{ agebd_env_suffix_upper }}:WARMUPCYCLES-BOMB-RB.VAL</string>
</property>
<property name="background">
<color>
@@ -3141,7 +3141,7 @@ Setpoint</string>
<bool>true</bool>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-SCRUBBING$(AGEBD_ENV_SUFFIX):WARMUPCYCLES-BOIN-RB.VAL</string>
<string notr="true">AGEBD-SCRUBBING{{ agebd_env_suffix_upper }}:WARMUPCYCLES-BOIN-RB.VAL</string>
</property>
<property name="background">
<color>
@@ -3183,7 +3183,7 @@ Setpoint</string>
<bool>true</bool>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-SCRUBBING$(AGEBD_ENV_SUFFIX):WARMUPCYCLES-BOME-RB.VAL</string>
<string notr="true">AGEBD-SCRUBBING{{ agebd_env_suffix_upper }}:WARMUPCYCLES-BOME-RB.VAL</string>
</property>
<property name="background">
<color>
@@ -3225,7 +3225,7 @@ Setpoint</string>
<bool>true</bool>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-SCRUBBING$(AGEBD_ENV_SUFFIX):WARMUPCYCLES-SRIN-RB.VAL</string>
<string notr="true">AGEBD-SCRUBBING{{ agebd_env_suffix_upper }}:WARMUPCYCLES-SRIN-RB.VAL</string>
</property>
<property name="background">
<color>
@@ -3267,7 +3267,7 @@ Setpoint</string>
<bool>true</bool>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-SCRUBBING$(AGEBD_ENV_SUFFIX):WARMUPCYCLES-BOEX-RB.VAL</string>
<string notr="true">AGEBD-SCRUBBING{{ agebd_env_suffix_upper }}:WARMUPCYCLES-BOEX-RB.VAL</string>
</property>
<property name="background">
<color>
@@ -3394,7 +3394,7 @@ Remaining</string>
<string notr="true"/>
</property>
<property name="channels_1" stdset="0">
<string>;AGEBD-TIMING$(AGEBD_ENV_SUFFIX):TARGET-BUCKET</string>
<string>;AGEBD-TIMING{{ agebd_env_suffix_upper }}:TARGET-BUCKET</string>
</property>
<property name="Style_1">
<enum>caCartesianPlot::Sticks</enum>
@@ -3491,7 +3491,7 @@ Remaining</string>
</rect>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TIMING$(AGEBD_ENV_SUFFIX):GO</string>
<string notr="true">AGEBD-TIMING{{ agebd_env_suffix_upper }}:GO</string>
</property>
<property name="trueColor">
<color>
@@ -3535,7 +3535,7 @@ Remaining</string>
</rect>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TIMING$(AGEBD_ENV_SUFFIX):CONTROL-FILLPATTERN-string.VAL</string>
<string notr="true">AGEBD-TIMING{{ agebd_env_suffix_upper }}:CONTROL-FILLPATTERN-string.VAL</string>
</property>
<property name="precision">
<number>0</number>
@@ -3567,7 +3567,7 @@ Remaining</string>
</font>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TIMING$(AGEBD_ENV_SUFFIX):FPFB-MODE</string>
<string notr="true">AGEBD-TIMING{{ agebd_env_suffix_upper }}:FPFB-MODE</string>
</property>
</widget>
<widget class="caMessageButton" name="camessagebutton_39">
@@ -3591,7 +3591,7 @@ Remaining</string>
<enum>EPushButton::WidthAndHeight</enum>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TIMING$(AGEBD_ENV_SUFFIX):ZERO-TARGET-BUCKET</string>
<string notr="true">AGEBD-TIMING{{ agebd_env_suffix_upper }}:ZERO-TARGET-BUCKET</string>
</property>
<property name="label">
<string notr="true">Reset</string>
@@ -3639,7 +3639,7 @@ Remaining</string>
<bool>true</bool>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TIMING$(AGEBD_ENV_SUFFIX):CURRENT-THRESHOLD</string>
<string notr="true">AGEBD-TIMING{{ agebd_env_suffix_upper }}:CURRENT-THRESHOLD</string>
</property>
<property name="precisionMode">
<enum>caSpinbox::User</enum>
@@ -3690,7 +3690,7 @@ Remaining</string>
<number>0</number>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TIMING$(AGEBD_ENV_SUFFIX):FPFB-NTH</string>
<string notr="true">AGEBD-TIMING{{ agebd_env_suffix_upper }}:FPFB-NTH</string>
</property>
<property name="precisionMode">
<enum>caSpinbox::User</enum>
@@ -3754,7 +3754,7 @@ Remaining</string>
<number>1</number>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-SCRUBBING$(AGEBD_ENV_SUFFIX):CONTROL-CURRENT-MIN</string>
<string notr="true">AGEBD-SCRUBBING{{ agebd_env_suffix_upper }}:CONTROL-CURRENT-MIN</string>
</property>
<property name="precisionMode">
<enum>caSpinbox::User</enum>
@@ -3779,7 +3779,7 @@ Remaining</string>
<number>1</number>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-SCRUBBING$(AGEBD_ENV_SUFFIX):CONTROL-CURRENT-MAX</string>
<string notr="true">AGEBD-SCRUBBING{{ agebd_env_suffix_upper }}:CONTROL-CURRENT-MAX</string>
</property>
<property name="precisionMode">
<enum>caSpinbox::User</enum>
@@ -3850,7 +3850,7 @@ Remaining</string>
<number>1</number>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-SCRUBBING$(AGEBD_ENV_SUFFIX):CONTROL-VACUUM-MIN</string>
<string notr="true">AGEBD-SCRUBBING{{ agebd_env_suffix_upper }}:CONTROL-VACUUM-MIN</string>
</property>
<property name="precisionMode">
<enum>caSpinbox::User</enum>
@@ -3921,7 +3921,7 @@ Remaining</string>
<number>1</number>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-SCRUBBING$(AGEBD_ENV_SUFFIX):CONTROL-VACUUM-MAX</string>
<string notr="true">AGEBD-SCRUBBING{{ agebd_env_suffix_upper }}:CONTROL-VACUUM-MAX</string>
</property>
<property name="precisionMode">
<enum>caSpinbox::User</enum>
@@ -3969,7 +3969,7 @@ Remaining</string>
<number>0</number>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-SCRUBBING$(AGEBD_ENV_SUFFIX):CONTROL-TIME-MAX</string>
<string notr="true">AGEBD-SCRUBBING{{ agebd_env_suffix_upper }}:CONTROL-TIME-MAX</string>
</property>
<property name="precisionMode">
<enum>caSpinbox::User</enum>
@@ -3994,7 +3994,7 @@ Remaining</string>
<number>0</number>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-SCRUBBING$(AGEBD_ENV_SUFFIX):CONTROL-TIME-MIN</string>
<string notr="true">AGEBD-SCRUBBING{{ agebd_env_suffix_upper }}:CONTROL-TIME-MIN</string>
</property>
<property name="precisionMode">
<enum>caSpinbox::User</enum>
@@ -4058,7 +4058,7 @@ Remaining</string>
<number>0</number>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-SCRUBBING$(AGEBD_ENV_SUFFIX):CONTROL-GUNGRID-FPFB</string>
<string notr="true">AGEBD-SCRUBBING{{ agebd_env_suffix_upper }}:CONTROL-GUNGRID-FPFB</string>
</property>
<property name="precisionMode">
<enum>caSpinbox::User</enum>
@@ -4083,7 +4083,7 @@ Remaining</string>
<number>0</number>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-SCRUBBING$(AGEBD_ENV_SUFFIX):CONTROL-GUNGRID-ACCUM</string>
<string notr="true">AGEBD-SCRUBBING{{ agebd_env_suffix_upper }}:CONTROL-GUNGRID-ACCUM</string>
</property>
<property name="precisionMode">
<enum>caSpinbox::User</enum>
@@ -4171,7 +4171,7 @@ Remaining</string>
<string notr="true"/>
</property>
<property name="channels" stdset="0">
<string>ARS07-DPCT-0000:CURR;AGEBD-SCRUBBING$(AGEBD_ENV_SUFFIX):CONTROL-CURRENT-MAX;AGEBD-SCRUBBING$(AGEBD_ENV_SUFFIX):CONTROL-CURRENT-MIN</string>
<string>ARS07-DPCT-0000:CURR;AGEBD-SCRUBBING{{ agebd_env_suffix_upper }}:CONTROL-CURRENT-MAX;AGEBD-SCRUBBING{{ agebd_env_suffix_upper }}:CONTROL-CURRENT-MIN</string>
</property>
<property name="units">
<enum>caStripPlot::Second</enum>
@@ -4398,7 +4398,7 @@ Remaining</string>
<set>Qt::AlignBottom|Qt::AlignRight|Qt::AlignTrailing</set>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-PARAMS$(AGEBD_ENV_SUFFIX):LIFETIME</string>
<string notr="true">AGEBD-PARAMS{{ agebd_env_suffix_upper }}:LIFETIME</string>
</property>
<property name="foreground">
<color>
@@ -4448,7 +4448,7 @@ Remaining</string>
</font>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-PARAMS$(AGEBD_ENV_SUFFIX):TRANSMISSION</string>
<string notr="true">AGEBD-PARAMS{{ agebd_env_suffix_upper }}:TRANSMISSION</string>
</property>
<property name="foreground">
<color>
@@ -4521,7 +4521,7 @@ Remaining</string>
</property>
<property name="channel" stdset="0">
<string notr="true">
AGEBD-SCRUBBING$(AGEBD_ENV_SUFFIX):CONTROL-VACUUM-DYN-FRAC</string>
AGEBD-SCRUBBING{{ agebd_env_suffix_upper }}:CONTROL-VACUUM-DYN-FRAC</string>
</property>
<property name="precisionMode">
<enum>caSpinbox::User</enum>
@@ -4559,7 +4559,7 @@ AGEBD-SCRUBBING$(AGEBD_ENV_SUFFIX):CONTROL-VACUUM-DYN-FRAC</string>
</font>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-SCRUBBING$(AGEBD_ENV_SUFFIX):CONTROL-SCRUB</string>
<string notr="true">AGEBD-SCRUBBING{{ agebd_env_suffix_upper }}:CONTROL-SCRUB</string>
</property>
</widget>
<widget class="caLabel" name="calabel_14">
@@ -4611,7 +4611,7 @@ AGEBD-SCRUBBING$(AGEBD_ENV_SUFFIX):CONTROL-VACUUM-DYN-FRAC</string>
<string notr="true">A&gt;3</string>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-SCRUBBING$(AGEBD_ENV_SUFFIX):CONTROL-SCRUB</string>
<string notr="true">AGEBD-SCRUBBING{{ agebd_env_suffix_upper }}:CONTROL-SCRUB</string>
</property>
<widget class="caLineEdit" name="calineedit_22">
<property name="geometry">
@@ -4674,7 +4674,7 @@ AGEBD-SCRUBBING$(AGEBD_ENV_SUFFIX):CONTROL-VACUUM-DYN-FRAC</string>
<number>0</number>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-SCRUBBING$(AGEBD_ENV_SUFFIX):MBFBY-GAIN-SP.VAL</string>
<string notr="true">AGEBD-SCRUBBING{{ agebd_env_suffix_upper }}:MBFBY-GAIN-SP.VAL</string>
</property>
<property name="precisionMode">
<enum>caSpinbox::User</enum>
@@ -4776,7 +4776,7 @@ AGEBD-SCRUBBING$(AGEBD_ENV_SUFFIX):CONTROL-VACUUM-DYN-FRAC</string>
<number>0</number>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-SCRUBBING$(AGEBD_ENV_SUFFIX):MBFBX-GAIN-SP.VAL</string>
<string notr="true">AGEBD-SCRUBBING{{ agebd_env_suffix_upper }}:MBFBX-GAIN-SP.VAL</string>
</property>
<property name="precisionMode">
<enum>caSpinbox::User</enum>
@@ -5062,7 +5062,7 @@ ARSGE-MBFBT-AMP-02:SET-ON-OFF</string>
<string notr="true">A&lt;4 &amp; A&gt;0</string>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-SCRUBBING$(AGEBD_ENV_SUFFIX):CONTROL-SCRUB</string>
<string notr="true">AGEBD-SCRUBBING{{ agebd_env_suffix_upper }}:CONTROL-SCRUB</string>
</property>
<widget class="caSpinbox" name="caspinbox_21">
<property name="geometry">
+12 -12
View File
@@ -71,7 +71,7 @@ caLabel[statusTip="Operation"]{
<string notr="true">A</string>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-ALH$(AGEBD_ENV_SUFFIX):MASTER-GUIRELOAD</string>
<string notr="true">AGEBD-ALH{{ agebd_env_suffix_upper }}:MASTER-GUIRELOAD</string>
</property>
<property name="eventSignal">
<enum>caCalc::TriggerZeroToOne</enum>
@@ -106,7 +106,7 @@ caLabel[statusTip="Operation"]{
<string notr="true">!A</string>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-ALH$(AGEBD_ENV_SUFFIX):MASTER-ONOFF</string>
<string notr="true">AGEBD-ALH{{ agebd_env_suffix_upper }}:MASTER-ONOFF</string>
</property>
</widget>
<widget class="QTabWidget" name="tabWidget">
@@ -586,7 +586,7 @@ caLabel[statusTip="Operation"]{
<bool>false</bool>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-ALH$(AGEBD_ENV_SUFFIX):MASTER-ALIVE</string>
<string notr="true">AGEBD-ALH{{ agebd_env_suffix_upper }}:MASTER-ALIVE</string>
</property>
<property name="colorMode">
<enum>caLed::Alarm</enum>
@@ -602,7 +602,7 @@ caLabel[statusTip="Operation"]{
</rect>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-ALH$(AGEBD_ENV_SUFFIX):MASTER-STARTTIME</string>
<string notr="true">AGEBD-ALH{{ agebd_env_suffix_upper }}:MASTER-STARTTIME</string>
</property>
<property name="colorMode">
<enum>caLineEdit::Default</enum>
@@ -624,7 +624,7 @@ caLabel[statusTip="Operation"]{
</rect>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-ALH$(AGEBD_ENV_SUFFIX):MASTER-STATUS</string>
<string notr="true">AGEBD-ALH{{ agebd_env_suffix_upper }}:MASTER-STATUS</string>
</property>
<property name="colorMode">
<enum>caLineEdit::Default</enum>
@@ -646,7 +646,7 @@ caLabel[statusTip="Operation"]{
</rect>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-ALH$(AGEBD_ENV_SUFFIX):MASTER-VERSION</string>
<string notr="true">AGEBD-ALH{{ agebd_env_suffix_upper }}:MASTER-VERSION</string>
</property>
<property name="colorMode">
<enum>caLineEdit::Default</enum>
@@ -668,7 +668,7 @@ caLabel[statusTip="Operation"]{
</rect>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-ALH$(AGEBD_ENV_SUFFIX):MASTER-ONOFF</string>
<string notr="true">AGEBD-ALH{{ agebd_env_suffix_upper }}:MASTER-ONOFF</string>
</property>
<property name="stackingMode" stdset="0">
<enum>caChoice::Column</enum>
@@ -717,7 +717,7 @@ caLabel[statusTip="Operation"]{
<bool>false</bool>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-ALH$(AGEBD_ENV_SUFFIX):MASTER-ONOFF-RB</string>
<string notr="true">AGEBD-ALH{{ agebd_env_suffix_upper }}:MASTER-ONOFF-RB</string>
</property>
<property name="colorMode">
<enum>caLed::Alarm</enum>
@@ -763,7 +763,7 @@ caLabel[statusTip="Operation"]{
<bool>false</bool>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-CPCL-MASTER$(AGEBD_ENV_SUFFIX):STATUS</string>
<string notr="true">AGEBD-CPCL-MASTER{{ agebd_env_suffix_upper }}:STATUS</string>
</property>
<property name="colorMode">
<enum>caLed::Alarm</enum>
@@ -1040,7 +1040,7 @@ caLabel[statusTip="Operation"]{
<enum>EPushButton::None</enum>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-MASTER$(AGEBD_ENV_SUFFIX):MASTER-LOGS-REQ</string>
<string notr="true">AGEBD-MASTER{{ agebd_env_suffix_upper }}:MASTER-LOGS-REQ</string>
</property>
<property name="label">
<string notr="true">Logs</string>
@@ -1106,7 +1106,7 @@ caLabel[statusTip="Operation"]{
<bool>false</bool>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-ALH$(AGEBD_ENV_SUFFIX):MASTER-GUIRELOAD</string>
<string notr="true">AGEBD-ALH{{ agebd_env_suffix_upper }}:MASTER-GUIRELOAD</string>
</property>
<property name="label">
<string notr="true">Reload</string>
@@ -1172,7 +1172,7 @@ caLabel[statusTip="Operation"]{
<enum>EPushButton::None</enum>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-CPCL-MASTER$(AGEBD_ENV_SUFFIX):RESTART</string>
<string notr="true">AGEBD-CPCL-MASTER{{ agebd_env_suffix_upper }}:RESTART</string>
</property>
<property name="label">
<string notr="true">↺</string>
+11 -11
View File
@@ -162,7 +162,7 @@
</rect>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-ALH$(AGEBD_ENV_SUFFIX):$(service)-STATUS</string>
<string notr="true">AGEBD-ALH{{ agebd_env_suffix_upper }}:$(service)-STATUS</string>
</property>
<property name="colorMode">
<enum>caLineEdit::Default</enum>
@@ -195,7 +195,7 @@
<enum>EPushButton::None</enum>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-MASTER$(AGEBD_ENV_SUFFIX):$(service)-RESTART-REQ</string>
<string notr="true">AGEBD-MASTER{{ agebd_env_suffix_upper }}:$(service)-RESTART-REQ</string>
</property>
<property name="label">
<string notr="true">Restart</string>
@@ -227,7 +227,7 @@
</rect>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-ALH$(AGEBD_ENV_SUFFIX):$(service)-VERSION</string>
<string notr="true">AGEBD-ALH{{ agebd_env_suffix_upper }}:$(service)-VERSION</string>
</property>
<property name="colorMode">
<enum>caLineEdit::Default</enum>
@@ -249,7 +249,7 @@
</rect>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-ALH$(AGEBD_ENV_SUFFIX):$(service)-ONOFF</string>
<string notr="true">AGEBD-ALH{{ agebd_env_suffix_upper }}:$(service)-ONOFF</string>
</property>
<property name="stackingMode" stdset="0">
<enum>caChoice::Column</enum>
@@ -268,7 +268,7 @@
</rect>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-ALH$(AGEBD_ENV_SUFFIX):$(service)-STARTTIME</string>
<string notr="true">AGEBD-ALH{{ agebd_env_suffix_upper }}:$(service)-STARTTIME</string>
</property>
<property name="colorMode">
<enum>caLineEdit::Default</enum>
@@ -320,7 +320,7 @@
<bool>false</bool>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-ALH$(AGEBD_ENV_SUFFIX):$(service)-ALIVE</string>
<string notr="true">AGEBD-ALH{{ agebd_env_suffix_upper }}:$(service)-ALIVE</string>
</property>
<property name="colorMode">
<enum>caLed::Alarm</enum>
@@ -347,7 +347,7 @@
<enum>EPushButton::None</enum>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-MASTER$(AGEBD_ENV_SUFFIX):$(service)-LOGS-REQ</string>
<string notr="true">AGEBD-MASTER{{ agebd_env_suffix_upper }}:$(service)-LOGS-REQ</string>
</property>
<property name="label">
<string notr="true">Logs</string>
@@ -409,7 +409,7 @@
<bool>false</bool>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-ALH$(AGEBD_ENV_SUFFIX):$(service)-ONOFF-RB</string>
<string notr="true">AGEBD-ALH{{ agebd_env_suffix_upper }}:$(service)-ONOFF-RB</string>
</property>
<property name="colorMode">
<enum>caLed::Alarm</enum>
@@ -536,7 +536,7 @@
<enum>EPushButton::None</enum>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-MASTER$(AGEBD_ENV_SUFFIX):$(service)-START-REQ</string>
<string notr="true">AGEBD-MASTER{{ agebd_env_suffix_upper }}:$(service)-START-REQ</string>
</property>
<property name="label">
<string notr="true">Start</string>
@@ -579,7 +579,7 @@
<enum>EPushButton::None</enum>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-MASTER$(AGEBD_ENV_SUFFIX):$(service)-ABORT-REQ</string>
<string notr="true">AGEBD-MASTER{{ agebd_env_suffix_upper }}:$(service)-ABORT-REQ</string>
</property>
<property name="label">
<string notr="true">KILL</string>
@@ -686,7 +686,7 @@
</rect>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-ALH$(AGEBD_ENV_SUFFIX):$(service)-GUIRELOAD</string>
<string notr="true">AGEBD-ALH{{ agebd_env_suffix_upper }}:$(service)-GUIRELOAD</string>
</property>
<property name="label">
<string notr="true">Reload</string>
+9 -9
View File
@@ -78,7 +78,7 @@
<set>Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TAUBPM$(AGEBD_ENV_SUFFIX):TAU</string>
<string notr="true">AGEBD-TAUBPM{{ agebd_env_suffix_upper }}:TAU</string>
</property>
<property name="foreground">
<color>
@@ -138,7 +138,7 @@
<set>Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TAUBPM$(AGEBD_ENV_SUFFIX):TAU-ERR</string>
<string notr="true">AGEBD-TAUBPM{{ agebd_env_suffix_upper }}:TAU-ERR</string>
</property>
<property name="foreground">
<color>
@@ -214,7 +214,7 @@
<set>Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TAUBPM$(AGEBD_ENV_SUFFIX):INJRATE</string>
<string notr="true">AGEBD-TAUBPM{{ agebd_env_suffix_upper }}:INJRATE</string>
</property>
<property name="foreground">
<color>
@@ -274,7 +274,7 @@
<set>Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TAUBPM$(AGEBD_ENV_SUFFIX):INJRATE-ERR</string>
<string notr="true">AGEBD-TAUBPM{{ agebd_env_suffix_upper }}:INJRATE-ERR</string>
</property>
<property name="foreground">
<color>
@@ -363,7 +363,7 @@
<string notr="true">A</string>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-ALH$(AGEBD_ENV_SUFFIX):LIFETIME-GUIRELOAD</string>
<string notr="true">AGEBD-ALH{{ agebd_env_suffix_upper }}:LIFETIME-GUIRELOAD</string>
</property>
<property name="eventSignal">
<enum>caCalc::TriggerZeroToOne</enum>
@@ -395,7 +395,7 @@
</rect>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TAUBPM$(AGEBD_ENV_SUFFIX):CONTROL-NSAMPLES-FIT-TAU</string>
<string notr="true">AGEBD-TAUBPM{{ agebd_env_suffix_upper }}:CONTROL-NSAMPLES-FIT-TAU</string>
</property>
<property name="precisionMode">
<enum>caLineEdit::User</enum>
@@ -411,7 +411,7 @@
</rect>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TAUBPM$(AGEBD_ENV_SUFFIX):CONTROL-MIN-CURR</string>
<string notr="true">AGEBD-TAUBPM{{ agebd_env_suffix_upper }}:CONTROL-MIN-CURR</string>
</property>
<property name="precision">
<number>12</number>
@@ -430,7 +430,7 @@
</rect>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-ALH$(AGEBD_ENV_SUFFIX):TAUBPM-ONOFF</string>
<string notr="true">AGEBD-ALH{{ agebd_env_suffix_upper }}:TAUBPM-ONOFF</string>
</property>
<property name="stackingMode" stdset="0">
<enum>caChoice::Column</enum>
@@ -465,7 +465,7 @@
</rect>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TAUBPM$(AGEBD_ENV_SUFFIX):CONTROL-NSAMPLES-FIT-ROC</string>
<string notr="true">AGEBD-TAUBPM{{ agebd_env_suffix_upper }}:CONTROL-NSAMPLES-FIT-ROC</string>
</property>
<property name="precisionMode">
<enum>caLineEdit::User</enum>
+9 -9
View File
@@ -78,7 +78,7 @@
<set>Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TAUPCT$(AGEBD_ENV_SUFFIX):TAU</string>
<string notr="true">AGEBD-TAUPCT{{ agebd_env_suffix_upper }}:TAU</string>
</property>
<property name="foreground">
<color>
@@ -138,7 +138,7 @@
<set>Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TAUPCT$(AGEBD_ENV_SUFFIX):TAU-ERR</string>
<string notr="true">AGEBD-TAUPCT{{ agebd_env_suffix_upper }}:TAU-ERR</string>
</property>
<property name="foreground">
<color>
@@ -214,7 +214,7 @@
<set>Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TAUPCT$(AGEBD_ENV_SUFFIX):INJRATE</string>
<string notr="true">AGEBD-TAUPCT{{ agebd_env_suffix_upper }}:INJRATE</string>
</property>
<property name="foreground">
<color>
@@ -274,7 +274,7 @@
<set>Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TAUPCT$(AGEBD_ENV_SUFFIX):INJRATE-ERR</string>
<string notr="true">AGEBD-TAUPCT{{ agebd_env_suffix_upper }}:INJRATE-ERR</string>
</property>
<property name="foreground">
<color>
@@ -363,7 +363,7 @@
<string notr="true">A</string>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-ALH$(AGEBD_ENV_SUFFIX):TAUPCT-GUIRELOAD</string>
<string notr="true">AGEBD-ALH{{ agebd_env_suffix_upper }}:TAUPCT-GUIRELOAD</string>
</property>
<property name="eventSignal">
<enum>caCalc::TriggerZeroToOne</enum>
@@ -395,7 +395,7 @@
</rect>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TAUPCT$(AGEBD_ENV_SUFFIX):CONTROL-NSAMPLES-FIT-TAU</string>
<string notr="true">AGEBD-TAUPCT{{ agebd_env_suffix_upper }}:CONTROL-NSAMPLES-FIT-TAU</string>
</property>
<property name="precisionMode">
<enum>caLineEdit::User</enum>
@@ -411,7 +411,7 @@
</rect>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TAUPCT$(AGEBD_ENV_SUFFIX):CONTROL-MIN-CURR</string>
<string notr="true">AGEBD-TAUPCT{{ agebd_env_suffix_upper }}:CONTROL-MIN-CURR</string>
</property>
<property name="precision">
<number>12</number>
@@ -430,7 +430,7 @@
</rect>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-ALH$(AGEBD_ENV_SUFFIX):TAUPCT-ONOFF</string>
<string notr="true">AGEBD-ALH{{ agebd_env_suffix_upper }}:TAUPCT-ONOFF</string>
</property>
<property name="stackingMode" stdset="0">
<enum>caChoice::Column</enum>
@@ -449,7 +449,7 @@
</rect>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TAUPCT$(AGEBD_ENV_SUFFIX):CONTROL-NSAMPLES-FIT-ROC</string>
<string notr="true">AGEBD-TAUPCT{{ agebd_env_suffix_upper }}:CONTROL-NSAMPLES-FIT-ROC</string>
</property>
<property name="precisionMode">
<enum>caLineEdit::User</enum>
+53 -53
View File
@@ -46,7 +46,7 @@
<string notr="true">A</string>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-ALH$(AGEBD_ENV_SUFFIX):TIMING-GUIRELOAD</string>
<string notr="true">AGEBD-ALH{{ agebd_env_suffix_upper }}:TIMING-GUIRELOAD</string>
</property>
<property name="eventSignal">
<enum>caCalc::TriggerZeroToOne</enum>
@@ -154,7 +154,7 @@
<number>0</number>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TIMING$(AGEBD_ENV_SUFFIX):CONTROL-ZERO-DELAY-GUN</string>
<string notr="true">AGEBD-TIMING{{ agebd_env_suffix_upper }}:CONTROL-ZERO-DELAY-GUN</string>
</property>
<property name="precisionMode">
<enum>caSpinbox::User</enum>
@@ -185,7 +185,7 @@
<number>3</number>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TIMING$(AGEBD_ENV_SUFFIX):CONTROL-ZERO-DELAY-lirf-llemast</string>
<string notr="true">AGEBD-TIMING{{ agebd_env_suffix_upper }}:CONTROL-ZERO-DELAY-lirf-llemast</string>
</property>
<property name="precisionMode">
<enum>caSpinbox::User</enum>
@@ -240,7 +240,7 @@
<number>0</number>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TIMING$(AGEBD_ENV_SUFFIX):CONTROL-ZERO-DELAY-BOINKI</string>
<string notr="true">AGEBD-TIMING{{ agebd_env_suffix_upper }}:CONTROL-ZERO-DELAY-BOINKI</string>
</property>
<property name="precisionMode">
<enum>caSpinbox::User</enum>
@@ -295,7 +295,7 @@
<number>0</number>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TIMING$(AGEBD_ENV_SUFFIX):CONTROL-ZERO-DELAY-BOINSE</string>
<string notr="true">AGEBD-TIMING{{ agebd_env_suffix_upper }}:CONTROL-ZERO-DELAY-BOINSE</string>
</property>
<property name="precisionMode">
<enum>caSpinbox::User</enum>
@@ -326,7 +326,7 @@
<number>0</number>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TIMING$(AGEBD_ENV_SUFFIX):CONTROL-ZERO-DELAY-BOEXKI</string>
<string notr="true">AGEBD-TIMING{{ agebd_env_suffix_upper }}:CONTROL-ZERO-DELAY-BOEXKI</string>
</property>
<property name="precisionMode">
<enum>caSpinbox::User</enum>
@@ -384,7 +384,7 @@
<number>0</number>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TIMING$(AGEBD_ENV_SUFFIX):CONTROL-ZERO-DELAY-BOEXSE</string>
<string notr="true">AGEBD-TIMING{{ agebd_env_suffix_upper }}:CONTROL-ZERO-DELAY-BOEXSE</string>
</property>
<property name="precisionMode">
<enum>caSpinbox::User</enum>
@@ -442,7 +442,7 @@
<number>0</number>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TIMING$(AGEBD_ENV_SUFFIX):CONTROL-ZERO-DELAY-SRINSE</string>
<string notr="true">AGEBD-TIMING{{ agebd_env_suffix_upper }}:CONTROL-ZERO-DELAY-SRINSE</string>
</property>
<property name="precisionMode">
<enum>caSpinbox::User</enum>
@@ -548,7 +548,7 @@
<number>0</number>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TIMING$(AGEBD_ENV_SUFFIX):CONTROL-ZERO-DELAY-BTRICT</string>
<string notr="true">AGEBD-TIMING{{ agebd_env_suffix_upper }}:CONTROL-ZERO-DELAY-BTRICT</string>
</property>
<property name="precisionMode">
<enum>caSpinbox::User</enum>
@@ -798,7 +798,7 @@
<number>0</number>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TIMING$(AGEBD_ENV_SUFFIX):CONTROL-ZERO-DELAY-lirf-klystr2</string>
<string notr="true">AGEBD-TIMING{{ agebd_env_suffix_upper }}:CONTROL-ZERO-DELAY-lirf-klystr2</string>
</property>
<property name="precisionMode">
<enum>caSpinbox::User</enum>
@@ -829,7 +829,7 @@
<number>0</number>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TIMING$(AGEBD_ENV_SUFFIX):CONTROL-ZERO-DELAY-lirf-3GHzScp</string>
<string notr="true">AGEBD-TIMING{{ agebd_env_suffix_upper }}:CONTROL-ZERO-DELAY-lirf-3GHzScp</string>
</property>
<property name="precisionMode">
<enum>caSpinbox::User</enum>
@@ -860,7 +860,7 @@
<number>0</number>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TIMING$(AGEBD_ENV_SUFFIX):CONTROL-ZERO-DELAY-lirf-500-PBU</string>
<string notr="true">AGEBD-TIMING{{ agebd_env_suffix_upper }}:CONTROL-ZERO-DELAY-lirf-500-PBU</string>
</property>
<property name="precisionMode">
<enum>caSpinbox::User</enum>
@@ -891,7 +891,7 @@
<number>0</number>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TIMING$(AGEBD_ENV_SUFFIX):CONTROL-ZERO-DELAY-lirf-Kly1PMU</string>
<string notr="true">AGEBD-TIMING{{ agebd_env_suffix_upper }}:CONTROL-ZERO-DELAY-lirf-Kly1PMU</string>
</property>
<property name="precisionMode">
<enum>caSpinbox::User</enum>
@@ -922,7 +922,7 @@
<number>0</number>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TIMING$(AGEBD_ENV_SUFFIX):CONTROL-ZERO-DELAY-lirf-klystr1</string>
<string notr="true">AGEBD-TIMING{{ agebd_env_suffix_upper }}:CONTROL-ZERO-DELAY-lirf-klystr1</string>
</property>
<property name="precisionMode">
<enum>caSpinbox::User</enum>
@@ -953,7 +953,7 @@
<number>0</number>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TIMING$(AGEBD_ENV_SUFFIX):CONTROL-ZERO-DELAY-lirf-preamp1</string>
<string notr="true">AGEBD-TIMING{{ agebd_env_suffix_upper }}:CONTROL-ZERO-DELAY-lirf-preamp1</string>
</property>
<property name="precisionMode">
<enum>caSpinbox::User</enum>
@@ -984,7 +984,7 @@
<number>0</number>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TIMING$(AGEBD_ENV_SUFFIX):CONTROL-ZERO-DELAY-lirf-3GHzQdm</string>
<string notr="true">AGEBD-TIMING{{ agebd_env_suffix_upper }}:CONTROL-ZERO-DELAY-lirf-3GHzQdm</string>
</property>
<property name="precisionMode">
<enum>caSpinbox::User</enum>
@@ -1015,7 +1015,7 @@
<number>0</number>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TIMING$(AGEBD_ENV_SUFFIX):CONTROL-ZERO-DELAY-lirf-preamp2</string>
<string notr="true">AGEBD-TIMING{{ agebd_env_suffix_upper }}:CONTROL-ZERO-DELAY-lirf-preamp2</string>
</property>
<property name="precisionMode">
<enum>caSpinbox::User</enum>
@@ -1046,7 +1046,7 @@
<number>0</number>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TIMING$(AGEBD_ENV_SUFFIX):CONTROL-ZERO-DELAY-lirf-Kly2PMU</string>
<string notr="true">AGEBD-TIMING{{ agebd_env_suffix_upper }}:CONTROL-ZERO-DELAY-lirf-Kly2PMU</string>
</property>
<property name="precisionMode">
<enum>caSpinbox::User</enum>
@@ -1173,7 +1173,7 @@
<number>0</number>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TIMING$(AGEBD_ENV_SUFFIX):CONTROL-ZERO-DELAY-SRINK1</string>
<string notr="true">AGEBD-TIMING{{ agebd_env_suffix_upper }}:CONTROL-ZERO-DELAY-SRINK1</string>
</property>
<property name="precisionMode">
<enum>caSpinbox::User</enum>
@@ -1207,7 +1207,7 @@
<number>0</number>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TIMING$(AGEBD_ENV_SUFFIX):CONTROL-ZERO-DELAY-SRINK2</string>
<string notr="true">AGEBD-TIMING{{ agebd_env_suffix_upper }}:CONTROL-ZERO-DELAY-SRINK2</string>
</property>
<property name="precisionMode">
<enum>caSpinbox::User</enum>
@@ -1241,7 +1241,7 @@
<number>0</number>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TIMING$(AGEBD_ENV_SUFFIX):CONTROL-ZERO-DELAY-SRINK3</string>
<string notr="true">AGEBD-TIMING{{ agebd_env_suffix_upper }}:CONTROL-ZERO-DELAY-SRINK3</string>
</property>
<property name="precisionMode">
<enum>caSpinbox::User</enum>
@@ -1275,7 +1275,7 @@
<number>0</number>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TIMING$(AGEBD_ENV_SUFFIX):CONTROL-ZERO-DELAY-SRINK4</string>
<string notr="true">AGEBD-TIMING{{ agebd_env_suffix_upper }}:CONTROL-ZERO-DELAY-SRINK4</string>
</property>
<property name="precisionMode">
<enum>caSpinbox::User</enum>
@@ -1333,7 +1333,7 @@
<number>0</number>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TIMING$(AGEBD_ENV_SUFFIX):CONTROL-ZERO-DELAY-lindi-ictone</string>
<string notr="true">AGEBD-TIMING{{ agebd_env_suffix_upper }}:CONTROL-ZERO-DELAY-lindi-ictone</string>
</property>
<property name="precisionMode">
<enum>caSpinbox::User</enum>
@@ -1364,7 +1364,7 @@
<number>0</number>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TIMING$(AGEBD_ENV_SUFFIX):CONTROL-ZERO-DELAY-lindi-icts23</string>
<string notr="true">AGEBD-TIMING{{ agebd_env_suffix_upper }}:CONTROL-ZERO-DELAY-lindi-icts23</string>
</property>
<property name="precisionMode">
<enum>caSpinbox::User</enum>
@@ -3472,7 +3472,7 @@
<bool>false</bool>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TIMING$(AGEBD_ENV_SUFFIX):CONTROL-FLW-BCKT-GUN</string>
<string notr="true">AGEBD-TIMING{{ agebd_env_suffix_upper }}:CONTROL-FLW-BCKT-GUN</string>
</property>
</widget>
<widget class="caToggleButton" name="catogglebutton_3">
@@ -3497,7 +3497,7 @@
<bool>false</bool>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TIMING$(AGEBD_ENV_SUFFIX):CONTROL-FLW-BCKT-lirf-llemast</string>
<string notr="true">AGEBD-TIMING{{ agebd_env_suffix_upper }}:CONTROL-FLW-BCKT-lirf-llemast</string>
</property>
</widget>
<widget class="caToggleButton" name="catogglebutton_6">
@@ -3522,7 +3522,7 @@
<bool>false</bool>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TIMING$(AGEBD_ENV_SUFFIX):CONTROL-FLW-BCKT-BOINKI</string>
<string notr="true">AGEBD-TIMING{{ agebd_env_suffix_upper }}:CONTROL-FLW-BCKT-BOINKI</string>
</property>
</widget>
<widget class="caToggleButton" name="catogglebutton_7">
@@ -3547,7 +3547,7 @@
<bool>false</bool>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TIMING$(AGEBD_ENV_SUFFIX):CONTROL-FLW-BCKT-BOINSE</string>
<string notr="true">AGEBD-TIMING{{ agebd_env_suffix_upper }}:CONTROL-FLW-BCKT-BOINSE</string>
</property>
</widget>
<widget class="caToggleButton" name="catogglebutton_10">
@@ -3572,7 +3572,7 @@
<bool>false</bool>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TIMING$(AGEBD_ENV_SUFFIX):CONTROL-FLW-BCKT-BOEXKI</string>
<string notr="true">AGEBD-TIMING{{ agebd_env_suffix_upper }}:CONTROL-FLW-BCKT-BOEXKI</string>
</property>
</widget>
<widget class="caToggleButton" name="catogglebutton_12">
@@ -3597,7 +3597,7 @@
<bool>false</bool>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TIMING$(AGEBD_ENV_SUFFIX):CONTROL-FLW-BCKT-BOEXSE</string>
<string notr="true">AGEBD-TIMING{{ agebd_env_suffix_upper }}:CONTROL-FLW-BCKT-BOEXSE</string>
</property>
</widget>
<widget class="caToggleButton" name="catogglebutton_15">
@@ -3622,7 +3622,7 @@
<bool>false</bool>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TIMING$(AGEBD_ENV_SUFFIX):CONTROL-FLW-BCKT-BTRICT</string>
<string notr="true">AGEBD-TIMING{{ agebd_env_suffix_upper }}:CONTROL-FLW-BCKT-BTRICT</string>
</property>
</widget>
<widget class="caToggleButton" name="catogglebutton_16">
@@ -3647,7 +3647,7 @@
<bool>false</bool>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TIMING$(AGEBD_ENV_SUFFIX):CONTROL-FLW-BCKT-SRINSE</string>
<string notr="true">AGEBD-TIMING{{ agebd_env_suffix_upper }}:CONTROL-FLW-BCKT-SRINSE</string>
</property>
</widget>
<widget class="caToggleButton" name="catogglebutton_19">
@@ -3672,7 +3672,7 @@
<bool>false</bool>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TIMING$(AGEBD_ENV_SUFFIX):CONTROL-FLW-BCKT-SRINK4</string>
<string notr="true">AGEBD-TIMING{{ agebd_env_suffix_upper }}:CONTROL-FLW-BCKT-SRINK4</string>
</property>
</widget>
<widget class="caToggleButton" name="catogglebutton_21">
@@ -3697,7 +3697,7 @@
<bool>false</bool>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TIMING$(AGEBD_ENV_SUFFIX):CONTROL-FLW-BCKT-lirf-preamp1</string>
<string notr="true">AGEBD-TIMING{{ agebd_env_suffix_upper }}:CONTROL-FLW-BCKT-lirf-preamp1</string>
</property>
</widget>
<widget class="caToggleButton" name="catogglebutton_23">
@@ -3722,7 +3722,7 @@
<bool>false</bool>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TIMING$(AGEBD_ENV_SUFFIX):CONTROL-FLW-BCKT-lirf-3GHzQdm</string>
<string notr="true">AGEBD-TIMING{{ agebd_env_suffix_upper }}:CONTROL-FLW-BCKT-lirf-3GHzQdm</string>
</property>
</widget>
<widget class="caToggleButton" name="catogglebutton_24">
@@ -3747,7 +3747,7 @@
<bool>false</bool>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TIMING$(AGEBD_ENV_SUFFIX):CONTROL-FLW-BCKT-lirf-500-PBU</string>
<string notr="true">AGEBD-TIMING{{ agebd_env_suffix_upper }}:CONTROL-FLW-BCKT-lirf-500-PBU</string>
</property>
</widget>
<widget class="caToggleButton" name="catogglebutton_28">
@@ -3772,7 +3772,7 @@
<bool>false</bool>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TIMING$(AGEBD_ENV_SUFFIX):CONTROL-FLW-BCKT-lirf-preamp2</string>
<string notr="true">AGEBD-TIMING{{ agebd_env_suffix_upper }}:CONTROL-FLW-BCKT-lirf-preamp2</string>
</property>
</widget>
<widget class="caToggleButton" name="catogglebutton_29">
@@ -3797,7 +3797,7 @@
<bool>false</bool>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TIMING$(AGEBD_ENV_SUFFIX):CONTROL-FLW-BCKT-lirf-klystr2</string>
<string notr="true">AGEBD-TIMING{{ agebd_env_suffix_upper }}:CONTROL-FLW-BCKT-lirf-klystr2</string>
</property>
</widget>
<widget class="caToggleButton" name="catogglebutton_32">
@@ -3822,7 +3822,7 @@
<bool>false</bool>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TIMING$(AGEBD_ENV_SUFFIX):CONTROL-FLW-BCKT-lirf-3GHzScp</string>
<string notr="true">AGEBD-TIMING{{ agebd_env_suffix_upper }}:CONTROL-FLW-BCKT-lirf-3GHzScp</string>
</property>
</widget>
<widget class="caToggleButton" name="catogglebutton_33">
@@ -3847,7 +3847,7 @@
<bool>false</bool>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TIMING$(AGEBD_ENV_SUFFIX):CONTROL-FLW-BCKT-lirf-Kly1PMU</string>
<string notr="true">AGEBD-TIMING{{ agebd_env_suffix_upper }}:CONTROL-FLW-BCKT-lirf-Kly1PMU</string>
</property>
</widget>
<widget class="caToggleButton" name="catogglebutton_34">
@@ -3872,7 +3872,7 @@
<bool>false</bool>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TIMING$(AGEBD_ENV_SUFFIX):CONTROL-FLW-BCKT-lirf-klystr1</string>
<string notr="true">AGEBD-TIMING{{ agebd_env_suffix_upper }}:CONTROL-FLW-BCKT-lirf-klystr1</string>
</property>
</widget>
<widget class="caToggleButton" name="catogglebutton_37">
@@ -3897,7 +3897,7 @@
<bool>false</bool>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TIMING$(AGEBD_ENV_SUFFIX):CONTROL-FLW-BCKT-lirf-Kly2PMU</string>
<string notr="true">AGEBD-TIMING{{ agebd_env_suffix_upper }}:CONTROL-FLW-BCKT-lirf-Kly2PMU</string>
</property>
</widget>
<widget class="caToggleButton" name="catogglebutton_2">
@@ -3922,7 +3922,7 @@
<bool>false</bool>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TIMING$(AGEBD_ENV_SUFFIX):CONTROL-FLW-BCKT-lindi-ictone</string>
<string notr="true">AGEBD-TIMING{{ agebd_env_suffix_upper }}:CONTROL-FLW-BCKT-lindi-ictone</string>
</property>
</widget>
<widget class="caToggleButton" name="catogglebutton_5">
@@ -3947,7 +3947,7 @@
<bool>false</bool>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TIMING$(AGEBD_ENV_SUFFIX):CONTROL-FLW-BCKT-lindi-icts23</string>
<string notr="true">AGEBD-TIMING{{ agebd_env_suffix_upper }}:CONTROL-FLW-BCKT-lindi-icts23</string>
</property>
</widget>
<widget class="caToggleButton" name="catogglebutton_20">
@@ -3972,7 +3972,7 @@
<bool>false</bool>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TIMING$(AGEBD_ENV_SUFFIX):CONTROL-FLW-BCKT-SRINK3</string>
<string notr="true">AGEBD-TIMING{{ agebd_env_suffix_upper }}:CONTROL-FLW-BCKT-SRINK3</string>
</property>
</widget>
<widget class="caToggleButton" name="catogglebutton_22">
@@ -3997,7 +3997,7 @@
<bool>false</bool>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TIMING$(AGEBD_ENV_SUFFIX):CONTROL-FLW-BCKT-SRINK2</string>
<string notr="true">AGEBD-TIMING{{ agebd_env_suffix_upper }}:CONTROL-FLW-BCKT-SRINK2</string>
</property>
</widget>
<widget class="caToggleButton" name="catogglebutton_25">
@@ -4022,7 +4022,7 @@
<bool>false</bool>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TIMING$(AGEBD_ENV_SUFFIX):CONTROL-FLW-BCKT-SRINK1</string>
<string notr="true">AGEBD-TIMING{{ agebd_env_suffix_upper }}:CONTROL-FLW-BCKT-SRINK1</string>
</property>
</widget>
<zorder>catogglebutton_3</zorder>
@@ -4089,7 +4089,7 @@
<set>Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TIMING$(AGEBD_ENV_SUFFIX):SETALL-DELAY</string>
<string notr="true">AGEBD-TIMING{{ agebd_env_suffix_upper }}:SETALL-DELAY</string>
</property>
<property name="foreground">
<color>
@@ -4149,7 +4149,7 @@
<set>Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TIMING$(AGEBD_ENV_SUFFIX):SETALL-ERROR</string>
<string notr="true">AGEBD-TIMING{{ agebd_env_suffix_upper }}:SETALL-ERROR</string>
</property>
<property name="foreground">
<color>
@@ -4230,7 +4230,7 @@
</rect>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TIMING$(AGEBD_ENV_SUFFIX):CONTROL-FILLPATTERN-string.VAL</string>
<string notr="true">AGEBD-TIMING{{ agebd_env_suffix_upper }}:CONTROL-FILLPATTERN-string.VAL</string>
</property>
<property name="precision">
<number>0</number>
@@ -4266,7 +4266,7 @@
<enum>EPushButton::WidthAndHeight</enum>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TIMING$(AGEBD_ENV_SUFFIX):ZERO-TARGET-BUCKET</string>
<string notr="true">AGEBD-TIMING{{ agebd_env_suffix_upper }}:ZERO-TARGET-BUCKET</string>
</property>
<property name="label">
<string notr="true">Reset</string>
@@ -4426,7 +4426,7 @@
<string notr="true">!A</string>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-ALH$(AGEBD_ENV_SUFFIX):TIMING-ONOFF</string>
<string notr="true">AGEBD-ALH{{ agebd_env_suffix_upper }}:TIMING-ONOFF</string>
</property>
</widget>
<widget class="caMessageButton" name="camessagebutton_40">
@@ -4470,7 +4470,7 @@
</color>
</property>
<property name="disableChannel" stdset="0">
<string notr="true">AGEBD-ALH$(AGEBD_ENV_SUFFIX):TIMING-ONOFF</string>
<string notr="true">AGEBD-ALH{{ agebd_env_suffix_upper }}:TIMING-ONOFF</string>
</property>
<property name="releaseMessage">
<string notr="true">0</string>
+26 -26
View File
@@ -24,7 +24,7 @@
</rect>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-ALH$(AGEBD_ENV_SUFFIX):TOPUPTOOL-ONOFF</string>
<string notr="true">AGEBD-ALH{{ agebd_env_suffix_upper }}:TOPUPTOOL-ONOFF</string>
</property>
<property name="stackingMode" stdset="0">
<enum>caChoice::Column</enum>
@@ -209,7 +209,7 @@
<number>0</number>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TOPUPTOOL$(AGEBD_ENV_SUFFIX):CONTROL-GUNGRID-MAX</string>
<string notr="true">AGEBD-TOPUPTOOL{{ agebd_env_suffix_upper }}:CONTROL-GUNGRID-MAX</string>
</property>
<property name="precisionMode">
<enum>caSpinbox::User</enum>
@@ -273,7 +273,7 @@
<string notr="true">A</string>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-ALH$(AGEBD_ENV_SUFFIX):SCRUBBING-GUIRELOAD</string>
<string notr="true">AGEBD-ALH{{ agebd_env_suffix_upper }}:SCRUBBING-GUIRELOAD</string>
</property>
<property name="eventSignal">
<enum>caCalc::TriggerOneToZero</enum>
@@ -289,7 +289,7 @@
</rect>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-ALH$(AGEBD_ENV_SUFFIX):SCRUBBING-INFO</string>
<string notr="true">AGEBD-ALH{{ agebd_env_suffix_upper }}:SCRUBBING-INFO</string>
</property>
<property name="colorMode">
<enum>caLineEdit::Alarm_Default</enum>
@@ -311,7 +311,7 @@
</rect>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TOPUPTOOL$(AGEBD_ENV_SUFFIX):TOPUP-DELTAT</string>
<string notr="true">AGEBD-TOPUPTOOL{{ agebd_env_suffix_upper }}:TOPUP-DELTAT</string>
</property>
<property name="colorMode">
<enum>caLineEdit::Default</enum>
@@ -336,7 +336,7 @@
</rect>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TOPUPTOOL$(AGEBD_ENV_SUFFIX):TOPUP-TAU</string>
<string notr="true">AGEBD-TOPUPTOOL{{ agebd_env_suffix_upper }}:TOPUP-TAU</string>
</property>
<property name="colorMode">
<enum>caLineEdit::Default</enum>
@@ -430,7 +430,7 @@
</rect>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TOPUPTOOL$(AGEBD_ENV_SUFFIX):TOPUP-DELTAI</string>
<string notr="true">AGEBD-TOPUPTOOL{{ agebd_env_suffix_upper }}:TOPUP-DELTAI</string>
</property>
<property name="colorMode">
<enum>caLineEdit::Default</enum>
@@ -1989,7 +1989,7 @@
<number>22</number>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-INJECTIONGUARD$(AGEBD_ENV_SUFFIX):STATUS-SECRET-MASTER</string>
<string notr="true">AGEBD-INJECTIONGUARD{{ agebd_env_suffix_upper }}:STATUS-SECRET-MASTER</string>
</property>
<property name="colorMode">
<enum>caLed::Alarm</enum>
@@ -2286,7 +2286,7 @@ AGETI-CVME-MASTER-TMA:Evt-SR-Inj-EVRCount-I</string>
<number>1</number>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TOPUPTOOL$(AGEBD_ENV_SUFFIX):CONTROL-CURRENT-MAX</string>
<string notr="true">AGEBD-TOPUPTOOL{{ agebd_env_suffix_upper }}:CONTROL-CURRENT-MAX</string>
</property>
<property name="precisionMode">
<enum>caSpinbox::User</enum>
@@ -2744,7 +2744,7 @@ AGETI-CVME-MASTER-TMA:Evt-14.VALA</string>
<number>1</number>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TOPUPTOOL$(AGEBD_ENV_SUFFIX):CONTROL-CURRENT-MAX</string>
<string notr="true">AGEBD-TOPUPTOOL{{ agebd_env_suffix_upper }}:CONTROL-CURRENT-MAX</string>
</property>
<property name="precisionMode">
<enum>caSpinbox::User</enum>
@@ -2769,7 +2769,7 @@ AGETI-CVME-MASTER-TMA:Evt-14.VALA</string>
<number>1</number>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TOPUPTOOL$(AGEBD_ENV_SUFFIX):CONTROL-CURRENT-MAX</string>
<string notr="true">AGEBD-TOPUPTOOL{{ agebd_env_suffix_upper }}:CONTROL-CURRENT-MAX</string>
</property>
<property name="precisionMode">
<enum>caSpinbox::User</enum>
@@ -2794,7 +2794,7 @@ AGETI-CVME-MASTER-TMA:Evt-14.VALA</string>
<number>1</number>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TOPUPTOOL$(AGEBD_ENV_SUFFIX):CONTROL-CURRENT-MAX</string>
<string notr="true">AGEBD-TOPUPTOOL{{ agebd_env_suffix_upper }}:CONTROL-CURRENT-MAX</string>
</property>
<property name="precisionMode">
<enum>caSpinbox::User</enum>
@@ -2819,7 +2819,7 @@ AGETI-CVME-MASTER-TMA:Evt-14.VALA</string>
<number>1</number>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TOPUPTOOL$(AGEBD_ENV_SUFFIX):CONTROL-CURRENT-MAX</string>
<string notr="true">AGEBD-TOPUPTOOL{{ agebd_env_suffix_upper }}:CONTROL-CURRENT-MAX</string>
</property>
<property name="precisionMode">
<enum>caSpinbox::User</enum>
@@ -2844,7 +2844,7 @@ AGETI-CVME-MASTER-TMA:Evt-14.VALA</string>
<number>1</number>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TOPUPTOOL$(AGEBD_ENV_SUFFIX):CONTROL-CURRENT-MAX</string>
<string notr="true">AGEBD-TOPUPTOOL{{ agebd_env_suffix_upper }}:CONTROL-CURRENT-MAX</string>
</property>
<property name="precisionMode">
<enum>caSpinbox::User</enum>
@@ -2869,7 +2869,7 @@ AGETI-CVME-MASTER-TMA:Evt-14.VALA</string>
<number>1</number>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TOPUPTOOL$(AGEBD_ENV_SUFFIX):CONTROL-CURRENT-MAX</string>
<string notr="true">AGEBD-TOPUPTOOL{{ agebd_env_suffix_upper }}:CONTROL-CURRENT-MAX</string>
</property>
<property name="precisionMode">
<enum>caSpinbox::User</enum>
@@ -2894,7 +2894,7 @@ AGETI-CVME-MASTER-TMA:Evt-14.VALA</string>
<number>1</number>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TOPUPTOOL$(AGEBD_ENV_SUFFIX):CONTROL-CURRENT-MAX</string>
<string notr="true">AGEBD-TOPUPTOOL{{ agebd_env_suffix_upper }}:CONTROL-CURRENT-MAX</string>
</property>
<property name="precisionMode">
<enum>caSpinbox::User</enum>
@@ -3050,7 +3050,7 @@ AGETI-CVME-MASTER-TMA:Evt-14.VALA</string>
<number>1</number>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TOPUPTOOL$(AGEBD_ENV_SUFFIX):CONTROL-CURRENT-MAX</string>
<string notr="true">AGEBD-TOPUPTOOL{{ agebd_env_suffix_upper }}:CONTROL-CURRENT-MAX</string>
</property>
<property name="precisionMode">
<enum>caSpinbox::User</enum>
@@ -3121,7 +3121,7 @@ AGETI-CVME-MASTER-TMA:Evt-14.VALA</string>
<number>1</number>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TOPUPTOOL$(AGEBD_ENV_SUFFIX):CONTROL-TIME-FREQ</string>
<string notr="true">AGEBD-TOPUPTOOL{{ agebd_env_suffix_upper }}:CONTROL-TIME-FREQ</string>
</property>
<property name="precisionMode">
<enum>caSpinbox::User</enum>
@@ -3169,7 +3169,7 @@ AGETI-CVME-MASTER-TMA:Evt-14.VALA</string>
<number>1</number>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TOPUPTOOL$(AGEBD_ENV_SUFFIX):CONTROL-CURRENT-MIN</string>
<string notr="true">AGEBD-TOPUPTOOL{{ agebd_env_suffix_upper }}:CONTROL-CURRENT-MIN</string>
</property>
<property name="precisionMode">
<enum>caSpinbox::User</enum>
@@ -3194,7 +3194,7 @@ AGETI-CVME-MASTER-TMA:Evt-14.VALA</string>
<number>1</number>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TOPUPTOOL$(AGEBD_ENV_SUFFIX):CONTROL-VAC-MAX</string>
<string notr="true">AGEBD-TOPUPTOOL{{ agebd_env_suffix_upper }}:CONTROL-VAC-MAX</string>
</property>
<property name="precisionMode">
<enum>caSpinbox::User</enum>
@@ -3219,7 +3219,7 @@ AGETI-CVME-MASTER-TMA:Evt-14.VALA</string>
<number>1</number>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TOPUPTOOL$(AGEBD_ENV_SUFFIX):CONTROL-VAC-MIN</string>
<string notr="true">AGEBD-TOPUPTOOL{{ agebd_env_suffix_upper }}:CONTROL-VAC-MIN</string>
</property>
<property name="precisionMode">
<enum>caSpinbox::User</enum>
@@ -3262,7 +3262,7 @@ AGETI-CVME-MASTER-TMA:Evt-14.VALA</string>
</rect>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TOPUPTOOL$(AGEBD_ENV_SUFFIX):TOPUP-DELTAT</string>
<string notr="true">AGEBD-TOPUPTOOL{{ agebd_env_suffix_upper }}:TOPUP-DELTAT</string>
</property>
<property name="colorMode">
<enum>caLineEdit::Default</enum>
@@ -3287,7 +3287,7 @@ AGETI-CVME-MASTER-TMA:Evt-14.VALA</string>
</rect>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TOPUPTOOL$(AGEBD_ENV_SUFFIX):TOPUP-DELTAI</string>
<string notr="true">AGEBD-TOPUPTOOL{{ agebd_env_suffix_upper }}:TOPUP-DELTAI</string>
</property>
<property name="colorMode">
<enum>caLineEdit::Default</enum>
@@ -3312,7 +3312,7 @@ AGETI-CVME-MASTER-TMA:Evt-14.VALA</string>
</rect>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TOPUPTOOL$(AGEBD_ENV_SUFFIX):TOPUP-TAU</string>
<string notr="true">AGEBD-TOPUPTOOL{{ agebd_env_suffix_upper }}:TOPUP-TAU</string>
</property>
<property name="colorMode">
<enum>caLineEdit::Default</enum>
@@ -3337,7 +3337,7 @@ AGETI-CVME-MASTER-TMA:Evt-14.VALA</string>
</rect>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TOPUPTOOL$(AGEBD_ENV_SUFFIX):TOPUP-DELTAI</string>
<string notr="true">AGEBD-TOPUPTOOL{{ agebd_env_suffix_upper }}:TOPUP-DELTAI</string>
</property>
<property name="colorMode">
<enum>caLineEdit::Default</enum>
@@ -3431,7 +3431,7 @@ AGETI-CVME-MASTER-TMA:Evt-14.VALA</string>
</rect>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TOPUPTOOL$(AGEBD_ENV_SUFFIX):TOPUP-DELTAT</string>
<string notr="true">AGEBD-TOPUPTOOL{{ agebd_env_suffix_upper }}:TOPUP-DELTAT</string>
</property>
<property name="colorMode">
<enum>caLineEdit::Default</enum>
+25 -25
View File
@@ -55,7 +55,7 @@
<string notr="true">x [mm]</string>
</property>
<property name="channels_1" stdset="0">
<string>AGEBD-TUNE$(AGEBD_ENV_SUFFIX):OSCILLATION-SAMPLE-ALL;AGEBD-TUNE$(AGEBD_ENV_SUFFIX):OSCILLATION-X-ALL</string>
<string>AGEBD-TUNE{{ agebd_env_suffix_upper }}:OSCILLATION-SAMPLE-ALL;AGEBD-TUNE{{ agebd_env_suffix_upper }}:OSCILLATION-X-ALL</string>
</property>
<property name="symbol_1">
<enum>caCartesianPlot::NoSymbol</enum>
@@ -102,7 +102,7 @@
<string notr="true">y [mm]</string>
</property>
<property name="channels_1" stdset="0">
<string>AGEBD-TUNE$(AGEBD_ENV_SUFFIX):OSCILLATION-SAMPLE-ALL;AGEBD-TUNE$(AGEBD_ENV_SUFFIX):OSCILLATION-Y-ALL</string>
<string>AGEBD-TUNE{{ agebd_env_suffix_upper }}:OSCILLATION-SAMPLE-ALL;AGEBD-TUNE{{ agebd_env_suffix_upper }}:OSCILLATION-Y-ALL</string>
</property>
<property name="symbol_1">
<enum>caCartesianPlot::NoSymbol</enum>
@@ -151,7 +151,7 @@
<string notr="true">Amplitude</string>
</property>
<property name="channels_1" stdset="0">
<string>AGEBD-TUNE$(AGEBD_ENV_SUFFIX):SPEC-SAMPLE-ALL;AGEBD-TUNE$(AGEBD_ENV_SUFFIX):HORIZONTAL-SPEC-ALL</string>
<string>AGEBD-TUNE{{ agebd_env_suffix_upper }}:SPEC-SAMPLE-ALL;AGEBD-TUNE{{ agebd_env_suffix_upper }}:HORIZONTAL-SPEC-ALL</string>
</property>
<property name="symbol_1">
<enum>caCartesianPlot::NoSymbol</enum>
@@ -198,7 +198,7 @@
<string notr="true">Amplitude</string>
</property>
<property name="channels_1" stdset="0">
<string>AGEBD-TUNE$(AGEBD_ENV_SUFFIX):SPEC-SAMPLE-ALL;AGEBD-TUNE$(AGEBD_ENV_SUFFIX):VERTICAL-SPEC-ALL</string>
<string>AGEBD-TUNE{{ agebd_env_suffix_upper }}:SPEC-SAMPLE-ALL;AGEBD-TUNE{{ agebd_env_suffix_upper }}:VERTICAL-SPEC-ALL</string>
</property>
<property name="symbol_1">
<enum>caCartesianPlot::NoSymbol</enum>
@@ -283,7 +283,7 @@
<bool>false</bool>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-ALH$(AGEBD_ENV_SUFFIX):TUNE-ALIVE</string>
<string notr="true">AGEBD-ALH{{ agebd_env_suffix_upper }}:TUNE-ALIVE</string>
</property>
<property name="colorMode">
<enum>caLed::Alarm</enum>
@@ -323,7 +323,7 @@
<bool>false</bool>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-ALH$(AGEBD_ENV_SUFFIX):TUNE-ONOFF-RB</string>
<string notr="true">AGEBD-ALH{{ agebd_env_suffix_upper }}:TUNE-ONOFF-RB</string>
</property>
<property name="colorMode">
<enum>caLed::Alarm</enum>
@@ -358,7 +358,7 @@ measurement</string>
<bool>true</bool>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-ALH$(AGEBD_ENV_SUFFIX):TUNE-ONOFF</string>
<string notr="true">AGEBD-ALH{{ agebd_env_suffix_upper }}:TUNE-ONOFF</string>
</property>
</widget>
</item>
@@ -405,7 +405,7 @@ measurement</string>
</rect>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TUNE$(AGEBD_ENV_SUFFIX):MEAS-TIME</string>
<string notr="true">AGEBD-TUNE{{ agebd_env_suffix_upper }}:MEAS-TIME</string>
</property>
</widget>
<widget class="QWidget" name="gridLayoutWidget_2">
@@ -433,7 +433,7 @@ measurement</string>
<item row="2" column="1">
<widget class="caLineEdit" name="calineedit_Q2_FFT">
<property name="channel" stdset="0">
<string notr="true">AGEBD-TUNE$(AGEBD_ENV_SUFFIX):VERTICAL-PEAK1-FREQ</string>
<string notr="true">AGEBD-TUNE{{ agebd_env_suffix_upper }}:VERTICAL-PEAK1-FREQ</string>
</property>
<property name="precision">
<number>4</number>
@@ -467,7 +467,7 @@ measurement</string>
<item row="1" column="1">
<widget class="caLineEdit" name="calineedit_Q1_FFT">
<property name="channel" stdset="0">
<string notr="true">AGEBD-TUNE$(AGEBD_ENV_SUFFIX):HORIZONTAL-PEAK1-FREQ</string>
<string notr="true">AGEBD-TUNE{{ agebd_env_suffix_upper }}:HORIZONTAL-PEAK1-FREQ</string>
</property>
<property name="precision">
<number>4</number>
@@ -516,7 +516,7 @@ measurement</string>
<item row="1" column="2">
<widget class="caLineEdit" name="calineedit_Q1_NAFF">
<property name="channel" stdset="0">
<string notr="true">AGEBD-TUNE$(AGEBD_ENV_SUFFIX):Q1_NAFF</string>
<string notr="true">AGEBD-TUNE{{ agebd_env_suffix_upper }}:Q1_NAFF</string>
</property>
<property name="precision">
<number>4</number>
@@ -538,7 +538,7 @@ measurement</string>
<item row="2" column="2">
<widget class="caLineEdit" name="calineedit_Q2_NAFF">
<property name="channel" stdset="0">
<string notr="true">AGEBD-TUNE$(AGEBD_ENV_SUFFIX):Q2_NAFF</string>
<string notr="true">AGEBD-TUNE{{ agebd_env_suffix_upper }}:Q2_NAFF</string>
</property>
<property name="precision">
<number>4</number>
@@ -612,7 +612,7 @@ measurement</string>
<bool>false</bool>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TUNE$(AGEBD_ENV_SUFFIX):SVD-CLEAN</string>
<string notr="true">AGEBD-TUNE{{ agebd_env_suffix_upper }}:SVD-CLEAN</string>
</property>
</widget>
<widget class="caNumeric" name="canumeric_2">
@@ -631,7 +631,7 @@ measurement</string>
<number>0</number>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TUNE$(AGEBD_ENV_SUFFIX):SVD-CLEAN-Neigenvalues</string>
<string notr="true">AGEBD-TUNE{{ agebd_env_suffix_upper }}:SVD-CLEAN-Neigenvalues</string>
</property>
<property name="fixedFormat">
<bool>false</bool>
@@ -705,7 +705,7 @@ values</string>
<number>2</number>
</property>
<property name="channel" stdset="0">
<string>AGEBD-TUNE$(AGEBD_ENV_SUFFIX):CONTROL-ROI-Yi</string>
<string>AGEBD-TUNE{{ agebd_env_suffix_upper }}:CONTROL-ROI-Yi</string>
</property>
<property name="precisionMode">
<enum>caSpinbox::User</enum>
@@ -756,7 +756,7 @@ values</string>
<double>0.000000000000000</double>
</property>
<property name="channel" stdset="0">
<string>AGEBD-TUNE$(AGEBD_ENV_SUFFIX):CONTROL-ROI-Xf</string>
<string>AGEBD-TUNE{{ agebd_env_suffix_upper }}:CONTROL-ROI-Xf</string>
</property>
<property name="precisionMode">
<enum>caSpinbox::User</enum>
@@ -789,7 +789,7 @@ values</string>
<number>2</number>
</property>
<property name="channel" stdset="0">
<string>AGEBD-TUNE$(AGEBD_ENV_SUFFIX):CONTROL-ROI-Xi</string>
<string>AGEBD-TUNE{{ agebd_env_suffix_upper }}:CONTROL-ROI-Xi</string>
</property>
<property name="precisionMode">
<enum>caSpinbox::User</enum>
@@ -870,7 +870,7 @@ values</string>
<double>0.000000000000000</double>
</property>
<property name="channel" stdset="0">
<string>AGEBD-TUNE$(AGEBD_ENV_SUFFIX):CONTROL-ROI-Yf</string>
<string>AGEBD-TUNE{{ agebd_env_suffix_upper }}:CONTROL-ROI-Yf</string>
</property>
<property name="precisionMode">
<enum>caSpinbox::User</enum>
@@ -934,7 +934,7 @@ values</string>
<bool>false</bool>
</property>
<property name="channel" stdset="0">
<string>AGEBD-TUNE$(AGEBD_ENV_SUFFIX):CONTROL-TbTLastIndex </string>
<string>AGEBD-TUNE{{ agebd_env_suffix_upper }}:CONTROL-TbTLastIndex </string>
</property>
<property name="limitsMode">
<enum>caSpinbox::User</enum>
@@ -994,7 +994,7 @@ values</string>
<bool>false</bool>
</property>
<property name="channel" stdset="0">
<string>AGEBD-TUNE$(AGEBD_ENV_SUFFIX):CONTROL-TbTFirstIndex </string>
<string>AGEBD-TUNE{{ agebd_env_suffix_upper }}:CONTROL-TbTFirstIndex </string>
</property>
<property name="fixedFormat">
<bool>false</bool>
@@ -1045,7 +1045,7 @@ values</string>
<bool>true</bool>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TUNE$(AGEBD_ENV_SUFFIX):CONTROL-NAveraging</string>
<string notr="true">AGEBD-TUNE{{ agebd_env_suffix_upper }}:CONTROL-NAveraging</string>
</property>
<property name="precisionMode">
<enum>caNumeric::Channel</enum>
@@ -1096,7 +1096,7 @@ values</string>
<bool>true</bool>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TUNE$(AGEBD_ENV_SUFFIX):CONTROL-NAFF</string>
<string notr="true">AGEBD-TUNE{{ agebd_env_suffix_upper }}:CONTROL-NAFF</string>
</property>
</widget>
</item>
@@ -1130,7 +1130,7 @@ harmonics</string>
<bool>true</bool>
</property>
<property name="channel" stdset="0">
<string>AGEBD-TUNE$(AGEBD_ENV_SUFFIX):NAFF-HARMONICS</string>
<string>AGEBD-TUNE{{ agebd_env_suffix_upper }}:NAFF-HARMONICS</string>
</property>
<property name="precisionMode">
<enum>caNumeric::Channel</enum>
@@ -1185,7 +1185,7 @@ ARS07-DBPM-0840</string>
</rect>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TUNE$(AGEBD_ENV_SUFFIX):BPM-SELECT-SINGLE</string>
<string notr="true">AGEBD-TUNE{{ agebd_env_suffix_upper }}:BPM-SELECT-SINGLE</string>
</property>
<item>
<property name="text">
@@ -1873,7 +1873,7 @@ ARS07-DBPM-0840</string>
<bool>false</bool>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TUNE$(AGEBD_ENV_SUFFIX):SINGLE-BPM</string>
<string notr="true">AGEBD-TUNE{{ agebd_env_suffix_upper }}:SINGLE-BPM</string>
</property>
</widget>
</widget>
+88 -88
View File
@@ -81,7 +81,7 @@ caLabel[statusTip=&quot;Operation&quot;]{
<string notr="true">A</string>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-ALH$(AGEBD_ENV_SUFFIX):TUNEBUMP-GUIRELOAD</string>
<string notr="true">AGEBD-ALH{{ agebd_env_suffix_upper }}:TUNEBUMP-GUIRELOAD</string>
</property>
<property name="eventSignal">
<enum>caCalc::TriggerZeroToOne</enum>
@@ -103,7 +103,7 @@ caLabel[statusTip=&quot;Operation&quot;]{
<bool>false</bool>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TUNEBUMP$(AGEBD_ENV_SUFFIX):QX-STEPDOWN</string>
<string notr="true">AGEBD-TUNEBUMP{{ agebd_env_suffix_upper }}:QX-STEPDOWN</string>
</property>
<property name="label">
<string notr="true">&lt;&lt;</string>
@@ -141,7 +141,7 @@ caLabel[statusTip=&quot;Operation&quot;]{
<number>4</number>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TUNEBUMP$(AGEBD_ENV_SUFFIX):QX-STEPSIZE</string>
<string notr="true">AGEBD-TUNEBUMP{{ agebd_env_suffix_upper }}:QX-STEPSIZE</string>
</property>
<property name="precisionMode">
<enum>caSpinbox::User</enum>
@@ -175,7 +175,7 @@ caLabel[statusTip=&quot;Operation&quot;]{
<number>4</number>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TUNEBUMP$(AGEBD_ENV_SUFFIX):QY-STEPSIZE</string>
<string notr="true">AGEBD-TUNEBUMP{{ agebd_env_suffix_upper }}:QY-STEPSIZE</string>
</property>
<property name="precisionMode">
<enum>caSpinbox::User</enum>
@@ -232,7 +232,7 @@ caLabel[statusTip=&quot;Operation&quot;]{
<bool>false</bool>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TUNEBUMP$(AGEBD_ENV_SUFFIX):QY-STEPDOWN</string>
<string notr="true">AGEBD-TUNEBUMP{{ agebd_env_suffix_upper }}:QY-STEPDOWN</string>
</property>
<property name="label">
<string notr="true">&lt;&lt;</string>
@@ -330,7 +330,7 @@ caLabel[statusTip=&quot;Operation&quot;]{
<bool>false</bool>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TUNEBUMP$(AGEBD_ENV_SUFFIX):QY-STEPUP</string>
<string notr="true">AGEBD-TUNEBUMP{{ agebd_env_suffix_upper }}:QY-STEPUP</string>
</property>
<property name="label">
<string notr="true">&gt;&gt;</string>
@@ -368,7 +368,7 @@ caLabel[statusTip=&quot;Operation&quot;]{
<bool>false</bool>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TUNEBUMP$(AGEBD_ENV_SUFFIX):QX-STEPUP</string>
<string notr="true">AGEBD-TUNEBUMP{{ agebd_env_suffix_upper }}:QX-STEPUP</string>
</property>
<property name="label">
<string notr="true">&gt;&gt;</string>
@@ -457,7 +457,7 @@ caLabel[statusTip=&quot;Operation&quot;]{
<string notr="true">Vertical Tune (nominal: Qy = 15.22)</string>
</property>
<property name="channels_1" stdset="0">
<string>AGEBD-TUNEBUMP$(AGEBD_ENV_SUFFIX):NORM-QY-FREQ;AGEBD-TUNEBUMP$(AGEBD_ENV_SUFFIX):NORM-QY-AMP</string>
<string>AGEBD-TUNEBUMP{{ agebd_env_suffix_upper }}:NORM-QY-FREQ;AGEBD-TUNEBUMP{{ agebd_env_suffix_upper }}:NORM-QY-AMP</string>
</property>
<property name="color_1">
<color>
@@ -467,7 +467,7 @@ caLabel[statusTip=&quot;Operation&quot;]{
</color>
</property>
<property name="channels_2" stdset="0">
<string>AGEBD-TUNEBUMP$(AGEBD_ENV_SUFFIX):QY-PEAKS-FREQ;AGEBD-TUNEBUMP$(AGEBD_ENV_SUFFIX):QY-PEAKS</string>
<string>AGEBD-TUNEBUMP{{ agebd_env_suffix_upper }}:QY-PEAKS-FREQ;AGEBD-TUNEBUMP{{ agebd_env_suffix_upper }}:QY-PEAKS</string>
</property>
<property name="Style_2">
<enum>caCartesianPlot::Sticks</enum>
@@ -518,7 +518,7 @@ caLabel[statusTip=&quot;Operation&quot;]{
<string notr="true">Synchrotron Tune (nominal: 0.0027)</string>
</property>
<property name="channels_1" stdset="0">
<string>AGEBD-TUNEBUMP$(AGEBD_ENV_SUFFIX):NORM-QZ-FREQ;AGEBD-TUNEBUMP$(AGEBD_ENV_SUFFIX):NORM-QZ-AMP</string>
<string>AGEBD-TUNEBUMP{{ agebd_env_suffix_upper }}:NORM-QZ-FREQ;AGEBD-TUNEBUMP{{ agebd_env_suffix_upper }}:NORM-QZ-AMP</string>
</property>
<property name="color_1">
<color>
@@ -528,7 +528,7 @@ caLabel[statusTip=&quot;Operation&quot;]{
</color>
</property>
<property name="channels_2" stdset="0">
<string>AGEBD-TUNEBUMP$(AGEBD_ENV_SUFFIX):QZ-PEAKS-FREQ;AGEBD-TUNEBUMP$(AGEBD_ENV_SUFFIX):QZ-PEAKS</string>
<string>AGEBD-TUNEBUMP{{ agebd_env_suffix_upper }}:QZ-PEAKS-FREQ;AGEBD-TUNEBUMP{{ agebd_env_suffix_upper }}:QZ-PEAKS</string>
</property>
<property name="Style_2">
<enum>caCartesianPlot::Sticks</enum>
@@ -579,7 +579,7 @@ caLabel[statusTip=&quot;Operation&quot;]{
<string notr="true">Horizontal Tune (nominal: Qx = 39.37)</string>
</property>
<property name="channels_1" stdset="0">
<string>AGEBD-TUNEBUMP$(AGEBD_ENV_SUFFIX):NORM-QX-FREQ;AGEBD-TUNEBUMP$(AGEBD_ENV_SUFFIX):NORM-QX-AMP</string>
<string>AGEBD-TUNEBUMP{{ agebd_env_suffix_upper }}:NORM-QX-FREQ;AGEBD-TUNEBUMP{{ agebd_env_suffix_upper }}:NORM-QX-AMP</string>
</property>
<property name="color_1">
<color>
@@ -589,7 +589,7 @@ caLabel[statusTip=&quot;Operation&quot;]{
</color>
</property>
<property name="channels_2" stdset="0">
<string>AGEBD-TUNEBUMP$(AGEBD_ENV_SUFFIX):QX-PEAKS-FREQ;AGEBD-TUNEBUMP$(AGEBD_ENV_SUFFIX):QX-PEAKS</string>
<string>AGEBD-TUNEBUMP{{ agebd_env_suffix_upper }}:QX-PEAKS-FREQ;AGEBD-TUNEBUMP{{ agebd_env_suffix_upper }}:QX-PEAKS</string>
</property>
<property name="Style_2">
<enum>caCartesianPlot::Sticks</enum>
@@ -657,7 +657,7 @@ caLabel[statusTip=&quot;Operation&quot;]{
<string notr="true">Tune Z</string>
</property>
<property name="channels_1" stdset="0">
<string>AGEBD-TUNEBUMP$(AGEBD_ENV_SUFFIX):SPEC-FREQ-qZ;AGEBD-TUNEBUMP$(AGEBD_ENV_SUFFIX):SPEC-Z</string>
<string>AGEBD-TUNEBUMP{{ agebd_env_suffix_upper }}:SPEC-FREQ-qZ;AGEBD-TUNEBUMP{{ agebd_env_suffix_upper }}:SPEC-Z</string>
</property>
<property name="color_1">
<color>
@@ -702,7 +702,7 @@ caLabel[statusTip=&quot;Operation&quot;]{
<string notr="true">Tune Y</string>
</property>
<property name="channels_1" stdset="0">
<string>AGEBD-TUNEBUMP$(AGEBD_ENV_SUFFIX):SPEC-FREQ-qY;AGEBD-TUNEBUMP$(AGEBD_ENV_SUFFIX):SPEC-Y</string>
<string>AGEBD-TUNEBUMP{{ agebd_env_suffix_upper }}:SPEC-FREQ-qY;AGEBD-TUNEBUMP{{ agebd_env_suffix_upper }}:SPEC-Y</string>
</property>
<property name="color_1">
<color>
@@ -747,7 +747,7 @@ caLabel[statusTip=&quot;Operation&quot;]{
<string notr="true">Tune X</string>
</property>
<property name="channels_1" stdset="0">
<string>AGEBD-TUNEBUMP$(AGEBD_ENV_SUFFIX):SPEC-FREQ-qX;AGEBD-TUNEBUMP$(AGEBD_ENV_SUFFIX):SPEC-X</string>
<string>AGEBD-TUNEBUMP{{ agebd_env_suffix_upper }}:SPEC-FREQ-qX;AGEBD-TUNEBUMP{{ agebd_env_suffix_upper }}:SPEC-X</string>
</property>
<property name="color_1">
<color>
@@ -809,7 +809,7 @@ caLabel[statusTip=&quot;Operation&quot;]{
<string notr="true">Vertical TbT data</string>
</property>
<property name="channels_1" stdset="0">
<string>;AGEBD-TUNEBUMP$(AGEBD_ENV_SUFFIX):SIGN-Y</string>
<string>;AGEBD-TUNEBUMP{{ agebd_env_suffix_upper }}:SIGN-Y</string>
</property>
<property name="color_1">
<color>
@@ -857,7 +857,7 @@ caLabel[statusTip=&quot;Operation&quot;]{
<string notr="true">Longitudinal Stage 1 Data</string>
</property>
<property name="channels_1" stdset="0">
<string>;AGEBD-TUNEBUMP$(AGEBD_ENV_SUFFIX):SIGN-Z</string>
<string>;AGEBD-TUNEBUMP{{ agebd_env_suffix_upper }}:SIGN-Z</string>
</property>
<property name="color_1">
<color>
@@ -905,7 +905,7 @@ caLabel[statusTip=&quot;Operation&quot;]{
<string notr="true">Horizontal TbT data</string>
</property>
<property name="channels_1" stdset="0">
<string>;AGEBD-TUNEBUMP$(AGEBD_ENV_SUFFIX):SIGN-X</string>
<string>;AGEBD-TUNEBUMP{{ agebd_env_suffix_upper }}:SIGN-X</string>
</property>
<property name="color_1">
<color>
@@ -1329,7 +1329,7 @@ caLabel[statusTip=&quot;Operation&quot;]{
<number>2</number>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TUNEBUMP$(AGEBD_ENV_SUFFIX):QX-ULIM</string>
<string notr="true">AGEBD-TUNEBUMP{{ agebd_env_suffix_upper }}:QX-ULIM</string>
</property>
<property name="precisionMode">
<enum>caSpinbox::User</enum>
@@ -1360,7 +1360,7 @@ caLabel[statusTip=&quot;Operation&quot;]{
<number>2</number>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TUNEBUMP$(AGEBD_ENV_SUFFIX):QX-LLIM</string>
<string notr="true">AGEBD-TUNEBUMP{{ agebd_env_suffix_upper }}:QX-LLIM</string>
</property>
<property name="precisionMode">
<enum>caSpinbox::User</enum>
@@ -1391,7 +1391,7 @@ caLabel[statusTip=&quot;Operation&quot;]{
<number>2</number>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TUNEBUMP$(AGEBD_ENV_SUFFIX):QY-ULIM</string>
<string notr="true">AGEBD-TUNEBUMP{{ agebd_env_suffix_upper }}:QY-ULIM</string>
</property>
<property name="precisionMode">
<enum>caSpinbox::User</enum>
@@ -1459,7 +1459,7 @@ caLabel[statusTip=&quot;Operation&quot;]{
<number>2</number>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TUNEBUMP$(AGEBD_ENV_SUFFIX):QY-LLIM</string>
<string notr="true">AGEBD-TUNEBUMP{{ agebd_env_suffix_upper }}:QY-LLIM</string>
</property>
<property name="precisionMode">
<enum>caSpinbox::User</enum>
@@ -1758,7 +1758,7 @@ caLabel[statusTip=&quot;Operation&quot;]{
<set>Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TUNEBUMP$(AGEBD_ENV_SUFFIX):SIGN-Y.INP</string>
<string notr="true">AGEBD-TUNEBUMP{{ agebd_env_suffix_upper }}:SIGN-Y.INP</string>
</property>
<property name="foreground">
<color>
@@ -1818,7 +1818,7 @@ caLabel[statusTip=&quot;Operation&quot;]{
<set>Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TUNEBUMP$(AGEBD_ENV_SUFFIX):SIGN-X.INP</string>
<string notr="true">AGEBD-TUNEBUMP{{ agebd_env_suffix_upper }}:SIGN-X.INP</string>
</property>
<property name="foreground">
<color>
@@ -1878,7 +1878,7 @@ caLabel[statusTip=&quot;Operation&quot;]{
<set>Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TUNEBUMP$(AGEBD_ENV_SUFFIX):SIGN-Z.INP</string>
<string notr="true">AGEBD-TUNEBUMP{{ agebd_env_suffix_upper }}:SIGN-Z.INP</string>
</property>
<property name="foreground">
<color>
@@ -2021,7 +2021,7 @@ caLabel[statusTip=&quot;Operation&quot;]{
<number>3</number>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TUNEFBX$(AGEBD_ENV_SUFFIX):CONTROL-KP</string>
<string notr="true">AGEBD-TUNEFBX{{ agebd_env_suffix_upper }}:CONTROL-KP</string>
</property>
<property name="precisionMode">
<enum>caSpinbox::User</enum>
@@ -2193,7 +2193,7 @@ caLabel[statusTip=&quot;Operation&quot;]{
<number>3</number>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TUNEFBX$(AGEBD_ENV_SUFFIX):CONTROL-KI</string>
<string notr="true">AGEBD-TUNEFBX{{ agebd_env_suffix_upper }}:CONTROL-KI</string>
</property>
<property name="precisionMode">
<enum>caSpinbox::User</enum>
@@ -2224,7 +2224,7 @@ caLabel[statusTip=&quot;Operation&quot;]{
<number>3</number>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TUNEFBX$(AGEBD_ENV_SUFFIX):CONTROL-KD</string>
<string notr="true">AGEBD-TUNEFBX{{ agebd_env_suffix_upper }}:CONTROL-KD</string>
</property>
<property name="precisionMode">
<enum>caSpinbox::User</enum>
@@ -2255,7 +2255,7 @@ caLabel[statusTip=&quot;Operation&quot;]{
<number>2</number>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TUNEFBX$(AGEBD_ENV_SUFFIX):CONTROL-QX</string>
<string notr="true">AGEBD-TUNEFBX{{ agebd_env_suffix_upper }}:CONTROL-QX</string>
</property>
<property name="precisionMode">
<enum>caSpinbox::User</enum>
@@ -2323,7 +2323,7 @@ caLabel[statusTip=&quot;Operation&quot;]{
<number>2</number>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TUNEFBX$(AGEBD_ENV_SUFFIX):CONTROL-QXMAX</string>
<string notr="true">AGEBD-TUNEFBX{{ agebd_env_suffix_upper }}:CONTROL-QXMAX</string>
</property>
<property name="precisionMode">
<enum>caSpinbox::User</enum>
@@ -2391,7 +2391,7 @@ caLabel[statusTip=&quot;Operation&quot;]{
<number>2</number>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TUNEFBX$(AGEBD_ENV_SUFFIX):CONTROL-QXMIN</string>
<string notr="true">AGEBD-TUNEFBX{{ agebd_env_suffix_upper }}:CONTROL-QXMIN</string>
</property>
<property name="precisionMode">
<enum>caSpinbox::User</enum>
@@ -2496,7 +2496,7 @@ caLabel[statusTip=&quot;Operation&quot;]{
<number>1</number>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TUNEFBX$(AGEBD_ENV_SUFFIX):CONTROL-MIN-CURR</string>
<string notr="true">AGEBD-TUNEFBX{{ agebd_env_suffix_upper }}:CONTROL-MIN-CURR</string>
</property>
<property name="precisionMode">
<enum>caSpinbox::User</enum>
@@ -2567,7 +2567,7 @@ caLabel[statusTip=&quot;Operation&quot;]{
<bool>true</bool>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TUNEFBX$(AGEBD_ENV_SUFFIX):CONTROL-QX-OKRNG</string>
<string notr="true">AGEBD-TUNEFBX{{ agebd_env_suffix_upper }}:CONTROL-QX-OKRNG</string>
</property>
<property name="precisionMode">
<enum>caSpinbox::User</enum>
@@ -2598,7 +2598,7 @@ caLabel[statusTip=&quot;Operation&quot;]{
<set>Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TUNEFBX$(AGEBD_ENV_SUFFIX):DELTAQ</string>
<string notr="true">AGEBD-TUNEFBX{{ agebd_env_suffix_upper }}:DELTAQ</string>
</property>
<property name="foreground">
<color>
@@ -2705,7 +2705,7 @@ caLabel[statusTip=&quot;Operation&quot;]{
<string notr="true"/>
</property>
<property name="channels" stdset="0">
<string>AGEBD-TUNEFBX$(AGEBD_ENV_SUFFIX):QSTEPS</string>
<string>AGEBD-TUNEFBX{{ agebd_env_suffix_upper }}:QSTEPS</string>
</property>
<property name="units">
<enum>caStripPlot::Second</enum>
@@ -2866,7 +2866,7 @@ caLabel[statusTip=&quot;Operation&quot;]{
</rect>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-ALH$(AGEBD_ENV_SUFFIX):TUNEFBX-ONOFF</string>
<string notr="true">AGEBD-ALH{{ agebd_env_suffix_upper }}:TUNEFBX-ONOFF</string>
</property>
<property name="stackingMode" stdset="0">
<enum>caChoice::Column</enum>
@@ -2885,7 +2885,7 @@ caLabel[statusTip=&quot;Operation&quot;]{
</rect>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TUNEFBX$(AGEBD_ENV_SUFFIX):CHECK1</string>
<string notr="true">AGEBD-TUNEFBX{{ agebd_env_suffix_upper }}:CHECK1</string>
</property>
<property name="falseColor">
<color>
@@ -2911,7 +2911,7 @@ caLabel[statusTip=&quot;Operation&quot;]{
</rect>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TUNEFBX$(AGEBD_ENV_SUFFIX):CHECK2</string>
<string notr="true">AGEBD-TUNEFBX{{ agebd_env_suffix_upper }}:CHECK2</string>
</property>
<property name="falseColor">
<color>
@@ -2974,7 +2974,7 @@ caLabel[statusTip=&quot;Operation&quot;]{
</rect>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TUNEFBX$(AGEBD_ENV_SUFFIX):CHECK5</string>
<string notr="true">AGEBD-TUNEFBX{{ agebd_env_suffix_upper }}:CHECK5</string>
</property>
<property name="falseColor">
<color>
@@ -3000,7 +3000,7 @@ caLabel[statusTip=&quot;Operation&quot;]{
</rect>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TUNEFBX$(AGEBD_ENV_SUFFIX):CHECK8</string>
<string notr="true">AGEBD-TUNEFBX{{ agebd_env_suffix_upper }}:CHECK8</string>
</property>
<property name="falseColor">
<color>
@@ -3063,7 +3063,7 @@ caLabel[statusTip=&quot;Operation&quot;]{
</rect>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TUNEFBX$(AGEBD_ENV_SUFFIX):CHECK3</string>
<string notr="true">AGEBD-TUNEFBX{{ agebd_env_suffix_upper }}:CHECK3</string>
</property>
<property name="falseColor">
<color>
@@ -3126,7 +3126,7 @@ caLabel[statusTip=&quot;Operation&quot;]{
</rect>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TUNEFBX$(AGEBD_ENV_SUFFIX):CHECK6</string>
<string notr="true">AGEBD-TUNEFBX{{ agebd_env_suffix_upper }}:CHECK6</string>
</property>
<property name="falseColor">
<color>
@@ -3152,7 +3152,7 @@ caLabel[statusTip=&quot;Operation&quot;]{
</rect>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TUNEFBX$(AGEBD_ENV_SUFFIX):CHECK4</string>
<string notr="true">AGEBD-TUNEFBX{{ agebd_env_suffix_upper }}:CHECK4</string>
</property>
<property name="falseColor">
<color>
@@ -3215,7 +3215,7 @@ caLabel[statusTip=&quot;Operation&quot;]{
</rect>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TUNEFBX$(AGEBD_ENV_SUFFIX):CHECK7</string>
<string notr="true">AGEBD-TUNEFBX{{ agebd_env_suffix_upper }}:CHECK7</string>
</property>
<property name="falseColor">
<color>
@@ -3321,7 +3321,7 @@ caLabel[statusTip=&quot;Operation&quot;]{
<bool>true</bool>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TUNEFBX$(AGEBD_ENV_SUFFIX):CHECKALL</string>
<string notr="true">AGEBD-TUNEFBX{{ agebd_env_suffix_upper }}:CHECKALL</string>
</property>
<property name="falseColor">
<color>
@@ -3501,7 +3501,7 @@ caLabel[statusTip=&quot;Operation&quot;]{
<number>3</number>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TUNEFBX$(AGEBD_ENV_SUFFIX):DELTAQ-ULIM</string>
<string notr="true">AGEBD-TUNEFBX{{ agebd_env_suffix_upper }}:DELTAQ-ULIM</string>
</property>
<property name="precisionMode">
<enum>caSpinbox::User</enum>
@@ -3532,7 +3532,7 @@ caLabel[statusTip=&quot;Operation&quot;]{
<number>3</number>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TUNEFBX$(AGEBD_ENV_SUFFIX):DELTAQ-LLIM</string>
<string notr="true">AGEBD-TUNEFBX{{ agebd_env_suffix_upper }}:DELTAQ-LLIM</string>
</property>
<property name="precisionMode">
<enum>caSpinbox::User</enum>
@@ -3635,7 +3635,7 @@ caLabel[statusTip=&quot;Operation&quot;]{
<number>2</number>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TUNEFBY$(AGEBD_ENV_SUFFIX):CONTROL-QY</string>
<string notr="true">AGEBD-TUNEFBY{{ agebd_env_suffix_upper }}:CONTROL-QY</string>
</property>
<property name="precisionMode">
<enum>caSpinbox::User</enum>
@@ -3706,7 +3706,7 @@ caLabel[statusTip=&quot;Operation&quot;]{
<bool>true</bool>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TUNEFBY$(AGEBD_ENV_SUFFIX):CONTROL-QY-OKRNG</string>
<string notr="true">AGEBD-TUNEFBY{{ agebd_env_suffix_upper }}:CONTROL-QY-OKRNG</string>
</property>
<property name="precisionMode">
<enum>caSpinbox::User</enum>
@@ -3774,7 +3774,7 @@ caLabel[statusTip=&quot;Operation&quot;]{
<number>3</number>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TUNEFBY$(AGEBD_ENV_SUFFIX):CONTROL-KI</string>
<string notr="true">AGEBD-TUNEFBY{{ agebd_env_suffix_upper }}:CONTROL-KI</string>
</property>
<property name="precisionMode">
<enum>caSpinbox::User</enum>
@@ -3873,7 +3873,7 @@ caLabel[statusTip=&quot;Operation&quot;]{
</rect>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TUNEFBY$(AGEBD_ENV_SUFFIX):CHECK4</string>
<string notr="true">AGEBD-TUNEFBY{{ agebd_env_suffix_upper }}:CHECK4</string>
</property>
<property name="falseColor">
<color>
@@ -3905,7 +3905,7 @@ caLabel[statusTip=&quot;Operation&quot;]{
<number>3</number>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TUNEFBY$(AGEBD_ENV_SUFFIX):CONTROL-KP</string>
<string notr="true">AGEBD-TUNEFBY{{ agebd_env_suffix_upper }}:CONTROL-KP</string>
</property>
<property name="precisionMode">
<enum>caSpinbox::User</enum>
@@ -3936,7 +3936,7 @@ caLabel[statusTip=&quot;Operation&quot;]{
<number>2</number>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TUNEFBY$(AGEBD_ENV_SUFFIX):CONTROL-QYMAX</string>
<string notr="true">AGEBD-TUNEFBY{{ agebd_env_suffix_upper }}:CONTROL-QYMAX</string>
</property>
<property name="precisionMode">
<enum>caSpinbox::User</enum>
@@ -4078,7 +4078,7 @@ caLabel[statusTip=&quot;Operation&quot;]{
<number>3</number>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TUNEFBY$(AGEBD_ENV_SUFFIX):CONTROL-KD</string>
<string notr="true">AGEBD-TUNEFBY{{ agebd_env_suffix_upper }}:CONTROL-KD</string>
</property>
<property name="precisionMode">
<enum>caSpinbox::User</enum>
@@ -4103,7 +4103,7 @@ caLabel[statusTip=&quot;Operation&quot;]{
</rect>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TUNEFBY$(AGEBD_ENV_SUFFIX):CHECK3</string>
<string notr="true">AGEBD-TUNEFBY{{ agebd_env_suffix_upper }}:CHECK3</string>
</property>
<property name="falseColor">
<color>
@@ -4283,7 +4283,7 @@ caLabel[statusTip=&quot;Operation&quot;]{
<set>Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TUNEFBY$(AGEBD_ENV_SUFFIX):DELTAQ</string>
<string notr="true">AGEBD-TUNEFBY{{ agebd_env_suffix_upper }}:DELTAQ</string>
</property>
<property name="foreground">
<color>
@@ -4386,7 +4386,7 @@ caLabel[statusTip=&quot;Operation&quot;]{
<bool>true</bool>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TUNEFBY$(AGEBD_ENV_SUFFIX):CHECKALL</string>
<string notr="true">AGEBD-TUNEFBY{{ agebd_env_suffix_upper }}:CHECKALL</string>
</property>
<property name="falseColor">
<color>
@@ -4412,7 +4412,7 @@ caLabel[statusTip=&quot;Operation&quot;]{
</rect>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TUNEFBY$(AGEBD_ENV_SUFFIX):CHECK5</string>
<string notr="true">AGEBD-TUNEFBY{{ agebd_env_suffix_upper }}:CHECK5</string>
</property>
<property name="falseColor">
<color>
@@ -4438,7 +4438,7 @@ caLabel[statusTip=&quot;Operation&quot;]{
</rect>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TUNEFBY$(AGEBD_ENV_SUFFIX):CHECK2</string>
<string notr="true">AGEBD-TUNEFBY{{ agebd_env_suffix_upper }}:CHECK2</string>
</property>
<property name="falseColor">
<color>
@@ -4507,7 +4507,7 @@ caLabel[statusTip=&quot;Operation&quot;]{
<number>2</number>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TUNEFBY$(AGEBD_ENV_SUFFIX):CONTROL-QYMIN</string>
<string notr="true">AGEBD-TUNEFBY{{ agebd_env_suffix_upper }}:CONTROL-QYMIN</string>
</property>
<property name="precisionMode">
<enum>caSpinbox::User</enum>
@@ -4532,7 +4532,7 @@ caLabel[statusTip=&quot;Operation&quot;]{
</rect>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TUNEFBY$(AGEBD_ENV_SUFFIX):CHECK1</string>
<string notr="true">AGEBD-TUNEFBY{{ agebd_env_suffix_upper }}:CHECK1</string>
</property>
<property name="falseColor">
<color>
@@ -4595,7 +4595,7 @@ caLabel[statusTip=&quot;Operation&quot;]{
</rect>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-ALH$(AGEBD_ENV_SUFFIX):TUNEFBY-ONOFF</string>
<string notr="true">AGEBD-ALH{{ agebd_env_suffix_upper }}:TUNEFBY-ONOFF</string>
</property>
<property name="stackingMode" stdset="0">
<enum>caChoice::Column</enum>
@@ -4614,7 +4614,7 @@ caLabel[statusTip=&quot;Operation&quot;]{
</rect>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TUNEFBY$(AGEBD_ENV_SUFFIX):CHECK6</string>
<string notr="true">AGEBD-TUNEFBY{{ agebd_env_suffix_upper }}:CHECK6</string>
</property>
<property name="falseColor">
<color>
@@ -4656,7 +4656,7 @@ caLabel[statusTip=&quot;Operation&quot;]{
<string notr="true"/>
</property>
<property name="channels" stdset="0">
<string>AGEBD-TUNEFBY$(AGEBD_ENV_SUFFIX):QSTEPS</string>
<string>AGEBD-TUNEFBY{{ agebd_env_suffix_upper }}:QSTEPS</string>
</property>
<property name="units">
<enum>caStripPlot::Second</enum>
@@ -4897,7 +4897,7 @@ caLabel[statusTip=&quot;Operation&quot;]{
<number>1</number>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TUNEFBY$(AGEBD_ENV_SUFFIX):CONTROL-MIN-CURR</string>
<string notr="true">AGEBD-TUNEFBY{{ agebd_env_suffix_upper }}:CONTROL-MIN-CURR</string>
</property>
<property name="precisionMode">
<enum>caSpinbox::User</enum>
@@ -4959,7 +4959,7 @@ caLabel[statusTip=&quot;Operation&quot;]{
</rect>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TUNEFBY$(AGEBD_ENV_SUFFIX):CHECK7</string>
<string notr="true">AGEBD-TUNEFBY{{ agebd_env_suffix_upper }}:CHECK7</string>
</property>
<property name="falseColor">
<color>
@@ -4985,7 +4985,7 @@ caLabel[statusTip=&quot;Operation&quot;]{
</rect>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TUNEFBY$(AGEBD_ENV_SUFFIX):CHECK8</string>
<string notr="true">AGEBD-TUNEFBY{{ agebd_env_suffix_upper }}:CHECK8</string>
</property>
<property name="falseColor">
<color>
@@ -5091,7 +5091,7 @@ caLabel[statusTip=&quot;Operation&quot;]{
<number>3</number>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TUNEFBY$(AGEBD_ENV_SUFFIX):DELTAQ-ULIM</string>
<string notr="true">AGEBD-TUNEFBY{{ agebd_env_suffix_upper }}:DELTAQ-ULIM</string>
</property>
<property name="precisionMode">
<enum>caSpinbox::User</enum>
@@ -5122,7 +5122,7 @@ caLabel[statusTip=&quot;Operation&quot;]{
<number>3</number>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TUNEFBY$(AGEBD_ENV_SUFFIX):DELTAQ-LLIM</string>
<string notr="true">AGEBD-TUNEFBY{{ agebd_env_suffix_upper }}:DELTAQ-LLIM</string>
</property>
<property name="precisionMode">
<enum>caSpinbox::User</enum>
@@ -5189,7 +5189,7 @@ caLabel[statusTip=&quot;Operation&quot;]{
</rect>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TUNEBUMP$(AGEBD_ENV_SUFFIX):WRITE2MAG</string>
<string notr="true">AGEBD-TUNEBUMP{{ agebd_env_suffix_upper }}:WRITE2MAG</string>
</property>
</widget>
<widget class="caLabel" name="calabel_36">
@@ -5241,7 +5241,7 @@ caLabel[statusTip=&quot;Operation&quot;]{
<enum>Qt::ScrollBarAsNeeded</enum>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TUNEBUMP$(AGEBD_ENV_SUFFIX):CHANGELOG</string>
<string notr="true">AGEBD-TUNEBUMP{{ agebd_env_suffix_upper }}:CHANGELOG</string>
</property>
<property name="fontScaleMode" stdset="0">
<enum>caMultiLineString::None</enum>
@@ -5277,7 +5277,7 @@ caLabel[statusTip=&quot;Operation&quot;]{
<set>Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TUNEBUMP$(AGEBD_ENV_SUFFIX):QX</string>
<string notr="true">AGEBD-TUNEBUMP{{ agebd_env_suffix_upper }}:QX</string>
</property>
<property name="foreground">
<color>
@@ -5359,7 +5359,7 @@ caLabel[statusTip=&quot;Operation&quot;]{
<set>Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TUNEBUMP$(AGEBD_ENV_SUFFIX):QY</string>
<string notr="true">AGEBD-TUNEBUMP{{ agebd_env_suffix_upper }}:QY</string>
</property>
<property name="foreground">
<color>
@@ -5472,7 +5472,7 @@ caLabel[statusTip=&quot;Operation&quot;]{
<set>Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TUNEBUMP$(AGEBD_ENV_SUFFIX):QX-SB1</string>
<string notr="true">AGEBD-TUNEBUMP{{ agebd_env_suffix_upper }}:QX-SB1</string>
</property>
<property name="foreground">
<color>
@@ -5532,7 +5532,7 @@ caLabel[statusTip=&quot;Operation&quot;]{
<set>Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TUNEBUMP$(AGEBD_ENV_SUFFIX):QX-SB1-DIFF</string>
<string notr="true">AGEBD-TUNEBUMP{{ agebd_env_suffix_upper }}:QX-SB1-DIFF</string>
</property>
<property name="foreground">
<color>
@@ -5629,7 +5629,7 @@ caLabel[statusTip=&quot;Operation&quot;]{
<set>Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TUNEBUMP$(AGEBD_ENV_SUFFIX):QX-SB2</string>
<string notr="true">AGEBD-TUNEBUMP{{ agebd_env_suffix_upper }}:QX-SB2</string>
</property>
<property name="foreground">
<color>
@@ -5689,7 +5689,7 @@ caLabel[statusTip=&quot;Operation&quot;]{
<set>Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TUNEBUMP$(AGEBD_ENV_SUFFIX):QX-SB2-DIFF</string>
<string notr="true">AGEBD-TUNEBUMP{{ agebd_env_suffix_upper }}:QX-SB2-DIFF</string>
</property>
<property name="foreground">
<color>
@@ -5860,7 +5860,7 @@ caLabel[statusTip=&quot;Operation&quot;]{
<set>Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TUNEBUMP$(AGEBD_ENV_SUFFIX):QY-SB1</string>
<string notr="true">AGEBD-TUNEBUMP{{ agebd_env_suffix_upper }}:QY-SB1</string>
</property>
<property name="foreground">
<color>
@@ -6031,7 +6031,7 @@ caLabel[statusTip=&quot;Operation&quot;]{
<set>Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TUNEBUMP$(AGEBD_ENV_SUFFIX):QY-SB2</string>
<string notr="true">AGEBD-TUNEBUMP{{ agebd_env_suffix_upper }}:QY-SB2</string>
</property>
<property name="foreground">
<color>
@@ -6091,7 +6091,7 @@ caLabel[statusTip=&quot;Operation&quot;]{
<set>Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TUNEBUMP$(AGEBD_ENV_SUFFIX):QY-SB1-DIFF</string>
<string notr="true">AGEBD-TUNEBUMP{{ agebd_env_suffix_upper }}:QY-SB1-DIFF</string>
</property>
<property name="foreground">
<color>
@@ -6151,7 +6151,7 @@ caLabel[statusTip=&quot;Operation&quot;]{
<set>Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TUNEBUMP$(AGEBD_ENV_SUFFIX):QY-SB2-DIFF</string>
<string notr="true">AGEBD-TUNEBUMP{{ agebd_env_suffix_upper }}:QY-SB2-DIFF</string>
</property>
<property name="foreground">
<color>
@@ -6223,7 +6223,7 @@ caLabel[statusTip=&quot;Operation&quot;]{
<set>Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TUNEBUMP$(AGEBD_ENV_SUFFIX):QX-FREQ</string>
<string notr="true">AGEBD-TUNEBUMP{{ agebd_env_suffix_upper }}:QX-FREQ</string>
</property>
<property name="foreground">
<color>
@@ -6311,7 +6311,7 @@ caLabel[statusTip=&quot;Operation&quot;]{
<set>Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TUNEBUMP$(AGEBD_ENV_SUFFIX):QY-FREQ</string>
<string notr="true">AGEBD-TUNEBUMP{{ agebd_env_suffix_upper }}:QY-FREQ</string>
</property>
<property name="foreground">
<color>
@@ -6423,7 +6423,7 @@ caLabel[statusTip=&quot;Operation&quot;]{
<set>Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TUNEBUMP$(AGEBD_ENV_SUFFIX):QZ</string>
<string notr="true">AGEBD-TUNEBUMP{{ agebd_env_suffix_upper }}:QZ</string>
</property>
<property name="foreground">
<color>
@@ -6508,7 +6508,7 @@ caLabel[statusTip=&quot;Operation&quot;]{
<set>Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-TUNEBUMP$(AGEBD_ENV_SUFFIX):QZ-FREQ</string>
<string notr="true">AGEBD-TUNEBUMP{{ agebd_env_suffix_upper }}:QZ-FREQ</string>
</property>
<property name="foreground">
<color>
@@ -6603,7 +6603,7 @@ caLabel[statusTip=&quot;Operation&quot;]{
<string notr="true">A</string>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-ALH$(AGEBD_ENV_SUFFIX):TUNEFBX-ONOFF</string>
<string notr="true">AGEBD-ALH{{ agebd_env_suffix_upper }}:TUNEFBX-ONOFF</string>
</property>
</widget>
<widget class="caLabel" name="calabel_2">
@@ -6641,7 +6641,7 @@ caLabel[statusTip=&quot;Operation&quot;]{
<string notr="true">A</string>
</property>
<property name="channel" stdset="0">
<string notr="true">AGEBD-ALH$(AGEBD_ENV_SUFFIX):TUNEFBY-ONOFF</string>
<string notr="true">AGEBD-ALH{{ agebd_env_suffix_upper }}:TUNEFBY-ONOFF</string>
</property>
</widget>
<zorder>calabel_3</zorder>
@@ -1,4 +1,4 @@
file DBPM3CURR.template {
pattern { DEVICE }
{ AGEBD-DBPM3CURR{{ agebd_env_suffix }} }
{ AGEBD-DBPM3CURR{{ agebd_env_suffix_upper }} }
}
@@ -1,6 +1,6 @@
cpu_architecture: x86_64
epics_version: 7.0.8
ioc_host: sls-vserv-bd-01{{ agebd_env_suffix }}
ioc_host: sls-vserv-bd-01{{ agebd_env_suffix_lower }}
ioc_port: {{ ioc_port }}
os: RHEL8
os_id: rhel
@@ -1,31 +1,31 @@
file INJECTIONGUARD_individual.template {
pattern { DEVICE }
{ AGEBD-INJECTIONGUARD{{ agebd_env_suffix }} }
{ AGEBD-INJECTIONGUARD{{ agebd_env_suffix_upper }} }
}
file INJECTIONGUARD_automated.template {
pattern { DEVICE NR Latch Description }
{ AGEBD-INJECTIONGUARD{{ agebd_env_suffix }} 01 1 "Beam Dump Kicker"}
{ AGEBD-INJECTIONGUARD{{ agebd_env_suffix }} 02 1 "Dump Valve"}
{ AGEBD-INJECTIONGUARD{{ agebd_env_suffix }} 03 1 "MIS"}
{ AGEBD-INJECTIONGUARD{{ agebd_env_suffix }} 04 1 "VCS"}
{ AGEBD-INJECTIONGUARD{{ agebd_env_suffix }} 05 1 "Linac KV/BB/BY"}
{ AGEBD-INJECTIONGUARD{{ agebd_env_suffix }} 06 1 "RF Linac"}
{ AGEBD-INJECTIONGUARD{{ agebd_env_suffix }} 07 1 "RF Booster"}
{ AGEBD-INJECTIONGUARD{{ agebd_env_suffix }} 08 1 "RF Ring"}
{ AGEBD-INJECTIONGUARD{{ agebd_env_suffix }} 09 1 "Magnets Pulsed"}
{ AGEBD-INJECTIONGUARD{{ agebd_env_suffix }} 10 1 "Magnets Booster"}
{ AGEBD-INJECTIONGUARD{{ agebd_env_suffix }} 11 1 "Magnets Corrector"}
{ AGEBD-INJECTIONGUARD{{ agebd_env_suffix }} 12 1 "Magnets Ring"}
{ AGEBD-INJECTIONGUARD{{ agebd_env_suffix }} 13 1 "Current Limit"}
{ AGEBD-INJECTIONGUARD{{ agebd_env_suffix }} 14 1 "IDs Ready"}
{ AGEBD-INJECTIONGUARD{{ agebd_env_suffix }} 15 1 "Single Bunch Charge"}
{ AGEBD-INJECTIONGUARD{{ agebd_env_suffix }} 16 1 "Injection Quality"}
{ AGEBD-INJECTIONGUARD{{ agebd_env_suffix }} 17 1 "Dump Quality"}
{ AGEBD-INJECTIONGUARD{{ agebd_env_suffix }} 18 1 "Lifetime"}
{ AGEBD-INJECTIONGUARD{{ agebd_env_suffix }} 19 1 "Tune"}
{ AGEBD-INJECTIONGUARD{{ agebd_env_suffix }} 20 0 "Pingers"}
{ AGEBD-INJECTIONGUARD{{ agebd_env_suffix }} 21 1 "Vacuum Pressure"}
{ AGEBD-INJECTIONGUARD{{ agebd_env_suffix }} 22 1 "Orbit Deviation"}
{ AGEBD-INJECTIONGUARD{{ agebd_env_suffix }} 23 1 "Beam Dump Controller"}
{ AGEBD-INJECTIONGUARD{{ agebd_env_suffix_upper }} 01 1 "Beam Dump Kicker"}
{ AGEBD-INJECTIONGUARD{{ agebd_env_suffix_upper }} 02 1 "Dump Valve"}
{ AGEBD-INJECTIONGUARD{{ agebd_env_suffix_upper }} 03 1 "MIS"}
{ AGEBD-INJECTIONGUARD{{ agebd_env_suffix_upper }} 04 1 "VCS"}
{ AGEBD-INJECTIONGUARD{{ agebd_env_suffix_upper }} 05 1 "Linac KV/BB/BY"}
{ AGEBD-INJECTIONGUARD{{ agebd_env_suffix_upper }} 06 1 "RF Linac"}
{ AGEBD-INJECTIONGUARD{{ agebd_env_suffix_upper }} 07 1 "RF Booster"}
{ AGEBD-INJECTIONGUARD{{ agebd_env_suffix_upper }} 08 1 "RF Ring"}
{ AGEBD-INJECTIONGUARD{{ agebd_env_suffix_upper }} 09 1 "Magnets Pulsed"}
{ AGEBD-INJECTIONGUARD{{ agebd_env_suffix_upper }} 10 1 "Magnets Booster"}
{ AGEBD-INJECTIONGUARD{{ agebd_env_suffix_upper }} 11 1 "Magnets Corrector"}
{ AGEBD-INJECTIONGUARD{{ agebd_env_suffix_upper }} 12 1 "Magnets Ring"}
{ AGEBD-INJECTIONGUARD{{ agebd_env_suffix_upper }} 13 1 "Current Limit"}
{ AGEBD-INJECTIONGUARD{{ agebd_env_suffix_upper }} 14 1 "IDs Ready"}
{ AGEBD-INJECTIONGUARD{{ agebd_env_suffix_upper }} 15 1 "Single Bunch Charge"}
{ AGEBD-INJECTIONGUARD{{ agebd_env_suffix_upper }} 16 1 "Injection Quality"}
{ AGEBD-INJECTIONGUARD{{ agebd_env_suffix_upper }} 17 1 "Dump Quality"}
{ AGEBD-INJECTIONGUARD{{ agebd_env_suffix_upper }} 18 1 "Lifetime"}
{ AGEBD-INJECTIONGUARD{{ agebd_env_suffix_upper }} 19 1 "Tune"}
{ AGEBD-INJECTIONGUARD{{ agebd_env_suffix_upper }} 20 0 "Pingers"}
{ AGEBD-INJECTIONGUARD{{ agebd_env_suffix_upper }} 21 1 "Vacuum Pressure"}
{ AGEBD-INJECTIONGUARD{{ agebd_env_suffix_upper }} 22 1 "Orbit Deviation"}
{ AGEBD-INJECTIONGUARD{{ agebd_env_suffix_upper }} 23 1 "Beam Dump Controller"}
}
@@ -1,6 +1,6 @@
cpu_architecture: x86_64
epics_version: 7.0.8
ioc_host: sls-vserv-bd-01{{ agebd_env_suffix }}
ioc_host: sls-vserv-bd-01{{ agebd_env_suffix_lower }}
ioc_port: {{ ioc_port }}
os: RHEL8
os_id: rhel
@@ -1,32 +1,32 @@
file MASTER.template {
pattern { SUFFIX SERVICE STARTON AUTOOFF }
{ "{{ agebd_env_suffix }}", "MASTER" , "0", "30" }
{ "{{ agebd_env_suffix }}", "NTURNS" , "0", "0" }
{ "{{ agebd_env_suffix }}", "DBPM3CURR" , "1", "0" }
{ "{{ agebd_env_suffix }}", "TAUBPM" , "1", "0" }
{ "{{ agebd_env_suffix }}", "TAUPCT" , "1", "0" }
{ "{{ agebd_env_suffix }}", "SCRUBBING" , "1", "0" }
{ "{{ agebd_env_suffix }}", "TIMING" , "0", "0" }
{ "{{ agebd_env_suffix }}", "TUNE" , "1", "0" }
{ "{{ agebd_env_suffix }}", "INJECTIONGUARD" , "1", "0" }
{ "{{ agebd_env_suffix }}", "POSTMORTEMLOG" , "1", "0" }
{ "{{ agebd_env_suffix }}", "TUNEBUMP" , "1", "0" }
{ "{{ agebd_env_suffix }}", "PLOTS" , "0", "0" }
{ "{{ agebd_env_suffix }}", "ORBITBUMP" , "0", "0" }
{ "{{ agebd_env_suffix }}", "TOPUPTOOL" , "0", "0" }
{ "{{ agebd_env_suffix }}", "SHIFTTOOL" , "1", "0" }
{ "{{ agebd_env_suffix }}", "BEAMTRANSFERCHECKS" , "0", "0" }
{ "{{ agebd_env_suffix }}", "TUNEFBX" , "0", "0" }
{ "{{ agebd_env_suffix }}", "TUNEFBY" , "0", "0" }
{ "{{ agebd_env_suffix }}", "OPTICSFF-X02S" , "0", "0" } # I-TOMCAT
{ "{{ agebd_env_suffix }}", "OPTICSFF-X03M" , "0", "0" } # ADRESS
{ "{{ agebd_env_suffix }}", "OPTICSFF-X04S" , "0", "0" } # ADDAMS
{ "{{ agebd_env_suffix }}", "OPTICSFF-X05L" , "0", "0" } # QUEST
{ "{{ agebd_env_suffix }}", "OPTICSFF-X06S" , "0", "0" } # PXI
{ "{{ agebd_env_suffix }}", "OPTICSFF-X07M" , "0", "0" } # PHOENIX/XTREME
{ "{{ agebd_env_suffix }}", "OPTICSFF-X08S" , "0", "0" } # MicroXAS
{ "{{ agebd_env_suffix }}", "OPTICSFF-X09L" , "0", "0" } # OPERA
{ "{{ agebd_env_suffix }}", "OPTICSFF-X10S" , "0", "0" } # PXII
{ "{{ agebd_env_suffix }}", "OPTICSFF-X11M" , "0", "0" } # SIM
{ "{{ agebd_env_suffix }}", "OPTICSFF-X12S" , "0", "0" } # cSAXS
{ "{{ agebd_env_suffix_upper }}", "MASTER" , "0", "30" }
{ "{{ agebd_env_suffix_upper }}", "NTURNS" , "0", "0" }
{ "{{ agebd_env_suffix_upper }}", "DBPM3CURR" , "1", "0" }
{ "{{ agebd_env_suffix_upper }}", "TAUBPM" , "1", "0" }
{ "{{ agebd_env_suffix_upper }}", "TAUPCT" , "1", "0" }
{ "{{ agebd_env_suffix_upper }}", "SCRUBBING" , "1", "0" }
{ "{{ agebd_env_suffix_upper }}", "TIMING" , "0", "0" }
{ "{{ agebd_env_suffix_upper }}", "TUNE" , "1", "0" }
{ "{{ agebd_env_suffix_upper }}", "INJECTIONGUARD" , "1", "0" }
{ "{{ agebd_env_suffix_upper }}", "POSTMORTEMLOG" , "1", "0" }
{ "{{ agebd_env_suffix_upper }}", "TUNEBUMP" , "1", "0" }
{ "{{ agebd_env_suffix_upper }}", "PLOTS" , "0", "0" }
{ "{{ agebd_env_suffix_upper }}", "ORBITBUMP" , "0", "0" }
{ "{{ agebd_env_suffix_upper }}", "TOPUPTOOL" , "0", "0" }
{ "{{ agebd_env_suffix_upper }}", "SHIFTTOOL" , "1", "0" }
{ "{{ agebd_env_suffix_upper }}", "BEAMTRANSFERCHECKS" , "0", "0" }
{ "{{ agebd_env_suffix_upper }}", "TUNEFBX" , "0", "0" }
{ "{{ agebd_env_suffix_upper }}", "TUNEFBY" , "0", "0" }
{ "{{ agebd_env_suffix_upper }}", "OPTICSFF-X02S" , "0", "0" } # I-TOMCAT
{ "{{ agebd_env_suffix_upper }}", "OPTICSFF-X03M" , "0", "0" } # ADRESS
{ "{{ agebd_env_suffix_upper }}", "OPTICSFF-X04S" , "0", "0" } # ADDAMS
{ "{{ agebd_env_suffix_upper }}", "OPTICSFF-X05L" , "0", "0" } # QUEST
{ "{{ agebd_env_suffix_upper }}", "OPTICSFF-X06S" , "0", "0" } # PXI
{ "{{ agebd_env_suffix_upper }}", "OPTICSFF-X07M" , "0", "0" } # PHOENIX/XTREME
{ "{{ agebd_env_suffix_upper }}", "OPTICSFF-X08S" , "0", "0" } # MicroXAS
{ "{{ agebd_env_suffix_upper }}", "OPTICSFF-X09L" , "0", "0" } # OPERA
{ "{{ agebd_env_suffix_upper }}", "OPTICSFF-X10S" , "0", "0" } # PXII
{ "{{ agebd_env_suffix_upper }}", "OPTICSFF-X11M" , "0", "0" } # SIM
{ "{{ agebd_env_suffix_upper }}", "OPTICSFF-X12S" , "0", "0" } # cSAXS
}
@@ -1,6 +1,6 @@
cpu_architecture: x86_64
epics_version: 7.0.8
ioc_host: sls-vserv-bd-01{{ agebd_env_suffix }}
ioc_host: sls-vserv-bd-01{{ agebd_env_suffix_lower }}
ioc_port: {{ ioc_port }}
os: RHEL8
os_id: rhel
@@ -1,4 +1,4 @@
file NTURNS.template {
pattern { DEVICE }
{ AGEBD-NTURNS{{ agebd_env_suffix }} }
{ AGEBD-NTURNS{{ agebd_env_suffix_upper }} }
}
@@ -1,6 +1,6 @@
cpu_architecture: x86_64
epics_version: 7.0.8
ioc_host: sls-vserv-bd-01{{ agebd_env_suffix }}
ioc_host: sls-vserv-bd-01{{ agebd_env_suffix_lower }}
ioc_port: {{ ioc_port }}
os: RHEL8
os_id: rhel
@@ -2,31 +2,31 @@ file ORBITBUMP_machine.template {
pattern
{DEVICE sourcepoint beamline LOX HIX X LOXP HIXP XP LOY HIY Y LOYP HIYP YP BPM1 C1xx C1xpx C1yy C1ypy BPM2 C2xx C2xpx C2yy C2ypy BPM3 C3xx C3xpx C3yy C3ypy BPM4 C4xx C4xpx C4yy C4ypy}
# Diagnostic dipole beamlines
{AGEBD-ORBITBUMP{{ agebd_env_suffix }} X01DD NEMO -300 300 0 -150 150 0 -300 300 0 -150 150 0 ARS01-DBPM-1080 -0.0009920 -0.0006308 -0.0001141 0.0001109 ARS01-DBPM-1460 0.9742755 -0.1432472 0.9455447 -0.0865934 ARS01-DBPM-1900 0.9277200 1.0454287 0.1445141 1.5920941 ARS01-DBPM-2410 -0.0809412 -0.0384293 0.0058229 0.1036650}
{AGEBD-ORBITBUMP{{ agebd_env_suffix }} X08DB DISCO -300 300 0 -150 150 0 -300 300 0 -150 150 0 ARS08-DBPM-1900 -0.2500389 -0.0365053 0.0001023 0.0000595 ARS08-DBPM-2410 1.2775662 -0.9246414 0.5814965 -0.4999301 ARS08-DBPM-2910 0.6885552 0.9211364 0.4873898 1.7550023 ARS08-DBPM-4220 -0.2391394 -0.0169593 0.0309046 0.1234665}
{AGEBD-ORBITBUMP{{ agebd_env_suffix }} X10DG X11HEAT -300 300 0 -150 150 0 -300 300 0 -150 150 0 ARS10-DBPM-4720 -0.0187 -0.0188 0 0 ARS10-DBPM-5250 1.6016 -1.2108 0.5496 -0.5376 ARS10-DBPM-5880 0.7075 1.0654 1.1093 1.9515 ARS11-DBPM-0850 0.0026 0.0044 0.0166 0.0304}
{AGEBD-ORBITBUMP{{ agebd_env_suffix_upper }} X01DD NEMO -300 300 0 -150 150 0 -300 300 0 -150 150 0 ARS01-DBPM-1080 -0.0009920 -0.0006308 -0.0001141 0.0001109 ARS01-DBPM-1460 0.9742755 -0.1432472 0.9455447 -0.0865934 ARS01-DBPM-1900 0.9277200 1.0454287 0.1445141 1.5920941 ARS01-DBPM-2410 -0.0809412 -0.0384293 0.0058229 0.1036650}
{AGEBD-ORBITBUMP{{ agebd_env_suffix_upper }} X08DB DISCO -300 300 0 -150 150 0 -300 300 0 -150 150 0 ARS08-DBPM-1900 -0.2500389 -0.0365053 0.0001023 0.0000595 ARS08-DBPM-2410 1.2775662 -0.9246414 0.5814965 -0.4999301 ARS08-DBPM-2910 0.6885552 0.9211364 0.4873898 1.7550023 ARS08-DBPM-4220 -0.2391394 -0.0169593 0.0309046 0.1234665}
{AGEBD-ORBITBUMP{{ agebd_env_suffix_upper }} X10DG X11HEAT -300 300 0 -150 150 0 -300 300 0 -150 150 0 ARS10-DBPM-4720 -0.0187 -0.0188 0 0 ARS10-DBPM-5250 1.6016 -1.2108 0.5496 -0.5376 ARS10-DBPM-5880 0.7075 1.0654 1.1093 1.9515 ARS11-DBPM-0850 0.0026 0.0044 0.0166 0.0304}
# User dipole beamlines
{AGEBD-ORBITBUMP{{ agebd_env_suffix }} X01DA DEBYE -300 300 0 -150 150 0 -300 300 0 -150 150 0 ARS01-DBPM-2410 -0.2169694 -0.0006291 0.0001170 0.0000325 ARS01-DBPM-2910 1.2765938 -0.9208697 0.5792863 -0.5011470 ARS01-DBPM-4220 0.6866207 0.9198858 0.4842977 1.7595080 ARS01-DBPM-4720 -0.1924402 0.0258918 0.0307458 0.1239361}
{AGEBD-ORBITBUMP{{ agebd_env_suffix }} X02DA S-TOMCAT -300 300 0 -150 150 0 -300 300 0 -150 150 0 ARS02-DBPM-2410 -0.2089937 0.0072435 0.0001169 0.0000325 ARS02-DBPM-2910 1.2772588 -0.9200089 0.5792866 -0.5011606 ARS02-DBPM-4220 0.6864959 0.9194778 0.4843170 1.7595616 ARS02-DBPM-4720 -0.1833930 0.0352770 0.0307471 0.1239392}
{AGEBD-ORBITBUMP{{ agebd_env_suffix }} X03DA PEARL -300 300 0 -150 150 0 -300 300 0 -150 150 0 ARS03-DBPM-2410 -0.2016647 0.0152728 0.0001171 0.0000326 ARS03-DBPM-2910 1.2831552 -0.9190247 0.5819894 -0.5004911 ARS03-DBPM-4220 0.6905553 0.9206615 0.4875028 1.7552635 ARS03-DBPM-4720 -0.1749243 0.0438144 0.0309089 0.1234182}
{AGEBD-ORBITBUMP{{ agebd_env_suffix }} X04DB VUV -300 300 0 -150 150 0 -300 300 0 -150 150 0 ARS04-DBPM-1900 -0.1917962 0.0214714 0.0001022 0.0000595 ARS04-DBPM-2410 1.2842031 -0.9179380 0.5814999 -0.5000284 ARS04-DBPM-2910 0.6887599 0.9211626 0.4874732 1.7553295 ARS04-DBPM-4220 -0.1710439 0.0514609 0.0309080 0.1234788}
{AGEBD-ORBITBUMP{{ agebd_env_suffix }} X05DA Optics -300 300 0 -150 150 0 -300 300 0 -150 150 0 ARS05-DBPM-2410 -0.2740176 -0.0571105 0.0001170 0.0000321 ARS05-DBPM-2910 1.2732647 -0.9287209 0.5819890 -0.5003730 ARS05-DBPM-4220 0.6913367 0.9213802 0.4873370 1.7548006 ARS05-DBPM-4720 -0.2592981 -0.0408063 0.0308988 0.1233928}
{AGEBD-ORBITBUMP{{ agebd_env_suffix }} X06DA PXIII -300 300 0 -150 150 0 -300 300 0 -150 150 0 ARS06-DBPM-2410 -0.2675305 -0.0508248 0.0001170 0.0000321 ARS06-DBPM-2910 1.2749858 -0.9266845 0.5818007 -0.5004548 ARS06-DBPM-4220 0.6916389 0.9218001 0.4871613 1.7552275 ARS06-DBPM-4720 -0.2517260 -0.0332473 0.0308895 0.1234316}
{AGEBD-ORBITBUMP{{ agebd_env_suffix }} X07DB nanoXAS -300 300 0 -150 150 0 -300 300 0 -150 150 0 ARS07-DBPM-1900 -0.2563387 -0.0425222 0.0001023 0.0000596 ARS07-DBPM-2410 1.2761628 -0.9263027 0.5814954 -0.4999177 ARS07-DBPM-2910 0.6888233 0.9216262 0.4873810 1.7549631 ARS07-DBPM-4220 -0.2469055 -0.0248794 0.0309043 0.1234651}
{AGEBD-ORBITBUMP{{ agebd_env_suffix }} X07DA PolLux -300 300 0 -150 150 0 -300 300 0 -250 250 0 ARS07-DBPM-2410 -0.2606076 -0.0450539 0.0001170 0.0000326 ARS07-DBPM-2910 1.2750718 -0.9205684 0.5819899 -0.4976199 ARS07-DBPM-4220 0.6915728 0.9246379 0.4873668 1.7572153 ARS07-DBPM-4720 -0.2433555 -0.0254434 0.0309006 0.1235450}
{AGEBD-ORBITBUMP{{ agebd_env_suffix }} X10DA SuperXAS -300 300 0 -150 150 0 -300 300 0 -150 150 0 ARS10-DBPM-2410 -0.2392400 -0.0226765 0.0001170 0.0000321 ARS10-DBPM-2910 1.2780895 -0.9235140 0.5818007 -0.5005005 ARS10-DBPM-4220 0.6911875 0.9212713 0.4872251 1.7554059 ARS10-DBPM-4720 -0.2190626 -0.0004438 0.0308933 0.1234413}
{AGEBD-ORBITBUMP{{ agebd_env_suffix_upper }} X01DA DEBYE -300 300 0 -150 150 0 -300 300 0 -150 150 0 ARS01-DBPM-2410 -0.2169694 -0.0006291 0.0001170 0.0000325 ARS01-DBPM-2910 1.2765938 -0.9208697 0.5792863 -0.5011470 ARS01-DBPM-4220 0.6866207 0.9198858 0.4842977 1.7595080 ARS01-DBPM-4720 -0.1924402 0.0258918 0.0307458 0.1239361}
{AGEBD-ORBITBUMP{{ agebd_env_suffix_upper }} X02DA S-TOMCAT -300 300 0 -150 150 0 -300 300 0 -150 150 0 ARS02-DBPM-2410 -0.2089937 0.0072435 0.0001169 0.0000325 ARS02-DBPM-2910 1.2772588 -0.9200089 0.5792866 -0.5011606 ARS02-DBPM-4220 0.6864959 0.9194778 0.4843170 1.7595616 ARS02-DBPM-4720 -0.1833930 0.0352770 0.0307471 0.1239392}
{AGEBD-ORBITBUMP{{ agebd_env_suffix_upper }} X03DA PEARL -300 300 0 -150 150 0 -300 300 0 -150 150 0 ARS03-DBPM-2410 -0.2016647 0.0152728 0.0001171 0.0000326 ARS03-DBPM-2910 1.2831552 -0.9190247 0.5819894 -0.5004911 ARS03-DBPM-4220 0.6905553 0.9206615 0.4875028 1.7552635 ARS03-DBPM-4720 -0.1749243 0.0438144 0.0309089 0.1234182}
{AGEBD-ORBITBUMP{{ agebd_env_suffix_upper }} X04DB VUV -300 300 0 -150 150 0 -300 300 0 -150 150 0 ARS04-DBPM-1900 -0.1917962 0.0214714 0.0001022 0.0000595 ARS04-DBPM-2410 1.2842031 -0.9179380 0.5814999 -0.5000284 ARS04-DBPM-2910 0.6887599 0.9211626 0.4874732 1.7553295 ARS04-DBPM-4220 -0.1710439 0.0514609 0.0309080 0.1234788}
{AGEBD-ORBITBUMP{{ agebd_env_suffix_upper }} X05DA Optics -300 300 0 -150 150 0 -300 300 0 -150 150 0 ARS05-DBPM-2410 -0.2740176 -0.0571105 0.0001170 0.0000321 ARS05-DBPM-2910 1.2732647 -0.9287209 0.5819890 -0.5003730 ARS05-DBPM-4220 0.6913367 0.9213802 0.4873370 1.7548006 ARS05-DBPM-4720 -0.2592981 -0.0408063 0.0308988 0.1233928}
{AGEBD-ORBITBUMP{{ agebd_env_suffix_upper }} X06DA PXIII -300 300 0 -150 150 0 -300 300 0 -150 150 0 ARS06-DBPM-2410 -0.2675305 -0.0508248 0.0001170 0.0000321 ARS06-DBPM-2910 1.2749858 -0.9266845 0.5818007 -0.5004548 ARS06-DBPM-4220 0.6916389 0.9218001 0.4871613 1.7552275 ARS06-DBPM-4720 -0.2517260 -0.0332473 0.0308895 0.1234316}
{AGEBD-ORBITBUMP{{ agebd_env_suffix_upper }} X07DB nanoXAS -300 300 0 -150 150 0 -300 300 0 -150 150 0 ARS07-DBPM-1900 -0.2563387 -0.0425222 0.0001023 0.0000596 ARS07-DBPM-2410 1.2761628 -0.9263027 0.5814954 -0.4999177 ARS07-DBPM-2910 0.6888233 0.9216262 0.4873810 1.7549631 ARS07-DBPM-4220 -0.2469055 -0.0248794 0.0309043 0.1234651}
{AGEBD-ORBITBUMP{{ agebd_env_suffix_upper }} X07DA PolLux -300 300 0 -150 150 0 -300 300 0 -250 250 0 ARS07-DBPM-2410 -0.2606076 -0.0450539 0.0001170 0.0000326 ARS07-DBPM-2910 1.2750718 -0.9205684 0.5819899 -0.4976199 ARS07-DBPM-4220 0.6915728 0.9246379 0.4873668 1.7572153 ARS07-DBPM-4720 -0.2433555 -0.0254434 0.0309006 0.1235450}
{AGEBD-ORBITBUMP{{ agebd_env_suffix_upper }} X10DA SuperXAS -300 300 0 -150 150 0 -300 300 0 -150 150 0 ARS10-DBPM-2410 -0.2392400 -0.0226765 0.0001170 0.0000321 ARS10-DBPM-2910 1.2780895 -0.9235140 0.5818007 -0.5005005 ARS10-DBPM-4220 0.6911875 0.9212713 0.4872251 1.7554059 ARS10-DBPM-4720 -0.2190626 -0.0004438 0.0308933 0.1234413}
# ID beamlines
{AGEBD-ORBITBUMP{{ agebd_env_suffix }} X02SA I-TOMCAT -500 500 0 -150 150 0 -500 500 0 -150 150 0 ARS01-DBPM-5250 -0.0161762 0.0645315 -0.0000522 0.0002217 ARS01-DBPM-5880 1.3057217 -3.1586368 0.7340909 -1.7908669 ARS02-DBPM-1080 1.1637103 2.7703664 0.8405251 2.0415012 ARS02-DBPM-1460 0.0473369 0.1176477 0.0354851 0.0914118}
{AGEBD-ORBITBUMP{{ agebd_env_suffix }} X03MA ADRESS -300 300 0 -150 150 0 -300 300 0 -150 150 0 ARS02-DBPM-5250 -0.0056074 0.0805576 -0.0000533 0.0001427 ARS02-DBPM-5880 1.2522257 -3.5240592 0.7649336 -2.1576328 ARS03-DBPM-0810 1.1134798 3.0406278 0.8874945 2.4488073 ARS03-DBPM-1080 0.0367597 0.0902093 0.0491615 0.1421129}
{AGEBD-ORBITBUMP{{ agebd_env_suffix }} X04SA ADDAMS -500 500 0 -150 150 0 -500 500 0 -150 150 0 ARS03-DBPM-5250 0.0006041 0.0811354 -0.0000524 0.0002222 ARS03-DBPM-5880 1.3048037 -3.1594991 0.7340820 -1.7909262 ARS04-DBPM-1080 1.1649402 2.7718322 0.8405182 2.0415768 ARS04-DBPM-1460 0.0441826 0.1145073 0.0354841 0.0914133}
{AGEBD-ORBITBUMP{{ agebd_env_suffix }} X05LA QUEST -300 300 0 -150 150 0 -300 300 0 -150 150 0 ARS04-DBPM-5880 0.0008866 0.0002252 -0.0001045 0.0002529 ARS05-DBPM-0410 0.8976150 -2.8499257 1.0112790 -2.8592349 ARS05-DBPM-1080 1.0880889 5.0183256 0.9137175 4.2390359 ARS05-DBPM-1460 0.0421489 0.1947713 0.0433357 0.2067705}
{AGEBD-ORBITBUMP{{ agebd_env_suffix }} X06SA PXI -300 300 0 -150 150 0 -300 300 0 -150 150 0 ARS05-DBPM-5250 -0.0776973 0.0030268 -0.0000523 0.0002212 ARS05-DBPM-5880 1.3044906 -3.1590695 0.7341239 -1.7906420 ARS06-DBPM-1080 1.1642809 2.7699897 0.8405515 2.0412179 ARS06-DBPM-1460 0.0604868 0.1306028 0.0354886 0.0914055}
{AGEBD-ORBITBUMP{{ agebd_env_suffix }} X07MA Phoenix/XTreme -300 300 0 -150 150 0 -300 300 0 -150 150 0 ARS06-DBPM-5250 -0.0684380 0.0189547 -0.0000531 0.0001447 ARS06-DBPM-5880 1.2508776 -3.5845660 0.7649630 -2.1939024 ARS07-DBPM-0810 1.1137188 2.9863773 0.8875136 2.4060190 ARS07-DBPM-1080 0.0093629 0.0606390 0.0491634 0.1397441}
{AGEBD-ORBITBUMP{{ agebd_env_suffix }} X08SA micro-XAS -300 300 0 -150 150 0 -300 300 0 -150 150 0 ARS07-DBPM-5250 -0.0624701 0.0181621 -0.0000523 0.0002216 ARS07-DBPM-5880 1.3039931 -3.1597229 0.7341156 -1.7906968 ARS08-DBPM-1080 1.1652753 2.7714013 0.8405450 2.0412871 ARS08-DBPM-1460 0.0575855 0.1278140 0.0354876 0.0914065}
{AGEBD-ORBITBUMP{{ agebd_env_suffix }} X09LA PEARL/XIL-II -300 300 0 -150 150 0 -300 300 0 -150 150 0 ARS08-DBPM-5880 0.0011254 0.0009724 -0.0000942 0.0002317 ARS09-DBPM-0570 0.8843735 -2.4344684 1.1263977 -3.0082085 ARS09-DBPM-1080 1.0591734 3.0395499 0.9413643 2.7184391 ARS09-DBPM-1460 0.0394021 0.1139547 0.0465775 0.1402264}
{AGEBD-ORBITBUMP{{ agebd_env_suffix }} X10SA PXII -500 500 0 -150 150 0 -500 500 0 -150 150 0 ARS09-DBPM-5250 -0.0473875 0.0333454 -0.0000523 0.0002213 ARS09-DBPM-5880 1.3047178 -3.1592507 0.7341077 -1.7907518 ARS10-DBPM-1080 1.1639981 2.7701547 0.8405387 2.0413565 ARS10-DBPM-1460 0.0540084 0.1242161 0.0354869 0.0914087}
{AGEBD-ORBITBUMP{{ agebd_env_suffix }} X11MA SIM -500 500 0 -150 150 0 -500 500 0 -150 150 0 ARS10-DBPM-5250 -0.0383667 0.0514782 -0.0000499 0.0001646 ARS10-DBPM-5880 1.2526899 -3.7342542 0.7640638 -2.2804441 ARS11-DBPM-0850 1.1168967 3.1441871 0.8845808 2.5170397 ARS11-DBPM-1080 0.0219427 0.0928506 0.0546028 0.1626088}
{AGEBD-ORBITBUMP{{ agebd_env_suffix }} X12SA cSAXS -300 300 0 -150 150 0 -300 300 0 -150 150 0 ARS11-DBPM-5250 -0.0326376 0.0479239 -0.0000524 0.0002219 ARS11-DBPM-5880 1.3047910 -3.1591765 0.7340995 -1.7908066 ARS12-DBPM-1080 1.1653151 2.7718178 0.8405322 2.0414257 ARS12-DBPM-1460 0.0513287 0.1216036 0.0354860 0.0914097}
{AGEBD-ORBITBUMP{{ agebd_env_suffix_upper }} X02SA I-TOMCAT -500 500 0 -150 150 0 -500 500 0 -150 150 0 ARS01-DBPM-5250 -0.0161762 0.0645315 -0.0000522 0.0002217 ARS01-DBPM-5880 1.3057217 -3.1586368 0.7340909 -1.7908669 ARS02-DBPM-1080 1.1637103 2.7703664 0.8405251 2.0415012 ARS02-DBPM-1460 0.0473369 0.1176477 0.0354851 0.0914118}
{AGEBD-ORBITBUMP{{ agebd_env_suffix_upper }} X03MA ADRESS -300 300 0 -150 150 0 -300 300 0 -150 150 0 ARS02-DBPM-5250 -0.0056074 0.0805576 -0.0000533 0.0001427 ARS02-DBPM-5880 1.2522257 -3.5240592 0.7649336 -2.1576328 ARS03-DBPM-0810 1.1134798 3.0406278 0.8874945 2.4488073 ARS03-DBPM-1080 0.0367597 0.0902093 0.0491615 0.1421129}
{AGEBD-ORBITBUMP{{ agebd_env_suffix_upper }} X04SA ADDAMS -500 500 0 -150 150 0 -500 500 0 -150 150 0 ARS03-DBPM-5250 0.0006041 0.0811354 -0.0000524 0.0002222 ARS03-DBPM-5880 1.3048037 -3.1594991 0.7340820 -1.7909262 ARS04-DBPM-1080 1.1649402 2.7718322 0.8405182 2.0415768 ARS04-DBPM-1460 0.0441826 0.1145073 0.0354841 0.0914133}
{AGEBD-ORBITBUMP{{ agebd_env_suffix_upper }} X05LA QUEST -300 300 0 -150 150 0 -300 300 0 -150 150 0 ARS04-DBPM-5880 0.0008866 0.0002252 -0.0001045 0.0002529 ARS05-DBPM-0410 0.8976150 -2.8499257 1.0112790 -2.8592349 ARS05-DBPM-1080 1.0880889 5.0183256 0.9137175 4.2390359 ARS05-DBPM-1460 0.0421489 0.1947713 0.0433357 0.2067705}
{AGEBD-ORBITBUMP{{ agebd_env_suffix_upper }} X06SA PXI -300 300 0 -150 150 0 -300 300 0 -150 150 0 ARS05-DBPM-5250 -0.0776973 0.0030268 -0.0000523 0.0002212 ARS05-DBPM-5880 1.3044906 -3.1590695 0.7341239 -1.7906420 ARS06-DBPM-1080 1.1642809 2.7699897 0.8405515 2.0412179 ARS06-DBPM-1460 0.0604868 0.1306028 0.0354886 0.0914055}
{AGEBD-ORBITBUMP{{ agebd_env_suffix_upper }} X07MA Phoenix/XTreme -300 300 0 -150 150 0 -300 300 0 -150 150 0 ARS06-DBPM-5250 -0.0684380 0.0189547 -0.0000531 0.0001447 ARS06-DBPM-5880 1.2508776 -3.5845660 0.7649630 -2.1939024 ARS07-DBPM-0810 1.1137188 2.9863773 0.8875136 2.4060190 ARS07-DBPM-1080 0.0093629 0.0606390 0.0491634 0.1397441}
{AGEBD-ORBITBUMP{{ agebd_env_suffix_upper }} X08SA micro-XAS -300 300 0 -150 150 0 -300 300 0 -150 150 0 ARS07-DBPM-5250 -0.0624701 0.0181621 -0.0000523 0.0002216 ARS07-DBPM-5880 1.3039931 -3.1597229 0.7341156 -1.7906968 ARS08-DBPM-1080 1.1652753 2.7714013 0.8405450 2.0412871 ARS08-DBPM-1460 0.0575855 0.1278140 0.0354876 0.0914065}
{AGEBD-ORBITBUMP{{ agebd_env_suffix_upper }} X09LA PEARL/XIL-II -300 300 0 -150 150 0 -300 300 0 -150 150 0 ARS08-DBPM-5880 0.0011254 0.0009724 -0.0000942 0.0002317 ARS09-DBPM-0570 0.8843735 -2.4344684 1.1263977 -3.0082085 ARS09-DBPM-1080 1.0591734 3.0395499 0.9413643 2.7184391 ARS09-DBPM-1460 0.0394021 0.1139547 0.0465775 0.1402264}
{AGEBD-ORBITBUMP{{ agebd_env_suffix_upper }} X10SA PXII -500 500 0 -150 150 0 -500 500 0 -150 150 0 ARS09-DBPM-5250 -0.0473875 0.0333454 -0.0000523 0.0002213 ARS09-DBPM-5880 1.3047178 -3.1592507 0.7341077 -1.7907518 ARS10-DBPM-1080 1.1639981 2.7701547 0.8405387 2.0413565 ARS10-DBPM-1460 0.0540084 0.1242161 0.0354869 0.0914087}
{AGEBD-ORBITBUMP{{ agebd_env_suffix_upper }} X11MA SIM -500 500 0 -150 150 0 -500 500 0 -150 150 0 ARS10-DBPM-5250 -0.0383667 0.0514782 -0.0000499 0.0001646 ARS10-DBPM-5880 1.2526899 -3.7342542 0.7640638 -2.2804441 ARS11-DBPM-0850 1.1168967 3.1441871 0.8845808 2.5170397 ARS11-DBPM-1080 0.0219427 0.0928506 0.0546028 0.1626088}
{AGEBD-ORBITBUMP{{ agebd_env_suffix_upper }} X12SA cSAXS -300 300 0 -150 150 0 -300 300 0 -150 150 0 ARS11-DBPM-5250 -0.0326376 0.0479239 -0.0000524 0.0002219 ARS11-DBPM-5880 1.3047910 -3.1591765 0.7340995 -1.7908066 ARS12-DBPM-1080 1.1653151 2.7718178 0.8405322 2.0414257 ARS12-DBPM-1460 0.0513287 0.1216036 0.0354860 0.0914097}
}
@@ -34,29 +34,29 @@ file ORBITBUMP_beamline.template {
pattern
{DEVICE sourcepoint beamline DRVL DRVH X XP Y YP }
# Diagnostic dipole beamlines
{AGEBD-ORBITBUMP{{ agebd_env_suffix }} X01DD NEMO -10 10 0 0 0 0 }
{AGEBD-ORBITBUMP{{ agebd_env_suffix }} X08DB DISCO -10 10 0 0 0 0 }
{AGEBD-ORBITBUMP{{ agebd_env_suffix }} X10DG X11HEAT -10 10 0 0 0 0 }
{AGEBD-ORBITBUMP{{ agebd_env_suffix_upper }} X01DD NEMO -10 10 0 0 0 0 }
{AGEBD-ORBITBUMP{{ agebd_env_suffix_upper }} X08DB DISCO -10 10 0 0 0 0 }
{AGEBD-ORBITBUMP{{ agebd_env_suffix_upper }} X10DG X11HEAT -10 10 0 0 0 0 }
# User dipole beamlines
{AGEBD-ORBITBUMP{{ agebd_env_suffix }} X01DA DEBYE -10 10 0 0 0 0 }
{AGEBD-ORBITBUMP{{ agebd_env_suffix }} X02DA S-TOMCAT -10 10 0 0 0 0 }
{AGEBD-ORBITBUMP{{ agebd_env_suffix }} X03DA PEARL -10 10 0 0 0 0 }
{AGEBD-ORBITBUMP{{ agebd_env_suffix }} X04DB VUV -10 10 0 0 0 0 }
{AGEBD-ORBITBUMP{{ agebd_env_suffix }} X05DA Optics -10 10 0 0 0 0 }
{AGEBD-ORBITBUMP{{ agebd_env_suffix }} X06DA PXIII -10 10 0 0 0 0 }
{AGEBD-ORBITBUMP{{ agebd_env_suffix }} X07DB nanoXAS -10 10 0 0 0 0 }
{AGEBD-ORBITBUMP{{ agebd_env_suffix }} X07DA PolLux -10 10 0 0 0 0 }
{AGEBD-ORBITBUMP{{ agebd_env_suffix }} X10DA SuperXAS -10 10 0 0 0 0 }
{AGEBD-ORBITBUMP{{ agebd_env_suffix_upper }} X01DA DEBYE -10 10 0 0 0 0 }
{AGEBD-ORBITBUMP{{ agebd_env_suffix_upper }} X02DA S-TOMCAT -10 10 0 0 0 0 }
{AGEBD-ORBITBUMP{{ agebd_env_suffix_upper }} X03DA PEARL -10 10 0 0 0 0 }
{AGEBD-ORBITBUMP{{ agebd_env_suffix_upper }} X04DB VUV -10 10 0 0 0 0 }
{AGEBD-ORBITBUMP{{ agebd_env_suffix_upper }} X05DA Optics -10 10 0 0 0 0 }
{AGEBD-ORBITBUMP{{ agebd_env_suffix_upper }} X06DA PXIII -10 10 0 0 0 0 }
{AGEBD-ORBITBUMP{{ agebd_env_suffix_upper }} X07DB nanoXAS -10 10 0 0 0 0 }
{AGEBD-ORBITBUMP{{ agebd_env_suffix_upper }} X07DA PolLux -10 10 0 0 0 0 }
{AGEBD-ORBITBUMP{{ agebd_env_suffix_upper }} X10DA SuperXAS -10 10 0 0 0 0 }
# ID beamlines
{AGEBD-ORBITBUMP{{ agebd_env_suffix }} X02SA I-TOMCAT -10 10 0 0 0 0 }
{AGEBD-ORBITBUMP{{ agebd_env_suffix }} X03MA ADRESS -10 10 0 0 0 0 }
{AGEBD-ORBITBUMP{{ agebd_env_suffix }} X04SA ADDAMS -10 10 0 0 0 0 }
{AGEBD-ORBITBUMP{{ agebd_env_suffix }} X05LA QUEST -10 10 0 0 0 0 }
{AGEBD-ORBITBUMP{{ agebd_env_suffix }} X06SA PXI -10 10 0 0 0 0 }
{AGEBD-ORBITBUMP{{ agebd_env_suffix }} X07MA Phoenix/XTreme -10 10 0 0 0 0 }
{AGEBD-ORBITBUMP{{ agebd_env_suffix }} X08SA micro-XAS -10 10 0 0 0 0 }
{AGEBD-ORBITBUMP{{ agebd_env_suffix }} X09LA PEARL/XIL-II -10 10 0 0 0 0 }
{AGEBD-ORBITBUMP{{ agebd_env_suffix }} X10SA PXII -10 10 0 0 0 0 }
{AGEBD-ORBITBUMP{{ agebd_env_suffix }} X11MA SIM -10 10 0 0 0 0 }
{AGEBD-ORBITBUMP{{ agebd_env_suffix }} X12SA cSAXS -10 10 0 0 0 0 }
{AGEBD-ORBITBUMP{{ agebd_env_suffix_upper }} X02SA I-TOMCAT -10 10 0 0 0 0 }
{AGEBD-ORBITBUMP{{ agebd_env_suffix_upper }} X03MA ADRESS -10 10 0 0 0 0 }
{AGEBD-ORBITBUMP{{ agebd_env_suffix_upper }} X04SA ADDAMS -10 10 0 0 0 0 }
{AGEBD-ORBITBUMP{{ agebd_env_suffix_upper }} X05LA QUEST -10 10 0 0 0 0 }
{AGEBD-ORBITBUMP{{ agebd_env_suffix_upper }} X06SA PXI -10 10 0 0 0 0 }
{AGEBD-ORBITBUMP{{ agebd_env_suffix_upper }} X07MA Phoenix/XTreme -10 10 0 0 0 0 }
{AGEBD-ORBITBUMP{{ agebd_env_suffix_upper }} X08SA micro-XAS -10 10 0 0 0 0 }
{AGEBD-ORBITBUMP{{ agebd_env_suffix_upper }} X09LA PEARL/XIL-II -10 10 0 0 0 0 }
{AGEBD-ORBITBUMP{{ agebd_env_suffix_upper }} X10SA PXII -10 10 0 0 0 0 }
{AGEBD-ORBITBUMP{{ agebd_env_suffix_upper }} X11MA SIM -10 10 0 0 0 0 }
{AGEBD-ORBITBUMP{{ agebd_env_suffix_upper }} X12SA cSAXS -10 10 0 0 0 0 }
}
@@ -1,6 +1,6 @@
cpu_architecture: x86_64
epics_version: 7.0.8
ioc_host: sls-vserv-bd-01{{ agebd_env_suffix }}
ioc_host: sls-vserv-bd-01{{ agebd_env_suffix_lower }}
ioc_port: {{ ioc_port }}
os: RHEL8
os_id: rhel
@@ -1,4 +1,4 @@
file PARAMS.template {
pattern { DEVICE }
{ AGEBD-PARAMS{{ agebd_env_suffix }} }
{ AGEBD-PARAMS{{ agebd_env_suffix_upper }} }
}
@@ -1,6 +1,6 @@
cpu_architecture: x86_64
epics_version: 7.0.8
ioc_host: sls-vserv-bd-01{{ agebd_env_suffix }}
ioc_host: sls-vserv-bd-01{{ agebd_env_suffix_lower }}
ioc_port: {{ ioc_port }}
os: RHEL8
os_id: rhel
@@ -1,64 +1,64 @@
file PLOTS_timeaxis.template {
pattern
{ DEVICE }
{ AGEBD-PLOTS{{ agebd_env_suffix }} }
{ AGEBD-PLOTS{{ agebd_env_suffix_upper }} }
}
file PLOTS_9h.template {
pattern
{ DEVICE, NAME, INP }
{ AGEBD-PLOTS{{ agebd_env_suffix }}, CURRENT, AGEBD-PARAMS:CURRENT }
{ AGEBD-PLOTS{{ agebd_env_suffix }}, CURRENT-BPM, AGEBD-DBPM3CURR:CURRENT-AVG }
{ AGEBD-PLOTS{{ agebd_env_suffix }}, CURRENT-PCT, ARS07-DPCT-0000:CURR }
{ AGEBD-PLOTS{{ agebd_env_suffix }}, INJECTION-RATE, AGEBD-PARAMS:INJECTION-RATE }
{ AGEBD-PLOTS{{ agebd_env_suffix }}, TRANSMISSION, AGEBD-PARAMS:TRANSMISSION }
{ AGEBD-PLOTS{{ agebd_env_suffix }}, LIFETIME, AGEBD-PARAMS:LIFETIME }
{ AGEBD-PLOTS{{ agebd_env_suffix }}, MAVAC-AVG, ARIVA-VMAVE:PRESS-AVE }
{ AGEBD-PLOTS{{ agebd_env_suffix }}, MAVAC-MAX, ARIVA-VMAVE:PRESS-MAX }
{ AGEBD-PLOTS{{ agebd_env_suffix }}, FEVAC-AVG, ARIVA-VMAVE-FE:PRESS-AVE }
{ AGEBD-PLOTS{{ agebd_env_suffix }}, FEVAC-MAX, ARIVA-VMAVE-FE:PRESS-MAX }
{ AGEBD-PLOTS{{ agebd_env_suffix }}, ABRTL-DDRM-0670, ABRTL-DDRM-0670:FET1_BIAS_DOSE}
{ AGEBD-PLOTS{{ agebd_env_suffix }}, ABRTL-DDRM-0950, ABRTL-DDRM-0950:FET1_DOSE}
{ AGEBD-PLOTS{{ agebd_env_suffix }}, X05LA-DDRM-0330, X05LA-DDRM-0330:FET1_BIAS_DOSE}
{ AGEBD-PLOTS{{ agebd_env_suffix }}, X05LA-DDRM-0650, X05LA-DDRM-0650:FET1_BIAS_DOSE}
{ AGEBD-PLOTS{{ agebd_env_suffix }}, X09LA-DDRM-0330, X09LA-DDRM-0330:FET1_BIAS_DOSE}
{ AGEBD-PLOTS{{ agebd_env_suffix }}, X09LA-DDRM-0790, X09LA-DDRM-0790:FET1_BIAS_DOSE}
{ AGEBD-PLOTS{{ agebd_env_suffix }}, ARS01-DDRM-0375, ARS01-DDRM-0375:FET1_DOSE}
{ AGEBD-PLOTS{{ agebd_env_suffix }}, ARS01-DDRM-1530, ARS01-DDRM-1530:FET1_BIAS_DOSE}
{ AGEBD-PLOTS{{ agebd_env_suffix }}, ARS05-DDRM-1530, ARS05-DDRM-1530:FET1_BIAS_DOSE}
{ AGEBD-PLOTS{{ agebd_env_suffix }}, ARS05-DDRM-3500, ARS05-DDRM-3500:FET1_BIAS_DOSE}
{ AGEBD-PLOTS{{ agebd_env_suffix }}, ARS09-DDRM-1530, ARS09-DDRM-1530:FET1_BIAS_DOSE}
{ AGEBD-PLOTS{{ agebd_env_suffix }}, ARS09-DDRM-3500, ARS09-DDRM-3500:FET2_BIAS_DOSE}
{ AGEBD-PLOTS{{ agebd_env_suffix }}, ARS12-DDRM-1530, ARS12-DDRM-1530:FET1_BIAS_DOSE}
{ AGEBD-PLOTS{{ agebd_env_suffix }}, ARS12-DDRM-3500, ARS12-DDRM-3500:FET1_BIAS_DOSE}
{ AGEBD-PLOTS{{ agebd_env_suffix }}, ARS12-DDRM-4400, ARS12-DDRM-4400:FET1_BIAS_DOSE}
{ AGEBD-PLOTS{{ agebd_env_suffix }}, ARS12-DDRM-5480, ARS12-DDRM-5480:FET1_BIAS_DOSE}
{ AGEBD-PLOTS{{ agebd_env_suffix }}, X02SA-UIND-GAP, AGEOP-STATUS:X02SA-UIND-GAP} # Soft Blue #A0C4FF
# { AGEBD-PLOTS{{ agebd_env_suffix }}, X03MA-UIND-GAP, AGEOP-STATUS:X03MA-UIND-GAP} # Warm Orange #FFD6A5
{ AGEBD-PLOTS{{ agebd_env_suffix }}, X04SA-UIND-GAP, AGEOP-STATUS:X04SA-UIND-GAP} # Light Green #CAFFBF
# { AGEBD-PLOTS{{ agebd_env_suffix }}, X05LA-UIND-GAP, AGEOP-STATUS:X05LA-UIND-GAP} # Coral Red #FFADAD
{ AGEBD-PLOTS{{ agebd_env_suffix }}, X06SA-UIND-GAP, AGEOP-STATUS:X06SA-UIND-GAP} # Lavender #CDB4DB
# { AGEBD-PLOTS{{ agebd_env_suffix }}, X07MA-UIND-GAP, AGEOP-STATUS:X07MA-UIND-GAP} # Desert Tan #DDB892
# { AGEBD-PLOTS{{ agebd_env_suffix }}, X08SA-UIND-GAP, AGEOP-STATUS:X08SA-UIND-GAP} # Peach Pink #FFB5A7
{ AGEBD-PLOTS{{ agebd_env_suffix }}, X09LB-UIND-GAP, AGEOP-STATUS:X09LB-UIND-GAP} # Aqua Blue #9BF6FF
{ AGEBD-PLOTS{{ agebd_env_suffix }}, X10SA-UIND-GAP, AGEOP-STATUS:X10SA-UIND-GAP} # Pale Yellow #FDFFB6
{ AGEBD-PLOTS{{ agebd_env_suffix }}, X11MA-UIND2-GAP, AGEOP-STATUS:X11MA-UIND2-GAP} # Periwinkle #BDB2FF
{ AGEBD-PLOTS{{ agebd_env_suffix }}, X12SA-UIND-GAP, AGEOP-STATUS:X12SA-UIND-GAP} # Mint Green #B0F2C2
{ AGEBD-PLOTS{{ agebd_env_suffix_upper }}, CURRENT, AGEBD-PARAMS:CURRENT }
{ AGEBD-PLOTS{{ agebd_env_suffix_upper }}, CURRENT-BPM, AGEBD-DBPM3CURR:CURRENT-AVG }
{ AGEBD-PLOTS{{ agebd_env_suffix_upper }}, CURRENT-PCT, ARS07-DPCT-0000:CURR }
{ AGEBD-PLOTS{{ agebd_env_suffix_upper }}, INJECTION-RATE, AGEBD-PARAMS:INJECTION-RATE }
{ AGEBD-PLOTS{{ agebd_env_suffix_upper }}, TRANSMISSION, AGEBD-PARAMS:TRANSMISSION }
{ AGEBD-PLOTS{{ agebd_env_suffix_upper }}, LIFETIME, AGEBD-PARAMS:LIFETIME }
{ AGEBD-PLOTS{{ agebd_env_suffix_upper }}, MAVAC-AVG, ARIVA-VMAVE:PRESS-AVE }
{ AGEBD-PLOTS{{ agebd_env_suffix_upper }}, MAVAC-MAX, ARIVA-VMAVE:PRESS-MAX }
{ AGEBD-PLOTS{{ agebd_env_suffix_upper }}, FEVAC-AVG, ARIVA-VMAVE-FE:PRESS-AVE }
{ AGEBD-PLOTS{{ agebd_env_suffix_upper }}, FEVAC-MAX, ARIVA-VMAVE-FE:PRESS-MAX }
{ AGEBD-PLOTS{{ agebd_env_suffix_upper }}, ABRTL-DDRM-0670, ABRTL-DDRM-0670:FET1_BIAS_DOSE}
{ AGEBD-PLOTS{{ agebd_env_suffix_upper }}, ABRTL-DDRM-0950, ABRTL-DDRM-0950:FET1_DOSE}
{ AGEBD-PLOTS{{ agebd_env_suffix_upper }}, X05LA-DDRM-0330, X05LA-DDRM-0330:FET1_BIAS_DOSE}
{ AGEBD-PLOTS{{ agebd_env_suffix_upper }}, X05LA-DDRM-0650, X05LA-DDRM-0650:FET1_BIAS_DOSE}
{ AGEBD-PLOTS{{ agebd_env_suffix_upper }}, X09LA-DDRM-0330, X09LA-DDRM-0330:FET1_BIAS_DOSE}
{ AGEBD-PLOTS{{ agebd_env_suffix_upper }}, X09LA-DDRM-0790, X09LA-DDRM-0790:FET1_BIAS_DOSE}
{ AGEBD-PLOTS{{ agebd_env_suffix_upper }}, ARS01-DDRM-0375, ARS01-DDRM-0375:FET1_DOSE}
{ AGEBD-PLOTS{{ agebd_env_suffix_upper }}, ARS01-DDRM-1530, ARS01-DDRM-1530:FET1_BIAS_DOSE}
{ AGEBD-PLOTS{{ agebd_env_suffix_upper }}, ARS05-DDRM-1530, ARS05-DDRM-1530:FET1_BIAS_DOSE}
{ AGEBD-PLOTS{{ agebd_env_suffix_upper }}, ARS05-DDRM-3500, ARS05-DDRM-3500:FET1_BIAS_DOSE}
{ AGEBD-PLOTS{{ agebd_env_suffix_upper }}, ARS09-DDRM-1530, ARS09-DDRM-1530:FET1_BIAS_DOSE}
{ AGEBD-PLOTS{{ agebd_env_suffix_upper }}, ARS09-DDRM-3500, ARS09-DDRM-3500:FET2_BIAS_DOSE}
{ AGEBD-PLOTS{{ agebd_env_suffix_upper }}, ARS12-DDRM-1530, ARS12-DDRM-1530:FET1_BIAS_DOSE}
{ AGEBD-PLOTS{{ agebd_env_suffix_upper }}, ARS12-DDRM-3500, ARS12-DDRM-3500:FET1_BIAS_DOSE}
{ AGEBD-PLOTS{{ agebd_env_suffix_upper }}, ARS12-DDRM-4400, ARS12-DDRM-4400:FET1_BIAS_DOSE}
{ AGEBD-PLOTS{{ agebd_env_suffix_upper }}, ARS12-DDRM-5480, ARS12-DDRM-5480:FET1_BIAS_DOSE}
{ AGEBD-PLOTS{{ agebd_env_suffix_upper }}, X02SA-UIND-GAP, AGEOP-STATUS:X02SA-UIND-GAP} # Soft Blue #A0C4FF
# { AGEBD-PLOTS{{ agebd_env_suffix_upper }}, X03MA-UIND-GAP, AGEOP-STATUS:X03MA-UIND-GAP} # Warm Orange #FFD6A5
{ AGEBD-PLOTS{{ agebd_env_suffix_upper }}, X04SA-UIND-GAP, AGEOP-STATUS:X04SA-UIND-GAP} # Light Green #CAFFBF
# { AGEBD-PLOTS{{ agebd_env_suffix_upper }}, X05LA-UIND-GAP, AGEOP-STATUS:X05LA-UIND-GAP} # Coral Red #FFADAD
{ AGEBD-PLOTS{{ agebd_env_suffix_upper }}, X06SA-UIND-GAP, AGEOP-STATUS:X06SA-UIND-GAP} # Lavender #CDB4DB
# { AGEBD-PLOTS{{ agebd_env_suffix_upper }}, X07MA-UIND-GAP, AGEOP-STATUS:X07MA-UIND-GAP} # Desert Tan #DDB892
# { AGEBD-PLOTS{{ agebd_env_suffix_upper }}, X08SA-UIND-GAP, AGEOP-STATUS:X08SA-UIND-GAP} # Peach Pink #FFB5A7
{ AGEBD-PLOTS{{ agebd_env_suffix_upper }}, X09LB-UIND-GAP, AGEOP-STATUS:X09LB-UIND-GAP} # Aqua Blue #9BF6FF
{ AGEBD-PLOTS{{ agebd_env_suffix_upper }}, X10SA-UIND-GAP, AGEOP-STATUS:X10SA-UIND-GAP} # Pale Yellow #FDFFB6
{ AGEBD-PLOTS{{ agebd_env_suffix_upper }}, X11MA-UIND2-GAP, AGEOP-STATUS:X11MA-UIND2-GAP} # Periwinkle #BDB2FF
{ AGEBD-PLOTS{{ agebd_env_suffix_upper }}, X12SA-UIND-GAP, AGEOP-STATUS:X12SA-UIND-GAP} # Mint Green #B0F2C2
}
file PLOTS_week.template {
pattern
{ DEVICE, NAME, INP }
{ AGEBD-PLOTS{{ agebd_env_suffix }}, CURRENT-BPM, AGEBD-DBPM3CURR:CURRENT-AVG }
{ AGEBD-PLOTS{{ agebd_env_suffix }}, CURRENT-PCT, ARS07-DPCT-0000:CURR }
{ AGEBD-PLOTS{{ agebd_env_suffix }}, TAU-BPM, AGEBD-TAUBPM:TAU }
{ AGEBD-PLOTS{{ agebd_env_suffix }}, TAU-PCT, AGEBD-TAUPCT:TAU }
{ AGEBD-PLOTS{{ agebd_env_suffix }}, TAU-TOPUP, AGEBD-SCRUBBING:TOPUP-TAU }
{ AGEBD-PLOTS{{ agebd_env_suffix }}, INJRATE-BPM, AGEBD-TAUBPM:INJRATE }
{ AGEBD-PLOTS{{ agebd_env_suffix }}, INJRATE-PCT, AGEBD-TAUPCT:INJRATE }
{ AGEBD-PLOTS{{ agebd_env_suffix }}, MAVAC-AVG, ARIVA-VMAVE:PRESS-AVE }
{ AGEBD-PLOTS{{ agebd_env_suffix }}, MAVAC-MAX, ARIVA-VMAVE:PRESS-MAX }
{ AGEBD-PLOTS{{ agebd_env_suffix }}, FEVAC-AVG, ARIVA-VMAVE-FE:PRESS-AVE }
{ AGEBD-PLOTS{{ agebd_env_suffix }}, FEVAC-MAX, ARIVA-VMAVE-FE:PRESS-MAX }
{ AGEBD-PLOTS{{ agebd_env_suffix_upper }}, CURRENT-BPM, AGEBD-DBPM3CURR:CURRENT-AVG }
{ AGEBD-PLOTS{{ agebd_env_suffix_upper }}, CURRENT-PCT, ARS07-DPCT-0000:CURR }
{ AGEBD-PLOTS{{ agebd_env_suffix_upper }}, TAU-BPM, AGEBD-TAUBPM:TAU }
{ AGEBD-PLOTS{{ agebd_env_suffix_upper }}, TAU-PCT, AGEBD-TAUPCT:TAU }
{ AGEBD-PLOTS{{ agebd_env_suffix_upper }}, TAU-TOPUP, AGEBD-SCRUBBING:TOPUP-TAU }
{ AGEBD-PLOTS{{ agebd_env_suffix_upper }}, INJRATE-BPM, AGEBD-TAUBPM:INJRATE }
{ AGEBD-PLOTS{{ agebd_env_suffix_upper }}, INJRATE-PCT, AGEBD-TAUPCT:INJRATE }
{ AGEBD-PLOTS{{ agebd_env_suffix_upper }}, MAVAC-AVG, ARIVA-VMAVE:PRESS-AVE }
{ AGEBD-PLOTS{{ agebd_env_suffix_upper }}, MAVAC-MAX, ARIVA-VMAVE:PRESS-MAX }
{ AGEBD-PLOTS{{ agebd_env_suffix_upper }}, FEVAC-AVG, ARIVA-VMAVE-FE:PRESS-AVE }
{ AGEBD-PLOTS{{ agebd_env_suffix_upper }}, FEVAC-MAX, ARIVA-VMAVE-FE:PRESS-MAX }
}
@@ -1,6 +1,6 @@
cpu_architecture: x86_64
epics_version: 7.0.8
ioc_host: sls-vserv-bd-01{{ agebd_env_suffix }}
ioc_host: sls-vserv-bd-01{{ agebd_env_suffix_lower }}
ioc_port: {{ ioc_port }}
os: RHEL8
os_id: rhel
@@ -1,129 +1,129 @@
file POSTMORTEMLOG.template {
pattern
{ DEVICE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix }} }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }} }
}
file POSTMORTEMLOG_15min10Hz.template {
pattern
{ DEVICE NAME INP}
# ---------- BEAM CURRENT --------------
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix }} CURRBPM AGEBD-DBPM3CURR:CURRENT-AVG }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix }} CURRPCT ARS07-DPCT-0000:CURR }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }} CURRBPM AGEBD-DBPM3CURR:CURRENT-AVG }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }} CURRPCT ARS07-DPCT-0000:CURR }
# ---------- BEAM LIFETIME --------------
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix }} TAUBPM AGEBD-TAUBPM:TAU }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix }} TAUPCT AGEBD-TAUPCT:TAU }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }} TAUBPM AGEBD-TAUBPM:TAU }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }} TAUPCT AGEBD-TAUPCT:TAU }
# ---------- TUNES --------------
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix }} QX AGEBD-TUNEBUMP:QX }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix }} QY AGEBD-TUNEBUMP:QY }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix }} QZ AGEBD-TUNEBUMP:QZ }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }} QX AGEBD-TUNEBUMP:QX }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }} QY AGEBD-TUNEBUMP:QY }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }} QZ AGEBD-TUNEBUMP:QZ }
# ---------- LOSSES --------------
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix }} ARS01-DDRM-0375 ARS01-DDRM-0375:FET1_DOSE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix }} ABRTL-DDRM-0670 ABRTL-DDRM-0670:FET1_BIAS_DOSE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix }} ABRTL-DDRM-0950 ABRTL-DDRM-0950:FET1_DOSE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix }} ARS01-DDRM-1530 ARS01-DDRM-1530:FET1_BIAS_DOSE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix }} X05LA-DDRM-0330 X05LA-DDRM-0330:FET1_BIAS_DOSE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix }} ARS05-DDRM-1530 ARS05-DDRM-1530:FET1_BIAS_DOSE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix }} ARS05-DDRM-3500 ARS05-DDRM-3500:FET1_BIAS_DOSE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix }} X09LA-DDRM-0330 X09LA-DDRM-0330:FET1_BIAS_DOSE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix }} ARS09-DDRM-1530 ARS09-DDRM-1530:FET1_BIAS_DOSE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix }} ARS09-DDRM-3500 ARS09-DDRM-3500:FET2_BIAS_DOSE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix }} ARS12-DDRM-1530 ARS12-DDRM-1530:FET1_BIAS_DOSE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix }} ARS12-DDRM-3500 ARS12-DDRM-3500:FET2_BIAS_DOSE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix }} ARS12-DDRM-4400 ARS12-DDRM-4400:FET2_BIAS_DOSE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix }} ARS12-DDRM-5480 ARS12-DDRM-5480:FET1_BIAS_DOSE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }} ARS01-DDRM-0375 ARS01-DDRM-0375:FET1_DOSE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }} ABRTL-DDRM-0670 ABRTL-DDRM-0670:FET1_BIAS_DOSE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }} ABRTL-DDRM-0950 ABRTL-DDRM-0950:FET1_DOSE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }} ARS01-DDRM-1530 ARS01-DDRM-1530:FET1_BIAS_DOSE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }} X05LA-DDRM-0330 X05LA-DDRM-0330:FET1_BIAS_DOSE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }} ARS05-DDRM-1530 ARS05-DDRM-1530:FET1_BIAS_DOSE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }} ARS05-DDRM-3500 ARS05-DDRM-3500:FET1_BIAS_DOSE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }} X09LA-DDRM-0330 X09LA-DDRM-0330:FET1_BIAS_DOSE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }} ARS09-DDRM-1530 ARS09-DDRM-1530:FET1_BIAS_DOSE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }} ARS09-DDRM-3500 ARS09-DDRM-3500:FET2_BIAS_DOSE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }} ARS12-DDRM-1530 ARS12-DDRM-1530:FET1_BIAS_DOSE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }} ARS12-DDRM-3500 ARS12-DDRM-3500:FET2_BIAS_DOSE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }} ARS12-DDRM-4400 ARS12-DDRM-4400:FET2_BIAS_DOSE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }} ARS12-DDRM-5480 ARS12-DDRM-5480:FET1_BIAS_DOSE }
# ---------- RF --------------
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix }} MASTERFREQ-SET AGERF-MO01:FREQ-SET }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix }} MASTERFREQ-GET AGERF-MO01:FREQ-GET }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix }} RFPOW-0140-INP ARS05-RCAV-0140:CO1i-POWER-MAX }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix }} RFPOW-0060-INP ARS05-RCAV-0060:CO1i-POWER-MAX }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix }} RFPOW-0230-INP ARS05-RCAV-0230:CO1i-POWER-MAX }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix }} RFPOW-0310-INP ARS05-RCAV-0310:CO1i-POWER-MAX }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix }} RFPOW-0060-REF ARS05-RCAV-0060:CO1r-POWER-MAX }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix }} RFPOW-0140-REF ARS05-RCAV-0140:CO1r-POWER-MAX }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix }} RFPOW-0230-REF ARS05-RCAV-0230:CO1r-POWER-MAX }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix }} RFPOW-0310-REF ARS05-RCAV-0310:CO1r-POWER-MAX }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }} MASTERFREQ-SET AGERF-MO01:FREQ-SET }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }} MASTERFREQ-GET AGERF-MO01:FREQ-GET }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }} RFPOW-0140-INP ARS05-RCAV-0140:CO1i-POWER-MAX }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }} RFPOW-0060-INP ARS05-RCAV-0060:CO1i-POWER-MAX }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }} RFPOW-0230-INP ARS05-RCAV-0230:CO1i-POWER-MAX }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }} RFPOW-0310-INP ARS05-RCAV-0310:CO1i-POWER-MAX }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }} RFPOW-0060-REF ARS05-RCAV-0060:CO1r-POWER-MAX }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }} RFPOW-0140-REF ARS05-RCAV-0140:CO1r-POWER-MAX }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }} RFPOW-0230-REF ARS05-RCAV-0230:CO1r-POWER-MAX }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }} RFPOW-0310-REF ARS05-RCAV-0310:CO1r-POWER-MAX }
# ---------- BEAM SIZE --------------
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix }} X01DD-SIGX X01DD-FE-CAM1:SIG-X }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix }} X01DD-SIGY X01DD-FE-CAM1:SIG-Y }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix }} X08DB-SIGX X08DB-FE-CAM1:SIG-X }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix }} X08DB-SIGY X08DB-FE-CAM1:SIG-Y }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }} X01DD-SIGX X01DD-FE-CAM1:SIG-X }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }} X01DD-SIGY X01DD-FE-CAM1:SIG-Y }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }} X08DB-SIGX X08DB-FE-CAM1:SIG-X }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }} X08DB-SIGY X08DB-FE-CAM1:SIG-Y }
# ---------- VACUUM --------------
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix }} VACMAX ARIVA-VMAVE:PRESS-MAX }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix }} VACMAXFE ARIVA-VMAVE-FE:PRESS-MAX }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix }} ARS01-VMCC-0110 ARS01-VMCC-0110:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix }} ARS01-VMCC-0210 ARS01-VMCC-0210:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix }} ARS01-VMCC-0225 ARS01-VMCC-0225:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix }} ARS01-VMCC-0310 ARS01-VMCC-0310:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix }} ARS01-VMCC-1550 ARS01-VMCC-1550:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix }} ARS01-VMCC-3510 ARS01-VMCC-3510:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix }} ARS01-VMCC-5460 ARS01-VMCC-5460:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix }} ARS02-VMCC-0110 ARS02-VMCC-0110:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix }} ARS02-VMCC-0210 ARS02-VMCC-0210:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix }} ARS02-VMCC-0310 ARS02-VMCC-0310:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix }} ARS02-VMCC-1550 ARS02-VMCC-1550:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix }} ARS02-VMCC-3510 ARS02-VMCC-3510:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix }} ARS02-VMCC-5460 ARS02-VMCC-5460:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix }} ARS03-VMCC-0110 ARS03-VMCC-0110:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix }} ARS03-VMCC-0320 ARS03-VMCC-0320:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix }} ARS03-VMCC-1550 ARS03-VMCC-1550:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix }} ARS03-VMCC-3510 ARS03-VMCC-3510:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix }} ARS03-VMCC-5460 ARS03-VMCC-5460:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix }} ARS04-VMCC-0110 ARS04-VMCC-0110:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix }} ARS04-VMCC-1550 ARS04-VMCC-1550:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix }} ARS04-VMCC-3510 ARS04-VMCC-3510:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix }} ARS04-VMCC-5460 ARS04-VMCC-5460:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix }} ARS05-VMCC-0110 ARS05-VMCC-0110:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix }} ARS05-VMCC-0115 ARS05-VMCC-0115:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix }} ARS05-VMCC-0210 ARS05-VMCC-0210:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix }} ARS05-VMCC-0215 ARS05-VMCC-0215:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix }} ARS05-VMCC-0310 ARS05-VMCC-0310:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix }} ARS05-VMCC-0315 ARS05-VMCC-0315:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix }} ARS05-VMCC-0410 ARS05-VMCC-0410:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix }} ARS05-VMCC-0415 ARS05-VMCC-0415:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix }} ARS05-VMCC-0510 ARS05-VMCC-0510:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix }} ARS05-VMCC-0520 ARS05-VMCC-0520:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix }} ARS05-VMCC-0530 ARS05-VMCC-0530:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix }} ARS05-VMCC-0810 ARS05-VMCC-0810:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix }} ARS05-VMCC-1550 ARS05-VMCC-1550:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix }} ARS05-VMCC-3510 ARS05-VMCC-3510:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix }} ARS05-VMCC-5460 ARS05-VMCC-5460:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix }} ARS06-VMCC-0110 ARS06-VMCC-0110:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix }} ARS06-VMCC-1550 ARS06-VMCC-1550:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix }} ARS06-VMCC-3510 ARS06-VMCC-3510:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix }} ARS06-VMCC-5460 ARS06-VMCC-5460:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix }} ARS07-VMCC-0010 ARS07-VMCC-0010:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix }} ARS07-VMCC-0120 ARS07-VMCC-0120:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix }} ARS07-VMCC-0210 ARS07-VMCC-0210:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix }} ARS07-VMCC-1550 ARS07-VMCC-1550:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix }} ARS07-VMCC-3510 ARS07-VMCC-3510:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix }} ARS07-VMCC-5460 ARS07-VMCC-5460:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix }} ARS08-VMCC-0110 ARS08-VMCC-0110:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix }} ARS08-VMCC-1550 ARS08-VMCC-1550:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix }} ARS08-VMCC-3510 ARS08-VMCC-3510:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix }} ARS08-VMCC-5460 ARS08-VMCC-5460:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix }} ARS09-VMCC-0110 ARS09-VMCC-0110:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix }} ARS09-VMCC-0120 ARS09-VMCC-0120:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix }} ARS09-VMCC-0410 ARS09-VMCC-0410:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix }} ARS09-VMCC-0510 ARS09-VMCC-0510:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix }} ARS09-VMCC-0810 ARS09-VMCC-0810:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix }} ARS09-VMCC-1550 ARS09-VMCC-1550:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix }} ARS09-VMCC-3510 ARS09-VMCC-3510:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix }} ARS09-VMCC-5460 ARS09-VMCC-5460:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix }} ARS10-VMCC-0110 ARS10-VMCC-0110:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix }} ARS10-VMCC-1550 ARS10-VMCC-1550:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix }} ARS10-VMCC-3510 ARS10-VMCC-3510:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix }} ARS10-VMCC-5460 ARS10-VMCC-5460:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix }} ARS11-VMCC-0110 ARS11-VMCC-0110:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix }} ARS11-VMCC-0210 ARS11-VMCC-0210:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix }} ARS11-VMCC-0310 ARS11-VMCC-0310:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix }} ARS11-VMCC-0410 ARS11-VMCC-0410:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix }} ARS11-VMCC-0510 ARS11-VMCC-0510:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix }} ARS11-VMCC-1550 ARS11-VMCC-1550:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix }} ARS11-VMCC-3510 ARS11-VMCC-3510:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix }} ARS11-VMCC-5460 ARS11-VMCC-5460:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix }} ARS12-VMCC-0110 ARS12-VMCC-0110:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix }} ARS12-VMCC-1550 ARS12-VMCC-1550:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix }} ARS12-VMCC-3510 ARS12-VMCC-3510:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix }} ARS12-VMCC-5460 ARS12-VMCC-5460:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }} VACMAX ARIVA-VMAVE:PRESS-MAX }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }} VACMAXFE ARIVA-VMAVE-FE:PRESS-MAX }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }} ARS01-VMCC-0110 ARS01-VMCC-0110:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }} ARS01-VMCC-0210 ARS01-VMCC-0210:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }} ARS01-VMCC-0225 ARS01-VMCC-0225:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }} ARS01-VMCC-0310 ARS01-VMCC-0310:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }} ARS01-VMCC-1550 ARS01-VMCC-1550:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }} ARS01-VMCC-3510 ARS01-VMCC-3510:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }} ARS01-VMCC-5460 ARS01-VMCC-5460:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }} ARS02-VMCC-0110 ARS02-VMCC-0110:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }} ARS02-VMCC-0210 ARS02-VMCC-0210:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }} ARS02-VMCC-0310 ARS02-VMCC-0310:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }} ARS02-VMCC-1550 ARS02-VMCC-1550:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }} ARS02-VMCC-3510 ARS02-VMCC-3510:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }} ARS02-VMCC-5460 ARS02-VMCC-5460:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }} ARS03-VMCC-0110 ARS03-VMCC-0110:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }} ARS03-VMCC-0320 ARS03-VMCC-0320:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }} ARS03-VMCC-1550 ARS03-VMCC-1550:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }} ARS03-VMCC-3510 ARS03-VMCC-3510:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }} ARS03-VMCC-5460 ARS03-VMCC-5460:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }} ARS04-VMCC-0110 ARS04-VMCC-0110:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }} ARS04-VMCC-1550 ARS04-VMCC-1550:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }} ARS04-VMCC-3510 ARS04-VMCC-3510:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }} ARS04-VMCC-5460 ARS04-VMCC-5460:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }} ARS05-VMCC-0110 ARS05-VMCC-0110:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }} ARS05-VMCC-0115 ARS05-VMCC-0115:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }} ARS05-VMCC-0210 ARS05-VMCC-0210:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }} ARS05-VMCC-0215 ARS05-VMCC-0215:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }} ARS05-VMCC-0310 ARS05-VMCC-0310:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }} ARS05-VMCC-0315 ARS05-VMCC-0315:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }} ARS05-VMCC-0410 ARS05-VMCC-0410:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }} ARS05-VMCC-0415 ARS05-VMCC-0415:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }} ARS05-VMCC-0510 ARS05-VMCC-0510:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }} ARS05-VMCC-0520 ARS05-VMCC-0520:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }} ARS05-VMCC-0530 ARS05-VMCC-0530:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }} ARS05-VMCC-0810 ARS05-VMCC-0810:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }} ARS05-VMCC-1550 ARS05-VMCC-1550:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }} ARS05-VMCC-3510 ARS05-VMCC-3510:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }} ARS05-VMCC-5460 ARS05-VMCC-5460:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }} ARS06-VMCC-0110 ARS06-VMCC-0110:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }} ARS06-VMCC-1550 ARS06-VMCC-1550:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }} ARS06-VMCC-3510 ARS06-VMCC-3510:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }} ARS06-VMCC-5460 ARS06-VMCC-5460:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }} ARS07-VMCC-0010 ARS07-VMCC-0010:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }} ARS07-VMCC-0120 ARS07-VMCC-0120:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }} ARS07-VMCC-0210 ARS07-VMCC-0210:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }} ARS07-VMCC-1550 ARS07-VMCC-1550:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }} ARS07-VMCC-3510 ARS07-VMCC-3510:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }} ARS07-VMCC-5460 ARS07-VMCC-5460:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }} ARS08-VMCC-0110 ARS08-VMCC-0110:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }} ARS08-VMCC-1550 ARS08-VMCC-1550:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }} ARS08-VMCC-3510 ARS08-VMCC-3510:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }} ARS08-VMCC-5460 ARS08-VMCC-5460:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }} ARS09-VMCC-0110 ARS09-VMCC-0110:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }} ARS09-VMCC-0120 ARS09-VMCC-0120:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }} ARS09-VMCC-0410 ARS09-VMCC-0410:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }} ARS09-VMCC-0510 ARS09-VMCC-0510:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }} ARS09-VMCC-0810 ARS09-VMCC-0810:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }} ARS09-VMCC-1550 ARS09-VMCC-1550:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }} ARS09-VMCC-3510 ARS09-VMCC-3510:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }} ARS09-VMCC-5460 ARS09-VMCC-5460:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }} ARS10-VMCC-0110 ARS10-VMCC-0110:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }} ARS10-VMCC-1550 ARS10-VMCC-1550:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }} ARS10-VMCC-3510 ARS10-VMCC-3510:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }} ARS10-VMCC-5460 ARS10-VMCC-5460:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }} ARS11-VMCC-0110 ARS11-VMCC-0110:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }} ARS11-VMCC-0210 ARS11-VMCC-0210:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }} ARS11-VMCC-0310 ARS11-VMCC-0310:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }} ARS11-VMCC-0410 ARS11-VMCC-0410:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }} ARS11-VMCC-0510 ARS11-VMCC-0510:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }} ARS11-VMCC-1550 ARS11-VMCC-1550:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }} ARS11-VMCC-3510 ARS11-VMCC-3510:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }} ARS11-VMCC-5460 ARS11-VMCC-5460:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }} ARS12-VMCC-0110 ARS12-VMCC-0110:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }} ARS12-VMCC-1550 ARS12-VMCC-1550:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }} ARS12-VMCC-3510 ARS12-VMCC-3510:PRESSURE }
{ AGEBD-POSTMORTEMLOG{{ agebd_env_suffix_upper }} ARS12-VMCC-5460 ARS12-VMCC-5460:PRESSURE }
}
@@ -1,6 +1,6 @@
cpu_architecture: x86_64
epics_version: 7.0.8
ioc_host: sls-vserv-bd-01{{ agebd_env_suffix }}
ioc_host: sls-vserv-bd-01{{ agebd_env_suffix_lower }}
ioc_port: {{ ioc_port }}
os: RHEL8
os_id: rhel
@@ -1,4 +1,4 @@
file SCRUBBING.template {
pattern { DEVICE }
{ AGEBD-SCRUBBING{{ agebd_env_suffix }} }
{ AGEBD-SCRUBBING{{ agebd_env_suffix_upper }} }
}
@@ -1,6 +1,6 @@
cpu_architecture: x86_64
epics_version: 7.0.8
ioc_host: sls-vserv-bd-01{{ agebd_env_suffix }}
ioc_host: sls-vserv-bd-01{{ agebd_env_suffix_lower }}
ioc_port: {{ ioc_port }}
os: RHEL8
os_id: rhel
@@ -1,4 +1,4 @@
file SHIFTTOOL.template {
pattern { DEVICE }
{ AGEBD-SHIFTTOOL{{ agebd_env_suffix }} }
{ AGEBD-SHIFTTOOL{{ agebd_env_suffix_upper }} }
}
@@ -1,6 +1,6 @@
cpu_architecture: x86_64
epics_version: 7.0.8
ioc_host: sls-vserv-bd-01{{ agebd_env_suffix }}
ioc_host: sls-vserv-bd-01{{ agebd_env_suffix_lower }}
ioc_port: {{ ioc_port }}
os: RHEL8
os_id: rhel
@@ -1,4 +1,4 @@
file TAUBPM.template {
pattern { DEVICE }
{ AGEBD-TAUBPM{{ agebd_env_suffix }} }
{ AGEBD-TAUBPM{{ agebd_env_suffix_upper }} }
}
@@ -1,6 +1,6 @@
cpu_architecture: x86_64
epics_version: 7.0.8
ioc_host: sls-vserv-bd-01{{ agebd_env_suffix }}
ioc_host: sls-vserv-bd-01{{ agebd_env_suffix_lower }}
ioc_port: {{ ioc_port }}
os: RHEL8
os_id: rhel
@@ -1,4 +1,4 @@
file TAUPCT.template {
pattern { DEVICE }
{ AGEBD-TAUPCT{{ agebd_env_suffix }} }
{ AGEBD-TAUPCT{{ agebd_env_suffix_upper }} }
}
@@ -1,6 +1,6 @@
cpu_architecture: x86_64
epics_version: 7.0.8
ioc_host: sls-vserv-bd-01{{ agebd_env_suffix }}
ioc_host: sls-vserv-bd-01{{ agebd_env_suffix_lower }}
ioc_port: {{ ioc_port }}
os: RHEL8
os_id: rhel
@@ -1,4 +1,4 @@
file TIMING.template {
pattern { DEVICE }
{ AGEBD-TIMING{{ agebd_env_suffix }} }
{ AGEBD-TIMING{{ agebd_env_suffix_upper }} }
}
@@ -1,6 +1,6 @@
cpu_architecture: x86_64
epics_version: 7.0.8
ioc_host: sls-vserv-bd-01{{ agebd_env_suffix }}
ioc_host: sls-vserv-bd-01{{ agebd_env_suffix_lower }}
ioc_port: {{ ioc_port }}
os: RHEL8
os_id: rhel
@@ -1,4 +1,4 @@
file TOPUPTOOL.template {
pattern { DEVICE }
{ AGEBD-TOPUPTOOL{{ agebd_env_suffix }} }
{ AGEBD-TOPUPTOOL{{ agebd_env_suffix_upper }} }
}
@@ -1,6 +1,6 @@
cpu_architecture: x86_64
epics_version: 7.0.8
ioc_host: sls-vserv-bd-01{{ agebd_env_suffix }}
ioc_host: sls-vserv-bd-01{{ agebd_env_suffix_lower }}
ioc_port: {{ ioc_port }}
os: RHEL8
os_id: rhel
@@ -1,4 +1,4 @@
file TUNE.template {
pattern { DEVICE }
{ AGEBD-TUNE{{ agebd_env_suffix }} }
{ AGEBD-TUNE{{ agebd_env_suffix_upper }} }
}
@@ -1,6 +1,6 @@
cpu_architecture: x86_64
epics_version: 7.0.8
ioc_host: sls-vserv-bd-01{{ agebd_env_suffix }}
ioc_host: sls-vserv-bd-01{{ agebd_env_suffix_lower }}
ioc_port: {{ ioc_port }}
os: RHEL8
os_id: rhel
@@ -1,4 +1,4 @@
file TUNEBUMP.template {
pattern { DEVICE }
{ AGEBD-TUNEBUMP{{ agebd_env_suffix }} }
{ AGEBD-TUNEBUMP{{ agebd_env_suffix_upper }} }
}
@@ -1,6 +1,6 @@
cpu_architecture: x86_64
epics_version: 7.0.8
ioc_host: sls-vserv-bd-01{{ agebd_env_suffix }}
ioc_host: sls-vserv-bd-01{{ agebd_env_suffix_lower }}
ioc_port: {{ ioc_port }}
os: RHEL8
os_id: rhel
@@ -1,4 +1,4 @@
file TUNEFBX.template {
pattern { DEVICE }
{ AGEBD-TUNEFBX{{ agebd_env_suffix }} }
{ AGEBD-TUNEFBX{{ agebd_env_suffix_upper }} }
}
@@ -1,6 +1,6 @@
cpu_architecture: x86_64
epics_version: 7.0.8
ioc_host: sls-vserv-bd-01{{ agebd_env_suffix }}
ioc_host: sls-vserv-bd-01{{ agebd_env_suffix_lower }}
ioc_port: {{ ioc_port }}
os: RHEL8
os_id: rhel
@@ -1,4 +1,4 @@
file TUNEFBY.template {
pattern { DEVICE }
{ AGEBD-TUNEFBY{{ agebd_env_suffix }} }
{ AGEBD-TUNEFBY{{ agebd_env_suffix_upper }} }
}
@@ -1,6 +1,6 @@
cpu_architecture: x86_64
epics_version: 7.0.8
ioc_host: sls-vserv-bd-01{{ agebd_env_suffix }}
ioc_host: sls-vserv-bd-01{{ agebd_env_suffix_lower }}
ioc_port: {{ ioc_port }}
os: RHEL8
os_id: rhel
+4 -4
View File
@@ -30,7 +30,7 @@
<number>0</number>
</property>
<property name="channel" stdset="0">
<string>AGEBD-{{ service_name_upper }}$(AGEBD_ENV_SUFFIX):AO</string>
<string>AGEBD-{{ service_name_upper }}{{ '{{ agebd_env_suffix_upper }}' }}:AO</string>
</property>
<property name="maxValue">
<double>9.000000000000000</double>
@@ -49,10 +49,10 @@
</rect>
</property>
<property name="text">
<string>Toggle AGEBD-ALH$(AGEBD_ENV_SUFFIX):{{ service_name_upper }}-ONOFF</string>
<string>Toggle AGEBD-ALH{{ '{{ agebd_env_suffix_upper }}' }}:{{ service_name_upper }}-ONOFF</string>
</property>
<property name="channel" stdset="0">
<string>AGEBD-ALH$(AGEBD_ENV_SUFFIX):{{ service_name_upper }}-ONOFF</string>
<string>AGEBD-ALH{{ '{{ agebd_env_suffix_upper }}' }}:{{ service_name_upper }}-ONOFF</string>
</property>
</widget>
<widget class="QLabel" name="label">
@@ -70,7 +70,7 @@
</font>
</property>
<property name="text">
<string>Value of AGEBD-{{ service_name_upper }}$(AGEBD_ENV_SUFFIX):AO</string>
<string>Value of AGEBD-{{ service_name_upper }}{{ '{{ agebd_env_suffix_upper }}' }}:AO</string>
</property>
</widget>
</widget>
@@ -1,4 +1,4 @@
file {{ service_name_upper }}.template {
pattern { DEVICE }
{ AGEBD-{{ service_name_upper }}{{ '{{ agebd_env_suffix }}' }} }
{ AGEBD-{{ service_name_upper }}{{ '{{ agebd_env_suffix_upper }}' }} }
}
@@ -1,6 +1,6 @@
cpu_architecture: x86_64
epics_version: 7.0.8
ioc_host: sls-vserv-bd-01{{ '{{ agebd_env_suffix }}' }}
ioc_host: sls-vserv-bd-01{{ '{{ agebd_env_suffix_lower }}' }}
ioc_port: {{ '{{ ioc_port }}' }}
os: RHEL8
os_id: rhel