diff --git a/examples/SOLEIL_examples/01-SOLEIL_II_tune_example.ipynb b/examples/SOLEIL_examples/01-SOLEIL_II_tune_example.ipynb new file mode 100644 index 0000000..8fa8de6 --- /dev/null +++ b/examples/SOLEIL_examples/01-SOLEIL_II_tune_example.ipynb @@ -0,0 +1,755 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 3, + "id": "11bf6fa5-1b3c-4283-a4bc-cb27bac2e988", + "metadata": {}, + "outputs": [], + "source": [ + "import os\n", + "\n", + "import matplotlib.pyplot as plt\n", + "import numpy as np\n", + "\n", + "from pyaml.accelerator import Accelerator\n", + "from pyaml.common.constants import ACTION_MEASURE\n", + "from pyaml.configuration.factory import Factory\n", + "from pyaml.magnet.magnet import Magnet" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "id": "5a5aa924-ffcd-4aba-a0c2-fb9e4955eb58", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "30 Jan% 2026, 17:48:28 | WARNING | PyAML Tango control system binding (0.3.3) initialized with name 'live' and TANGO_HOST=localhost:11000\n" + ] + } + ], + "source": [ + "sr = Accelerator.load(\"p.yaml\")\n", + "# This is a fix to be able to load multiple times.\n", + "# This will be fixed after pyAML workshop\n", + "Factory.clear()\n", + "# sr.design.get_lattice().disable_6d()" + ] + }, + { + "cell_type": "markdown", + "id": "74299a03-49fe-4efe-a66b-3e21bc9feb05", + "metadata": {}, + "source": [ + "For the live control mode, you should have some control system emulation runing. It is possible to do \n", + "```\n", + "apptainer pull virtual-accelerator.sif oras://gitlab-registry.synchrotron-soleil.fr/software-control-system/containers/apptainer/virtual-accelerator:latest\n", + "apptainer run virtual-accelerator.sif\n", + "```\n", + "this will run SOLEIL II proof-of-concept digital twin on localhost:11000. You can play with the digital twin itself (without pyAML) via jive to check that everything is working. You can run jive in a different terminal with \n", + "```\n", + "apptainer pull jive.sif https://gitlab.synchrotron-soleil.fr/api/v4/projects/2739/packages/generic/jive/latest/jive.sif\n", + "apptainer run jive.sif\n", + "```\n", + "On linux you may need additionally to configure X11\n", + "```\n", + "export DISPLAY=:0\n", + "xhost +local:root\n", + "```\n", + "\n", + "NOTE: This is just a demonstration of pyAML functionality. Certain things may be done stupidly. The person who wrote this jupyter notebook only cared about showing that the code is working, not about intelligently controlling the accelerator." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "76146150-cfad-4579-9789-29da1bd766fa", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": 5, + "id": "4316ad34-f146-442f-9250-8a750cf6f562", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "TangoControlSystem(name='live', tango_host='localhost:11000', debug_level=None, lazy_devices=True, scalar_aggregator='tango.pyaml.multi_attribute', vector_aggregator=None, timeout_ms=3000)" + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "control_mode = sr.live\n", + "control_mode" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "id": "9881f93b-68c1-41c9-b67d-0db5f9f4571c", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[0.21451629 0.30517208]\n" + ] + }, + { + "data": { + "text/plain": [ + "BetatronTuneMonitor(peer='TangoControlSystem:live', name='BETATRON_TUNE', lattice_names=None, tune_h=AttributeReadOnly(attribute='simulator/ringsimulator/ringsimulator/Tune_h', unit='', range=None), tune_v=AttributeReadOnly(attribute='simulator/ringsimulator/ringsimulator/Tune_v', unit='', range=None))" + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "tune_monitor = control_mode.get_betatron_tune_monitor(\"BETATRON_TUNE\")\n", + "print(tune_monitor.tune.get())\n", + "tune_monitor" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "id": "49e98106-dcd3-41f3-861a-a5bdac997ec9", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The ring has 208 quadrupolar correctors. The first one is named QCORR_001 (lattice name).\n" + ] + }, + { + "data": { + "text/plain": [ + "Quadrupole(peer='TangoControlSystem:live', name='QCORR_001', model_name='QCORR_001', magnet_model=IdentityMagnetModel(powerconverter=None, physics=Attribute(attribute='AN01-AR/EM-COR/CQLN.03/strength', unit='1/m', range=None), unit='1/m'))" + ] + }, + "execution_count": 9, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "qcorrectors = control_mode.get_magnets(\"QCORR\")\n", + "first_qcorrector = qcorrectors[0]\n", + "print(\n", + " f\"The ring has {len(qcorrectors)} quadrupolar correctors. \"\n", + " f\"The first one is named {first_qcorrector.get_name()} (lattice name).\"\n", + ")\n", + "qcorrectors[0] # String representation of the first corrector" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "0b945d5d-09c9-48eb-a1e9-a8dbec2e76b8", + "metadata": {}, + "outputs": [], + "source": [ + "# qcorrectors[0].strength.set(0.2)\n", + "qcorrectors[0].strength.get()" + ] + }, + { + "cell_type": "markdown", + "id": "fda45408-f7c2-4bc0-a985-55fab65b6307", + "metadata": {}, + "source": [ + "### Standard tuning tool for tune correction" + ] + }, + { + "cell_type": "code", + "execution_count": 43, + "id": "78ea33ac-fc9d-4943-bdde-694e5f8ce3cf", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "Tune(peer='TangoControlSystem:live', name='DEFAULT_TUNE_CORRECTION', lattice_names=None, quad_array='QCORR', betatron_tune='BETATRON_TUNE', delta=0.001)" + ] + }, + "execution_count": 43, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "tune_correction = control_mode.get_tune_tuning(\"DEFAULT_TUNE_CORRECTION\")\n", + "\n", + "tune_correction" + ] + }, + { + "cell_type": "markdown", + "id": "d5abc174-b21c-4407-89a5-a2ef3f3f5121", + "metadata": {}, + "source": [ + "Let's try to set the tune using the tune correction tool." + ] + }, + { + "cell_type": "code", + "execution_count": 44, + "id": "e848371d-90d5-4bbe-a034-66eb21d39d0c", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "We've got an error saying: TuneResponse.correct(): no matrix loaded or measured\n" + ] + } + ], + "source": [ + "from pyaml import PyAMLException\n", + "\n", + "try:\n", + " tune_correction.set([0.21, 0.31])\n", + "except PyAMLException as e:\n", + " print(f\"We've got an error saying: {e}\")" + ] + }, + { + "cell_type": "code", + "execution_count": 45, + "id": "72bcf013-c4a6-4695-9029-b899a53753bd", + "metadata": {}, + "outputs": [], + "source": [ + "def tune_callback(step: int, action: int, m: Magnet, dtune: np.array):\n", + " if action == ACTION_MEASURE:\n", + " # On action measure, the measured dq / dk is passed as argument\n", + " print(f\"Tune response: #{step} {m.get_name()}\")\n", + " return True" + ] + }, + { + "cell_type": "markdown", + "id": "8c2eef19-8fdb-4297-99aa-3be44f78085b", + "metadata": {}, + "source": [ + "It is not possible to do so without measuring the response matrix (or loading it from a file). In the properties of the tune_correction we can find TuneResponse object." + ] + }, + { + "cell_type": "code", + "execution_count": 46, + "id": "d4712e98-a75a-41ae-8d11-18c3bee23a2a", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Tune response: #0 QCORR_001 [0. 0.]\n", + "Tune response: #1 QCORR_002 [ 0.14108408 -1.12654246]\n", + "Tune response: #2 QCORR_003 [ 0.12505253 -0.33585068]\n", + "Tune response: #3 QCORR_004 [ 0.12505253 -0.33585068]\n", + "Tune response: #4 QCORR_005 [ 0.12510871 -0.33496161]\n", + "Tune response: #5 QCORR_006 [ 0.12180106 -0.33812008]\n", + "Tune response: #6 QCORR_007 [ 0.12180106 -0.33812008]\n", + "Tune response: #7 QCORR_008 [ 0.12486034 -0.33514531]\n", + "Tune response: #8 QCORR_009 [ 0.12493914 -0.33546973]\n", + "Tune response: #9 QCORR_010 [ 0.12493914 -0.33546973]\n", + "Tune response: #10 QCORR_011 [ 0.12507861 -0.33620251]\n", + "Tune response: #11 QCORR_012 [ 0.12507861 -0.33620251]\n", + "Tune response: #12 QCORR_013 [ 0.25206877 -0.43354454]\n", + "Tune response: #13 QCORR_014 [ 0.12486482 -0.3361889 ]\n", + "Tune response: #14 QCORR_015 [ 0.12486482 -0.3361889 ]\n", + "Tune response: #15 QCORR_016 [ 0.12488068 -0.33530978]\n", + "Tune response: #16 QCORR_017 [ 0.12488068 -0.33530978]\n", + "Tune response: #17 QCORR_018 [ 0.23383542 -0.39128504]\n", + "Tune response: #18 QCORR_019 [ 0.51255924 -0.19282991]\n", + "Tune response: #19 QCORR_020 [ 0.51255924 -0.19282991]\n", + "Tune response: #20 QCORR_021 [ 0.23343669 -0.39127821]\n", + "Tune response: #21 QCORR_022 [ 0.23343669 -0.39127821]\n", + "Tune response: #22 QCORR_023 [ 0.12497345 -0.33484196]\n", + "Tune response: #23 QCORR_024 [ 0.12488524 -0.33536238]\n", + "Tune response: #24 QCORR_025 [ 0.12488524 -0.33536238]\n", + "Tune response: #25 QCORR_026 [ 0.12182225 -0.33964499]\n", + "Tune response: #26 QCORR_027 [ 0.1218687 -0.33962235]\n", + "Tune response: #27 QCORR_028 [ 0.1218687 -0.33962235]\n", + "Tune response: #28 QCORR_029 [ 0.12493511 -0.33523312]\n", + "Tune response: #29 QCORR_030 [ 0.12503031 -0.33476602]\n", + "Tune response: #30 QCORR_031 [ 0.12503031 -0.33476602]\n", + "Tune response: #31 QCORR_032 [ 0.23336101 -0.39139181]\n", + "Tune response: #32 QCORR_033 [ 0.23336101 -0.39139181]\n", + "Tune response: #33 QCORR_034 [ 0.51252458 -0.19277802]\n", + "Tune response: #34 QCORR_035 [ 0.51252458 -0.19277802]\n", + "Tune response: #35 QCORR_036 [ 0.12511647 -0.33515216]\n", + "Tune response: #36 QCORR_037 [ 0.12511647 -0.33515216]\n", + "Tune response: #37 QCORR_038 [ 0.12502361 -0.33614403]\n", + "Tune response: #38 QCORR_039 [ 0.12502361 -0.33614403]\n", + "Tune response: #39 QCORR_040 [ 0.23402823 -0.4194154 ]\n", + "Tune response: #40 QCORR_041 [ 0.23402823 -0.4194154 ]\n", + "Tune response: #41 QCORR_042 [ 0.12510591 -0.33619876]\n", + "Tune response: #42 QCORR_043 [ 0.12510591 -0.33619876]\n", + "Tune response: #43 QCORR_044 [ 0.12499713 -0.33534286]\n", + "Tune response: #44 QCORR_045 [ 0.12499713 -0.33534286]\n", + "Tune response: #45 QCORR_046 [ 0.12166254 -0.33815458]\n", + "Tune response: #46 QCORR_047 [ 0.12174441 -0.33810939]\n", + "Tune response: #47 QCORR_048 [ 0.12174441 -0.33810939]\n", + "Tune response: #48 QCORR_049 [ 0.12508502 -0.33508485]\n", + "Tune response: #49 QCORR_050 [ 0.12508502 -0.33508485]\n", + "Tune response: #50 QCORR_051 [ 0.12509343 -0.33612616]\n", + "Tune response: #51 QCORR_052 [ 0.08213163 -0.63877597]\n", + "Tune response: #52 QCORR_053 [ 0.08213163 -0.63877597]\n", + "Tune response: #53 QCORR_054 [ 0.12487347 -0.33435006]\n", + "Tune response: #54 QCORR_055 [ 0.12508113 -0.33443308]\n", + "Tune response: #55 QCORR_056 [ 0.12508113 -0.33443308]\n", + "Tune response: #56 QCORR_057 [ 0.1250788 -0.33544094]\n", + "Tune response: #57 QCORR_058 [ 0.1250788 -0.33544094]\n", + "Tune response: #58 QCORR_059 [ 0.12175333 -0.33999157]\n", + "Tune response: #59 QCORR_060 [ 0.12504199 -0.33577816]\n", + "Tune response: #60 QCORR_061 [ 0.12504199 -0.33577816]\n", + "Tune response: #61 QCORR_062 [ 0.12490695 -0.33464769]\n", + "Tune response: #62 QCORR_063 [ 0.12490695 -0.33464769]\n", + "Tune response: #63 QCORR_064 [ 0.2341997 -0.4173644]\n", + "Tune response: #64 QCORR_065 [ 0.23443821 -0.4174748 ]\n", + "Tune response: #65 QCORR_066 [ 0.23443821 -0.4174748 ]\n", + "Tune response: #66 QCORR_067 [ 0.12485773 -0.33502301]\n", + "Tune response: #67 QCORR_068 [ 0.12490317 -0.33603245]\n", + "Tune response: #68 QCORR_069 [ 0.12490317 -0.33603245]\n", + "Tune response: #69 QCORR_070 [ 0.23361061 -0.3932912 ]\n", + "Tune response: #70 QCORR_071 [ 0.23361061 -0.3932912 ]\n", + "Tune response: #71 QCORR_072 [ 0.51236801 -0.19310038]\n", + "Tune response: #72 QCORR_073 [ 0.23377253 -0.39230062]\n", + "Tune response: #73 QCORR_074 [ 0.23377253 -0.39230062]\n", + "Tune response: #74 QCORR_075 [ 0.12484581 -0.33649738]\n", + "Tune response: #75 QCORR_076 [ 0.12484581 -0.33649738]\n", + "Tune response: #76 QCORR_077 [ 0.12491847 -0.33521705]\n", + "Tune response: #77 QCORR_078 [ 0.12491847 -0.33521705]\n", + "Tune response: #78 QCORR_079 [ 0.12185943 -0.33780197]\n", + "Tune response: #79 QCORR_080 [ 0.12185943 -0.33780197]\n", + "Tune response: #80 QCORR_081 [ 0.12509877 -0.33475004]\n", + "Tune response: #81 QCORR_082 [ 0.12509302 -0.33596782]\n", + "Tune response: #82 QCORR_083 [ 0.12509302 -0.33596782]\n", + "Tune response: #83 QCORR_084 [ 0.23344347 -0.39309272]\n", + "Tune response: #84 QCORR_085 [ 0.23344347 -0.39309272]\n", + "Tune response: #85 QCORR_086 [ 0.5118344 -0.1933526]\n", + "Tune response: #86 QCORR_087 [ 0.5118344 -0.1933526]\n", + "Tune response: #87 QCORR_088 [ 0.12500307 -0.3368262 ]\n", + "Tune response: #88 QCORR_089 [ 0.12509966 -0.33676465]\n", + "Tune response: #89 QCORR_090 [ 0.12509966 -0.33676465]\n", + "Tune response: #90 QCORR_091 [ 0.12497516 -0.33542715]\n", + "Tune response: #91 QCORR_092 [ 0.12497516 -0.33542715]\n", + "Tune response: #92 QCORR_093 [ 0.25209882 -0.43242744]\n", + "Tune response: #93 QCORR_094 [ 0.12501387 -0.33442674]\n", + "Tune response: #94 QCORR_095 [ 0.12501387 -0.33442674]\n", + "Tune response: #95 QCORR_096 [ 0.12510526 -0.33461475]\n", + "Tune response: #96 QCORR_097 [ 0.12510526 -0.33461475]\n", + "Tune response: #97 QCORR_098 [ 0.12183786 -0.33961149]\n", + "Tune response: #98 QCORR_099 [ 0.12164935 -0.33985299]\n", + "Tune response: #99 QCORR_100 [ 0.12164935 -0.33985299]\n", + "Tune response: #100 QCORR_101 [ 0.12490289 -0.33599354]\n", + "Tune response: #101 QCORR_102 [ 0.12490289 -0.33599354]\n", + "Tune response: #102 QCORR_103 [ 0.12484849 -0.3351305 ]\n", + "Tune response: #103 QCORR_104 [ 0.14119285 -1.1206593 ]\n", + "Tune response: #104 QCORR_105 [ 0.14119285 -1.1206593 ]\n", + "Tune response: #105 QCORR_106 [ 0.12491291 -0.33451437]\n", + "Tune response: #106 QCORR_107 [ 0.12491291 -0.33451437]\n", + "Tune response: #107 QCORR_108 [ 0.12503198 -0.33442538]\n", + "Tune response: #108 QCORR_109 [ 0.12503198 -0.33442538]\n", + "Tune response: #109 QCORR_110 [ 0.12187792 -0.33943611]\n", + "Tune response: #110 QCORR_111 [ 0.12187792 -0.33943611]\n", + "Tune response: #111 QCORR_112 [ 0.12500107 -0.33626925]\n", + "Tune response: #112 QCORR_113 [ 0.12500107 -0.33626925]\n", + "Tune response: #113 QCORR_114 [ 0.12486868 -0.33616703]\n", + "Tune response: #114 QCORR_115 [ 0.1249361 -0.3350045]\n", + "Tune response: #115 QCORR_116 [ 0.1249361 -0.3350045]\n", + "Tune response: #116 QCORR_117 [ 0.25223 -0.43103031]\n", + "Tune response: #117 QCORR_118 [ 0.12500054 -0.33465988]\n", + "Tune response: #118 QCORR_119 [ 0.12500054 -0.33465988]\n", + "Tune response: #119 QCORR_120 [ 0.12487841 -0.3346831 ]\n", + "Tune response: #120 QCORR_121 [ 0.12489421 -0.33525374]\n", + "Tune response: #121 QCORR_122 [ 0.12495742 -0.3355479 ]\n", + "Tune response: #122 QCORR_123 [ 0.23366606 -0.39309083]\n", + "Tune response: #123 QCORR_124 [ 0.51212292 -0.19372257]\n", + "Tune response: #124 QCORR_125 [ 0.5122022 -0.19266529]\n", + "Tune response: #125 QCORR_126 [ 0.23369959 -0.39138518]\n", + "Tune response: #126 QCORR_127 [ 0.12497853 -0.33618062]\n", + "Tune response: #127 QCORR_128 [ 0.12487123 -0.33639981]\n", + "Tune response: #128 QCORR_129 [ 0.12495812 -0.33595205]\n", + "Tune response: #129 QCORR_130 [ 0.12495812 -0.33595205]\n", + "Tune response: #130 QCORR_131 [ 0.12169248 -0.3385926 ]\n", + "Tune response: #131 QCORR_132 [ 0.12186534 -0.33823447]\n", + "Tune response: #132 QCORR_133 [ 0.12500284 -0.3340644 ]\n", + "Tune response: #133 QCORR_134 [ 0.12506427 -0.3342082 ]\n", + "Tune response: #134 QCORR_135 [ 0.12508284 -0.3351985 ]\n", + "Tune response: #135 QCORR_136 [ 0.12495217 -0.3356052 ]\n", + "Tune response: #136 QCORR_137 [ 0.23341791 -0.39318205]\n", + "Tune response: #137 QCORR_138 [ 0.51168968 -0.19370972]\n", + "Tune response: #138 QCORR_139 [ 0.51199391 -0.1929018 ]\n", + "Tune response: #139 QCORR_140 [ 0.12503133 -0.33670963]\n", + "Tune response: #140 QCORR_141 [ 0.12503133 -0.33670963]\n", + "Tune response: #141 QCORR_142 [ 0.12506241 -0.33691474]\n", + "Tune response: #142 QCORR_143 [ 0.12509425 -0.33659454]\n", + "Tune response: #143 QCORR_144 [ 0.12494441 -0.33621135]\n", + "Tune response: #144 QCORR_145 [ 0.23420334 -0.41930918]\n", + "Tune response: #145 QCORR_146 [ 0.23420334 -0.41930918]\n", + "Tune response: #146 QCORR_147 [ 0.12503771 -0.33494526]\n", + "Tune response: #147 QCORR_148 [ 0.12508448 -0.33416002]\n", + "Tune response: #148 QCORR_149 [ 0.12508448 -0.33416002]\n", + "Tune response: #149 QCORR_150 [ 0.12179816 -0.33887895]\n", + "Tune response: #150 QCORR_151 [ 0.12179816 -0.33887895]\n", + "Tune response: #151 QCORR_152 [ 0.12488236 -0.33628702]\n", + "Tune response: #152 QCORR_153 [ 0.12488236 -0.33628702]\n", + "Tune response: #153 QCORR_154 [ 0.12487956 -0.33591298]\n", + "Tune response: #154 QCORR_155 [ 0.12487956 -0.33591298]\n", + "Tune response: #155 QCORR_156 [ 0.08218439 -0.63584414]\n", + "Tune response: #156 QCORR_157 [ 0.08218439 -0.63584414]\n", + "Tune response: #157 QCORR_158 [ 0.12500294 -0.33566578]\n", + "Tune response: #158 QCORR_159 [ 0.12500294 -0.33566578]\n", + "Tune response: #159 QCORR_160 [ 0.12511587 -0.33460896]\n", + "Tune response: #160 QCORR_161 [ 0.12511587 -0.33460896]\n", + "Tune response: #161 QCORR_162 [ 0.12185797 -0.33836285]\n", + "Tune response: #162 QCORR_163 [ 0.12185797 -0.33836285]\n", + "Tune response: #163 QCORR_164 [ 0.12490003 -0.33560632]\n", + "Tune response: #164 QCORR_165 [ 0.12490003 -0.33560632]\n", + "Tune response: #165 QCORR_166 [ 0.12483268 -0.33611606]\n", + "Tune response: #166 QCORR_167 [ 0.12483268 -0.33611606]\n", + "Tune response: #167 QCORR_168 [ 0.23444444 -0.41818123]\n", + "Tune response: #168 QCORR_169 [ 0.23422042 -0.41936039]\n", + "Tune response: #169 QCORR_170 [ 0.23422042 -0.41936039]\n", + "Tune response: #170 QCORR_171 [ 0.1248976 -0.33572379]\n", + "Tune response: #171 QCORR_172 [ 0.12484674 -0.33507633]\n", + "Tune response: #172 QCORR_173 [ 0.12505951 -0.33500042]\n", + "Tune response: #173 QCORR_174 [ 0.12505951 -0.33500042]\n", + "Tune response: #174 QCORR_175 [ 0.51252021 -0.19308975]\n", + "Tune response: #175 QCORR_176 [ 0.51252021 -0.19308975]\n", + "Tune response: #176 QCORR_177 [ 0.23353724 -0.39105368]\n", + "Tune response: #177 QCORR_178 [ 0.23353724 -0.39105368]\n", + "Tune response: #178 QCORR_179 [ 0.12491251 -0.33526429]\n", + "Tune response: #179 QCORR_180 [ 0.12491251 -0.33526429]\n", + "Tune response: #180 QCORR_181 [ 0.1250613 -0.33586471]\n", + "Tune response: #181 QCORR_182 [ 0.1250613 -0.33586471]\n", + "Tune response: #182 QCORR_183 [ 0.12190521 -0.33934169]\n", + "Tune response: #183 QCORR_184 [ 0.12190521 -0.33934169]\n", + "Tune response: #184 QCORR_185 [ 0.12499461 -0.33478587]\n", + "Tune response: #185 QCORR_186 [ 0.12499461 -0.33478587]\n", + "Tune response: #186 QCORR_187 [ 0.12485442 -0.33477016]\n", + "Tune response: #187 QCORR_188 [ 0.12485442 -0.33477016]\n", + "Tune response: #188 QCORR_189 [ 0.51140121 -0.19316921]\n", + "Tune response: #189 QCORR_190 [ 0.51140121 -0.19316921]\n", + "Tune response: #190 QCORR_191 [ 0.23373849 -0.39115692]\n", + "Tune response: #191 QCORR_192 [ 0.23373849 -0.39115692]\n", + "Tune response: #192 QCORR_193 [ 0.12511929 -0.33556909]\n", + "Tune response: #193 QCORR_194 [ 0.12508065 -0.33647682]\n", + "Tune response: #194 QCORR_195 [ 0.1248522 -0.33648323]\n", + "Tune response: #195 QCORR_196 [ 0.1248522 -0.33648323]\n", + "Tune response: #196 QCORR_197 [ 0.2523843 -0.43337695]\n", + "Tune response: #197 QCORR_198 [ 0.2523843 -0.43337695]\n", + "Tune response: #198 QCORR_199 [ 0.12495199 -0.33575267]\n", + "Tune response: #199 QCORR_200 [ 0.12495199 -0.33575267]\n", + "Tune response: #200 QCORR_201 [ 0.12505672 -0.33487426]\n", + "Tune response: #201 QCORR_202 [ 0.12169879 -0.33815934]\n", + "Tune response: #202 QCORR_203 [ 0.12169879 -0.33815934]\n", + "Tune response: #203 QCORR_204 [ 0.1248285 -0.33525018]\n", + "Tune response: #204 QCORR_205 [ 0.1248285 -0.33525018]\n", + "Tune response: #205 QCORR_206 [ 0.12493812 -0.33615742]\n", + "Tune response: #206 QCORR_207 [ 0.12511898 -0.33617475]\n", + "Tune response: #207 QCORR_208 [ 0.12511898 -0.33617475]\n", + "CPU times: user 764 ms, sys: 199 ms, total: 962 ms\n", + "Wall time: 5min 12s\n" + ] + } + ], + "source": [ + "%%time\n", + "tune_correction.response.measure(callback=tune_callback, set_wait_time=1.5)" + ] + }, + { + "cell_type": "markdown", + "id": "2c746dcf-c05f-4e5b-88cb-f4680e9dde18", + "metadata": {}, + "source": [ + "The correction matrix can be saved to a file (and added to the configuration file)." + ] + }, + { + "cell_type": "code", + "execution_count": 55, + "id": "f2a78f30-9576-4ad3-bf9b-3f2233487a92", + "metadata": {}, + "outputs": [], + "source": [ + "tune_correction.response.save_json(\"tune_response_matrix_live.json\")\n", + "# tune_correction.response.load_json('tune_response_matrix.json')" + ] + }, + { + "cell_type": "code", + "execution_count": 56, + "id": "40357e20-93d4-40b8-899c-b93a70378af6", + "metadata": {}, + "outputs": [], + "source": [ + "tune_correction.set([0.21, 0.31], iter=10, wait_time=1.2)" + ] + }, + { + "cell_type": "code", + "execution_count": 57, + "id": "bdac5596-9b18-42a7-9670-1a2c825a25b0", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[0.21001973 0.30977679]\n", + "TangoControlSystem:live\n" + ] + }, + { + "data": { + "text/plain": [ + "Tune(peer='TangoControlSystem:live', name='DEFAULT_TUNE_CORRECTION', lattice_names=None, quad_array='QCORR', betatron_tune='BETATRON_TUNE', delta=0.001)" + ] + }, + "execution_count": 57, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "print(tune_correction.readback())\n", + "print(tune_correction.get_peer())\n", + "tune_correction" + ] + }, + { + "cell_type": "code", + "execution_count": 58, + "id": "7958146e-d159-46ab-949a-e020e966a856", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "array([0.21001973, 0.30977679])" + ] + }, + "execution_count": 58, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "tune_monitor.tune.get()" + ] + }, + { + "cell_type": "markdown", + "id": "5f329b6f-2923-425a-85eb-89a934fa90e6", + "metadata": {}, + "source": [ + "It is also possible instead of measuring to load the file of a response matrix" + ] + }, + { + "cell_type": "code", + "execution_count": 59, + "id": "d0d7b41e-a8c3-4186-af18-c196dc86cd0d", + "metadata": {}, + "outputs": [], + "source": [ + "# tune_correction.response.load_json('tune_response_matrix_live.json')" + ] + }, + { + "cell_type": "code", + "execution_count": 60, + "id": "50be3687-e087-4e3a-80ec-c71915642bde", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Tune readback is [0.21001973 0.30977679]\n", + "Let's change the tune to qx=0.19, qy=0.28\n", + "Tune readback is [0.18668703 0.26823733]\n", + "Let's change the tune to qx=0.21, qy=0.3\n", + "Tune readback is [0.21768279 0.31389756]\n" + ] + } + ], + "source": [ + "print(f\"Tune readback is {tune_correction.readback()}\")\n", + "qx, qy = 0.19, 0.28\n", + "print(f\"Let's change the tune to {qx=:}, {qy=:}\")\n", + "tune_correction.set([qx, qy], iter=10, wait_time=1.2)\n", + "print(f\"Tune readback is {tune_correction.readback()}\")\n", + "\n", + "qx, qy = 0.21, 0.3\n", + "print(f\"Let's change the tune to {qx=:}, {qy=:}\")\n", + "\n", + "tune_correction.set([qx, qy], iter=10, wait_time=1.2)\n", + "print(f\"Tune readback is {tune_correction.readback()}\")\n", + "\n", + "# You can try to do something stupid too!\n", + "# qx, qy = 0.5, 0.0\n", + "# print(f\"Let's do something stupid and change the tune to {qx=:}, {qy=:}\")\n", + "# tune_correction.set([qx, qy])" + ] + }, + { + "cell_type": "markdown", + "id": "861b7827-5207-4765-9604-380c609303b5", + "metadata": {}, + "source": [ + "### Manual tune correction" + ] + }, + { + "cell_type": "code", + "execution_count": 32, + "id": "d4c743fe-97df-4444-806d-f8c2f1caf613", + "metadata": {}, + "outputs": [], + "source": [ + "control_mode = sr.live" + ] + }, + { + "cell_type": "code", + "execution_count": 33, + "id": "308ec9e2-d204-48dd-b90c-f6713ee15233", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Design tune is [0.21427229 0.30571746]\n", + "Tune in live mode is [0.21427229 0.30571746]\n" + ] + } + ], + "source": [ + "tunemat = np.zeros((len(qcorrectors), 2))\n", + "design_tune = tune_monitor.tune.get()\n", + "print(f\"Design tune is {design_tune}\")\n", + "print(f\"Tune in live mode is {tune_monitor.tune.get()}\")" + ] + }, + { + "cell_type": "code", + "execution_count": 34, + "id": "b01e871b-bcef-4713-bbda-3c12d57894cd", + "metadata": {}, + "outputs": [ + { + "data": { + "application/vnd.jupyter.widget-view+json": { + "model_id": "9845e9f641cf4694afdf4541609cd901", + "version_major": 2, + "version_minor": 0 + }, + "text/plain": [ + " 0%| | 0/208 [00:00" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/plain": [ + "array([1.58878253, 1.63480198])" + ] + }, + "execution_count": 7, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "chromaticity_measurement.measure(\n", + " callback=chroma_callback,\n", + " do_plot=True,\n", + " alphac=alphac,\n", + " fit_order=2,\n", + " N_step=5,\n", + " Sleep_between_meas=2.5,\n", + " Sleep_between_RFvar=2.5,\n", + ")" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.12.3" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/examples/SOLEIL_examples/README.md b/examples/SOLEIL_examples/README.md new file mode 100644 index 0000000..2ecb8dd --- /dev/null +++ b/examples/SOLEIL_examples/README.md @@ -0,0 +1,41 @@ +# Instructions for how to run SOLEIL examples. + +## Install pyAML + +1. Create a virtual environment and activate it. You need to have Python 3.11+. + +2. Install pyAML including the tango-pyaml EPICS bindings. + + ```bash + pip install accelerator-middle-layer[tango-pyaml] + ``` + +## Start the SOLEIL II virtual accelerator + +1. Install [Apptainer](https://apptainer.org/docs/admin/main/installation.html) in case you don't already have it. + +For the live control mode, you should have some control system emulation runing. It is possible to do +``` +apptainer pull virtual-accelerator.sif oras://gitlab-registry.synchrotron-soleil.fr/software-control-system/containers/apptainer/virtual-accelerator:latest +apptainer run virtual-accelerator.sif +``` + +***Keep this terminal running and don't do anything else in it.*** The virtual accelerator will run there and you will be able to interact with it from other terminals, jupyter notebooks, IDEs etc over the network. If you want to put it in the background, using something like tmux would be a good option. + +this will run SOLEIL II proof-of-concept digital twin on localhost:11000. You can play with the digital twin itself (without pyAML) via jive to check that everything is working. You can run jive in a different terminal with +``` +apptainer pull jive.sif https://gitlab.synchrotron-soleil.fr/api/v4/projects/2739/packages/generic/jive/latest/jive.sif +apptainer run jive.sif +``` +On linux you may need additionally to configure X11 +``` +export DISPLAY=:0 +xhost +local:root +``` + +NOTE: This is just a demonstration of pyAML functionality. Certain things may be done stupidly. The person who wrote this jupyter notebook only cared about showing that the code is working, not about intelligently controlling the accelerator. + + + ## Run the examples + + There are three jupyter notebook available with some basic examples. Feel free to play around and modify them. A .yaml configuration file is already provided, it was generated procedurally from the .m lattice file and nomenclature description file. diff --git a/examples/SOLEIL_examples/SOLEIL_II_V3631_V001_database_rf.m b/examples/SOLEIL_examples/SOLEIL_II_V3631_V001_database_rf.m new file mode 100644 index 0000000..18d213c --- /dev/null +++ b/examples/SOLEIL_examples/SOLEIL_II_V3631_V001_database_rf.m @@ -0,0 +1,4249 @@ +function ring = SOLEIL_II_V3631_sym1_V001_database() +ring = {... + atringparam('SOLEIL_II_V3631_sym1_V001_nomenclature_V1_close', 2750000000.0, 1, 'HarmNumber', 416, 'M_File', '/home/habet/Downloads/SOLEIL_II_V3631_sym1_pipe_mult2_V001.m', 'Particle', struct('name', 'relativistic', 'rest_energy', 0.0, 'charge', -1.0), 'RApertures', [-0.015 0.015 -0.0075 0.0075], 'beam_current', 0.0, 'cell_harmnumber', 416.0);... + atmarker('SD01ICENTER', 'RApertures', [-0.015 0.015 -0.0075 0.0075]);... + atdrift('SD1I_1', 1.54332916586002, 'Action', 'BPM', 'RApertures', [-0.015 0.008 -0.0075 0.0075]);... + atmultipole('SD01IKICKER4', 0.3, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Class', 'Octupole', 'RApertures', [-0.015 0.008 -0.0035 0.0035]);... + atdrift('SD1I_2', 0.265, 'Action', 'BPM', 'EApertures', [0.015 0.0035]);... + atmarker('MIKSTART', 'EApertures', [0.015 0.0035]);... + atmultipole('MIK', 0.15, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Class', 'Octupole', 'EApertures', [0.015 0.0035]);... + atdrift('SD1I_3', 0.0500000000000001, 'Action', 'BPM', 'EApertures', [0.015 0.0035]);... + atmultipole('MIK', 0.15, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Class', 'Octupole', 'EApertures', [0.015 0.0035]);... + atdrift('SD1I_4', 0.0500000000000002, 'Action', 'BPM', 'EApertures', [0.015 0.0035]);... + atmultipole('MIK', 0.15, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Class', 'Octupole', 'EApertures', [0.015 0.0035]);... + atdrift('SD1I_5', 0.0499999999999999, 'Action', 'BPM', 'EApertures', [0.015 0.0035]);... + atmultipole('MIK', 0.15, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Class', 'Octupole', 'EApertures', [0.015 0.0035]);... + atdrift('SD1I_6', 0.0500000000000001, 'Action', 'BPM', 'EApertures', [0.015 0.00572222222222222]);... + atmultipole('MIK', 0.15, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Class', 'Octupole', 'EApertures', [0.015 0.0075]);... + atmarker('MIKEND', 'EApertures', [0.015 0.0075]);... + atdrift('SD1I_7', 0.070533215851725, 'Action', 'BPM', 'EApertures', [0.015 0.0075]);... + atmarker('SD01ICOLLIMATORSTART', 'EApertures', [0.015 0.0075]);... + atdrift('SD01ICOLLIMATOR', 0.5, 'RApertures', [-0.015 0.008 -0.0075 0.0075]);... + atmarker('SD01ICOLLIMATOREND', 'EApertures', [0.015 0.0075]);... + atdrift('SD1I_8', 0.0703667841482742, 'Action', 'BPM', 'EApertures', [0.012 0.012]);... + atmarker('VANNE_START', 'EApertures', [0.012 0.012]);... + atdrift('SD1I_9', 0.322, 'Action', 'BPM', 'EApertures', [0.012 0.012]);... + atmarker('FCOR_1_2', 'UUID', 'rJ4jyhBzHRgK5KA');... + atmonitor('BPM', 'EApertures', [0.008 0.008], 'UUID', 'rEInQXsTb5ikehM');... + atmarker('VANNE_END', 'EApertures', [0.008 0.008]);... + atmarker('SD01IEND', 'EApertures', [0.008 0.008]);... + atmarker('AN-C01START', 'EApertures', [0.008 0.008]);... + atmarker('GIRDERSTART', 'EApertures', [0.008 0.008]);... + atsextupole('SH1_COR', 0.075, 180.531158381771, 'Action', 'SxtHarm', 'BoDiameter', 0.021, 'BoGap', 0.0062, 'BoLength', 0.075, 'EApertures', [0.008 0.008], 'KickAngle', [0. 0.], 'UUID', 'EtJmpy6H2l9ceFl');... + atdrift('D022HI', 0.06, 'EApertures', [0.0085 0.0085]);... + atmultipole('OH1_QCORROCT_1_QT', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.021, 'BoGap', 0.00718, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.0085 0.0085], 'MaxOrder', 3, 'UUID', 'K9DCoKC9KdqLgE3');... + atdrift('D031HI', 0.052, 'EApertures', [0.0085 0.0085]);... + atquadrupole('Q1', 0.137671036897098, 9.06658187296726, 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.0085 0.0085], 'UUID', 'SbCUk2oqZDRv1aJ');... + atdrift('D03HI', 0.052, 'EApertures', [0.0085 0.0085]);... + atsextupole('SH2_HCOR', 0.075, -0.0179339928448087, 'Action', 'SxtHarm', 'BoDiameter', 0.021, 'BoGap', 0.0062, 'BoLength', 0.075, 'EApertures', [0.0085 0.0085], 'KickAngle', [0. 0.], 'UUID', 'a8OgqVuDFCiUtHY');... + atdrift('D022HI', 0.06, 'EApertures', [0.0085 0.0085]);... + atmultipole('OH2_QCORROCT_2', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.021, 'BoGap', 0.00718, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.0085 0.0085], 'MaxOrder', 3, 'UUID', 'BJGPCw4ONy98JHU');... + atdrift('D03HI', 0.052, 'EApertures', [0.0085 0.0085]);... + atquadrupole('Q2', 0.190595998125992, -9.58185915782871, 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.18, 'EApertures', [0.0085 0.0085], 'UUID', 'TjIV9Gwi8k61Fwi');... + atdrift('D041HI', 0.118040964330437, 'Action', 'BPM', 'EApertures', [0.0085 0.0085]);... + atmonitor('BPM', 'EApertures', [0.0085 0.0085], 'UUID', 'dOiXIaUSRHg6oUq');... + atsextupole('SH3_VCOR', 0.075, -319.26546309512, 'Action', 'SxtHarm', 'BoDiameter', 0.021, 'BoGap', 0.0062, 'BoLength', 0.075, 'EApertures', [0.0085 0.0085], 'KickAngle', [0. 0.], 'UUID', 'eXLllDUsb1TAaRC');... + atdrift('D022HIQ', 0.048, 'EApertures', [0.0085 0.0085]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.0085 0.0085], 'UUID', 'UwRF50cGEWVOsPz');... + atdrift('D03HIQ', 0.1, 'EApertures', [0.0085 0.0085]);... + atquadrupole('Q3', 0.19168495937003, 8.41314022851464, 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.18, 'EApertures', [0.0085 0.0085], 'UUID', 'q0yZvW42s5qKVgn');... + atdrift('D05HI', 0.00499988833315879, 'EApertures', [0.0085 0.0085]);... + atdrift('LBD1I', 0.0395472975018047, 'EApertures', [0.0085 0.0085]);... + atsbend('BD27', 0.0284984341976272, 0.00225714925227511, -1.18160211440423, 'EApertures', [0.008 0.008], 'UUID', 'U6Bnf69OXT5Ra1K');... + atsbend('BD17', 0.0959771205127194, 0.00913608259524057, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0205293144427562);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524057, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524057, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524057, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'ExitAngle', 0.0205293144427562);... + atsbend('BD27', 0.0284984341976272, 0.00225714925227511, -1.18160211440423, 'EApertures', [0.00772413793103448 0.00772413793103448]);... + atdrift('L03', 0.176061846245862, 'EApertures', [0.006 0.006]);... + atsextupole('SXD11', 0.09, -701.568414672357, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0075, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'RX2c4Al3f5WiGTR');... + atmarker('CROTCH_01_1', 'EApertures', [0.006 0.006]);... + atdrift('L04', 0.111275514615956, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF1_QCORROCT_3_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -800.842486671932], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'RhPmQAOmVVy5gta');... + atdrift('L084', 0.048820499745398, 'EApertures', [0.006 0.006]);... + atsbend('BQ4H7', 0.0577872115264688, -0.000403189428060739, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.000403189428060739, 'UUID', 'MjwqXMZqEu5oOC9');... + atsbend('BQ4H7', 0.0577872115264688, -0.000403189428060739, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'ExitAngle', -0.000403189428060739);... + atdrift('L084', 0.048820499745398, 'EApertures', [0.006 0.006]);... + atsextupole('SXF11_HCOR', 0.12, 831.660252988522, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'NJuzry8yOuLrka9');... + atdrift('L082', 0.0471064301693061, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444583, 'UUID', 'wS0poTZDHxnCyTY');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444583);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'zMkBTupr5sDlkxr');... + atsextupole('SXD11_VCOR', 0.09, -701.568414672357, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'xm0Sm0juaB2IH9Q');... + atdrift('L071', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'yBLIGAGcodwAXPv');... + atmarker('GIRDEREND', 'EApertures', [0.006 0.006]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00766666666666667 0.00766666666666667]);... + atmarker('GIRDERSTART', 'EApertures', [0.008 0.008]);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008], 'UUID', 'z1RLULYBo54WQnh');... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702353, -1.86297299994296, 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0342430714728858);... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702353, -1.86297299994296, 'EApertures', [0.008 0.008], 'ExitAngle', 0.0342430714728858);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008]);... + atmarker('MRSV', 'EApertures', [0.00785 0.00785]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.0076 0.0076]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00715 0.00715], 'UUID', 'tyXQtKtdsSnZGV8');... + atdrift('L071', 0.048, 'EApertures', [0.00665 0.00665]);... + atsextupole('SXD1', 0.09, -688.075994596801, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'kRhDfs8zLjkvA1P');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_01_2', 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444583, 'UUID', 'jLPhvfs1c2gCtcQ');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444583);... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF1_QCORROCT_4_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -800.842486671932], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'sBH4eSukOMrou6I');... + atdrift('L081', 0.06, 'EApertures', [0.006 0.006]);... + atsextupole('SXF1_HCOR', 0.12, 781.382308964691, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'WrCJaRDRB4A3RX2');... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444583, 'UUID', 'CUAmhHP58u0oD3G');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444583);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'k3XgI7p0t0XPcX7');... + atsextupole('SXD1_VCOR', 0.09, -688.075994596801, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'dgK1ooQg2O5cDQQ');... + atdrift('L071', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'Q1i1q312KLWFQL3');... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.0076 0.0076]);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008], 'UUID', 'hlSwsln7F8jzSMM');... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702353, -1.86297299994296, 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0342430714728858);... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702352, -1.86297299994296, 'EApertures', [0.008 0.008], 'ExitAngle', 0.0342430714728858);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008]);... + atmarker('GIRDEREND', 'EApertures', [0.0078974358974359 0.0078974358974359]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00758974358974359 0.00758974358974359]);... + atmarker('GIRDERSTART', 'EApertures', [0.00733333333333333 0.00733333333333333]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00717948717948718 0.00717948717948718], 'UUID', 'TupyBCnExljzFRN');... + atdrift('L071', 0.048, 'EApertures', [0.00666666666666667 0.00666666666666667]);... + atsextupole('SXD1', 0.09, -688.075994596801, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'KSOWmEsQSZg6H8I');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_01_3', 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444582, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444582, 'UUID', 'QhibW4X5s77Q3Oh');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444582, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444582);... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF1_QCORROCT_5_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -800.842486671932], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'boTw9UpneBZXLHK');... + atdrift('L081', 0.06, 'EApertures', [0.006 0.006]);... + atsextupole('SXF13_HCOR', 0.12, 750.901805779491, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'KEYkoINzDKzFIEl');... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsbend('BQ6HC7', 0.0689196396343699, -0.00144054604712974, 8.95984862959226, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00144054604712974, 'UUID', 'rh0vjbDZYHMqxFg');... + atsbend('BQ6HC7', 0.0689196396343699, -0.00144054604712974, 8.95984862959226, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00144054604712974);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'aeRvqfHOj8ZeuqX');... + atsextupole('SXD13_VCOR', 0.09, -689.724579569546, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'z0Y4Odwn9HgjVaQ');... + atdrift('L071C', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'Gpp0uyCRmPBj9wG');... + atdrift('L073C', 0.0430773209057085, 'EApertures', [0.00742857142857143 0.00742857142857143]);... + atsbend('BD3HC7', 0.01, 0.000258818071001969, -1.37551837900507, 'EApertures', [0.008 0.00786363636363636], 'UUID', 'ZFfTpIuf9m6frD0');... + atsbend('BD4HC71', 0.03, 0.00188018240208164, -2.57765200910186, 'EApertures', [0.008 0.00765909090909091], 'EntranceAngle', 0.00982777557557598);... + atsbend('BD4HC7', 0.253621983633988, 0.0158951863469887, -2.57765200910186, 'EApertures', [0.008 0.00629545454545455]);... + atsbend('BD4HC71', 0.03, 0.00188018240208164, -2.57765200910186, 'EApertures', [0.008 0.005], 'ExitAngle', 0.00982777557557598);... + atsbend('BD5HC7', 0.0231155237960032, 0.00240516115877823, 0.0, 'EApertures', [0.008 0.005]);... + atsbend('BD6HC7', 0.0856857672699483, 0.0117810198825822, 0.0, 'EApertures', [0.008 0.005]);... + atsbend('BD6HC7', 0.0856857672699483, 0.0117810198825822, 0.0, 'EApertures', [0.008 0.005]);... + atsbend('BD5HC7', 0.0231155237960032, 0.00240516115877823, 0.0, 'EApertures', [0.008 0.005]);... + atsbend('BD4HC71', 0.03, 0.00188018240208164, -2.57765200910186, 'EApertures', [0.008 0.00518367346938775], 'EntranceAngle', 0.00982777557557598);... + atsbend('BD4HC7', 0.253621983633988, 0.0158951863469887, -2.57765200910186, 'EApertures', [0.008 0.00640816326530612]);... + atsbend('BD4HC71', 0.03, 0.00188018240208164, -2.57765200910186, 'EApertures', [0.008 0.00763265306122449], 'ExitAngle', 0.00982777557557598);... + atsbend('BD3HC7', 0.01, 0.000258818071001969, -1.37551837900507, 'EApertures', [0.008 0.00781632653061225]);... + atdrift('L073C', 0.0430773209057085, 'EApertures', [0.008 0.008]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00739393939393939 0.00739393939393939], 'UUID', 'ad4BDxnmOQDgFfd');... + atdrift('L071C', 0.048, 'EApertures', [0.00678787878787879 0.00678787878787879]);... + atsextupole('SXD13', 0.09, -689.724579569546, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.007, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'R6JXh38AP0acS8W');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_01_4', 'EApertures', [0.006 0.006]);... + atsbend('BQ6HC7', 0.0689196396343699, -0.00144054604712974, 8.95984862959226, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00144054604712974, 'UUID', 'ZEn7pIK8eM7ouQ3');... + atsbend('BQ6HC7', 0.0689196396343699, -0.00144054604712974, 8.95984862959226, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00144054604712974);... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsextupole('SXF13_HCOR', 0.12, 750.901805779491, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'jcESxHoOmWEKk5f');... + atdrift('L081', 0.06, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF1_QCORROCT_6_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -800.842486671932], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'wEe61Rffas88q0b');... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444582, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444582, 'UUID', 'lhwlXraYaVaJCiO');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444582, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444582);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'xyfqrnaWtEyryzx');... + atsextupole('SXD1_VCOR', 0.09, -688.075994596801, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'jP25UZCBHGFOBzJ');... + atdrift('L071', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'AO9qPZOPOkhbtfO');... + atmarker('GIRDEREND', 'EApertures', [0.006 0.006]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00766666666666667 0.00766666666666667]);... + atmarker('GIRDERSTART', 'EApertures', [0.008 0.008]);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008], 'UUID', 'zhYyKmFaQYma4qx');... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702352, -1.86297299994296, 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0342430714728858);... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702353, -1.86297299994296, 'EApertures', [0.008 0.008], 'ExitAngle', 0.0342430714728858);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.0076 0.0076]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00715 0.00715], 'UUID', 'r3xlJUal8F0whNx');... + atdrift('L071', 0.048, 'EApertures', [0.00665 0.00665]);... + atsextupole('SXD1', 0.09, -688.075994596801, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'LfHRrCCscc0OblQ');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_01_5', 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444583, 'UUID', 'cvZgDFIl8UfjevA');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444583);... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsextupole('SXF1_HCOR', 0.12, 781.382308964691, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 't8yEFpX5pkSCPhr');... + atdrift('L081', 0.06, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF1_QCORROCT_7_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -800.842486671932], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'uRnTawulurDcxWj');... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444583, 'UUID', 'OtZrA6K6pGF6cjP');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444583);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'aURljmHyapcniNd');... + atsextupole('SXD1_VCOR', 0.09, -688.075994596801, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'YWx0RUg1Cw1S5w6');... + atdrift('L071', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'L5iYgVCZn1DDx3V');... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00766666666666667 0.00766666666666667]);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008], 'UUID', 'LuWLdiy6W9eqYKy');... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702353, -1.86297299994296, 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0342430714728858);... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702353, -1.86297299994296, 'EApertures', [0.008 0.008], 'ExitAngle', 0.0342430714728858);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008]);... + atmarker('GIRDEREND', 'EApertures', [0.00785 0.00785]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.0076 0.0076]);... + atmarker('GIRDERSTART', 'EApertures', [0.0073 0.0073]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00715 0.00715], 'UUID', 'dopnTg6FFwHh4lz');... + atdrift('L071', 0.048, 'EApertures', [0.00665 0.00665]);... + atsextupole('SXD12', 0.09, -749.191327132338, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'ZQuXNQKwtfahYZg');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_01_6', 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444583, 'UUID', 'd3DYoEZz199wu3d');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444583);... + atdrift('L082', 0.0471064301693061, 'EApertures', [0.006 0.006]);... + atsextupole('SXF12_HCOR', 0.12, 860.065976124029, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'HARKRZWEQ00wvPY');... + atdrift('L084', 0.048820499745398, 'EApertures', [0.006 0.006]);... + atsbend('BQ4H7', 0.0577872115264688, -0.000403189428060739, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.000403189428060739, 'UUID', 'hLln83iY6poO2vG');... + atsbend('BQ4H7', 0.0577872115264688, -0.000403189428060739, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'ExitAngle', -0.000403189428060739);... + atdrift('L085', 0.100096014361354, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF1_QCORROCT_8_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -800.842486671932], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'NSJyLXIjso3qTDD');... + atdrift('L05', 0.06, 'EApertures', [0.006 0.006]);... + atsextupole('SXD12_VCOR', 0.09, -749.191327132338, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'shIE3icysBaEaUs');... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'GwBiz2pj130dsRM');... + atdrift('L03', 0.176061846245862, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atsbend('BD27', 0.0284984341976272, 0.00225714925227511, -1.18160211440423, 'EApertures', [0.008 0.008], 'UUID', 'pLfc2EPnecGgJNq');... + atsbend('BD17', 0.0959771205127194, 0.00913608259524057, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0205293144427562);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524057, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524057, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524057, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'ExitAngle', 0.0205293144427562);... + atsbend('BD27', 0.0284984341976272, 0.00225714925227511, -1.18160211440423, 'EApertures', [0.00747368421052632 0.00747368421052632]);... + atdrift('LBD1M1', 0.0395472975018047, 'EApertures', [0.00652631578947368 0.00652631578947368]);... + atdrift('D05HM1', 0.05, 'EApertures', [0.006 0.006]);... + atquadrupole('Q7', 0.0672457254622836, -11.8140171585779, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.058, 'EApertures', [0.006 0.006], 'UUID', 'PTO2p6M6Slblp61');... + atdrift('D03HM1', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH6_COR', 0.06, -324.475203415205, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'Ic0LAfBXfTiL27l');... + atdrift('D022HM1Q', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'Oy8YreBTelEaCwO');... + atdrift('D040HM1Q', 0.128, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_01_7', 'EApertures', [0.006 0.006]);... + atquadrupole('Q6', 0.067209291601852, 11.9784555023184, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.058, 'EApertures', [0.006 0.006], 'UUID', 'FOnWUEkHtFI9F3W');... + atdrift('D03HM1', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH5', 0.06, -514.413524183539, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'UUID', 'mUmaj7rXVCVOaQ2');... + atdrift('D022HM1', 0.06, 'EApertures', [0.006 0.006]);... + atmultipole('OH5_QCORROCT_9', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.008 0.008], 'MaxOrder', 3, 'UUID', 'z8NPIKNaIZtlPVO');... + atmonitor('BPM', 'EApertures', [0.008 0.008], 'UUID', 'qicJqlDHADOF0W1');... + atdrift('D06HM1', 0.13, 'Action', 'BPM', 'EApertures', [0.006 0.006]);... + atquadrupole('Q5', 0.105773394525209, 14.0793630884634, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.098, 'EApertures', [0.006 0.006], 'UUID', 'ce4QEKEIiU0Ow0W');... + atdrift('D032HM1', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH4_COR', 0.06, 682.544409709839, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'ULyk32Ollmpd3bq');... + atdrift('D022HM1', 0.06, 'EApertures', [0.006 0.006]);... + atmultipole('OH4_QCORROCT_10_QT', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'MaxOrder', 3, 'UUID', 'tMdkyklUUfvW4mc');... + atdrift('D031HM1', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('Q4', 0.0785476107439048, -13.6216098775293, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.07, 'EApertures', [0.008 0.008], 'UUID', 'hEmfoR2sNgiLy6v');... + atmarker('GIRDEREND', 'EApertures', [0.006 0.006]);... + atmarker('AN-C01END', 'EApertures', [0.006 0.006]);... + atmarker('SD02MLSTART', 'EApertures', [0.006 0.006]);... + atmarker('VANNE_START', 'EApertures', [0.006 0.006]);... + atmarker('FCOR_2_1', 'UUID', 'kW6WhvFHInBkQp8');... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'qoTVmbKWRIy4O5K');... + atdrift('SD1M1_1', 0.272, 'Action', 'BPM', 'EApertures', [0.00818181818181818 0.00818181818181818]);... + atmarker('VANNE_END', 'EApertures', [0.01 0.01]);... + atdrift('SD1M1_2', 0.0819863922450714, 'Action', 'BPM', 'EApertures', [0.01 0.01]);... + atmarker('SYSTEME_RF_START', 'EApertures', [0.01 0.01]);... + atmarker('TRANSITION_AMONT_START', 'EApertures', [0.01 0.01]);... + atdrift('SD1M1_3', 0.33, 'Action', 'BPM', 'EApertures', [0.0332258064516129 0.0332258064516129]);... + atmarker('TRANSITION_AMONT_END', 'EApertures', [0.05 0.05]);... + atdrift('SD1M1_4', 0.5792, 'Action', 'BPM', 'EApertures', [0.05 0.05]);... + atmarker('RFCAV01', 'EApertures', [0.05 0.05]);... + atdrift('SD1M1_5', 0.5792, 'Action', 'BPM', 'EApertures', [0.05 0.05]);... + atmarker('RFCAV02', 'EApertures', [0.05 0.05]);... + atdrift('SD1M1_6', 0.2896, 'Action', 'BPM', 'EApertures', [0.05 0.05]);... + atmarker('SD02MLCENTER', 'EApertures', [0.05 0.05]);... + atrfcavity('RF', 0.0, 1700000.0, 352314252.10429, 416, 2750000000.0, 'EApertures', [0.05 0.05]);... + atdrift('SD1M1_7', 0.2896, 'Action', 'BPM', 'EApertures', [0.05 0.05]);... + atmarker('RFCAV03', 'EApertures', [0.05 0.05]);... + atdrift('SD1M1_8', 0.5792, 'Action', 'BPM', 'EApertures', [0.05 0.05]);... + atmarker('RFCAV04', 'EApertures', [0.05 0.05]);... + atdrift('SD1M1_9', 0.5792, 'Action', 'BPM', 'EApertures', [0.05 0.05]);... + atmarker('TRANSITION_AVALLE_START', 'EApertures', [0.05 0.05]);... + atdrift('SD1M1_10', 0.33, 'Action', 'BPM', 'RApertures', [-0.0326666666666667 0.0291428571428571 -0.0326666666666667 0.0326666666666667]);... + atmarker('TRANSITION_AVALLE_END', 'EApertures', [0.01 0.01]);... + atmarker('SYSTEME_RF_END', 'EApertures', [0.01 0.01]);... + atdrift('SD1M1_11', 0.0819863922450714, 'Action', 'BPM', 'EApertures', [0.01 0.01]);... + atmarker('VANNE_START', 'EApertures', [0.01 0.01]);... + atdrift('SD1M1_12', 0.272, 'Action', 'BPM', 'EApertures', [0.00818181818181818 0.00818181818181818]);... + atmarker('FCOR_2_2', 'UUID', 's652n3HDvBfuHeR');... + atmonitor('BPM', 'EApertures', [0.008 0.008], 'UUID', 'WfnRzZmwnq6oh2V');... + atmarker('VANNE_END', 'EApertures', [0.008 0.008]);... + atmarker('SD02MLEND', 'EApertures', [0.008 0.008]);... + atmarker('AN-C02START', 'EApertures', [0.008 0.008]);... + atmarker('GIRDERSTART', 'EApertures', [0.008 0.008]);... + atquadrupole('Q4', 0.0785476107439048, -13.6216098775293, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.07, 'EApertures', [0.00633333333333333 0.00633333333333333], 'UUID', 'kdZEHnourXfRTNO');... + atdrift('D031HM1', 0.048, 'EApertures', [0.006 0.006]);... + atmultipole('OH4_QCORROCT_11_QT', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'MaxOrder', 3, 'UUID', 'pwqRJutSMKzA4dw');... + atdrift('D022HM1', 0.06, 'EApertures', [0.006 0.006]);... + atsextupole('SH4_COR', 0.06, 682.544409709839, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'LpErN4ZqG954IOH');... + atdrift('D032HM1', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('Q5', 0.105773394525209, 14.0793630884634, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.098, 'EApertures', [0.006 0.006], 'UUID', 'FpxX1qtQIiwShvG');... + atdrift('D06HM1', 0.13, 'Action', 'BPM', 'EApertures', [0.006 0.006]);... + atmonitor('BPM', 'EApertures', [0.008 0.008], 'UUID', 'FNZruMcPOeXJ6jX');... + atmultipole('OH5_QCORROCT_12', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.008 0.008], 'MaxOrder', 3, 'UUID', 'XpzxZj6njcEh0pU');... + atdrift('D022HM1', 0.06, 'EApertures', [0.006 0.006]);... + atsextupole('SH5', 0.06, -514.413524183539, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'UUID', 'K1ePpajVztAKMse');... + atdrift('D03HM1', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('Q6', 0.067209291601852, 11.9784555023184, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.058, 'EApertures', [0.006 0.006], 'UUID', 'vTuIHyL7HxCgWGI');... + atdrift('D040HM1Q', 0.128, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'mue0K9ms06PFUjV');... + atdrift('D022HM1Q', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH6_COR', 0.06, -324.475203415205, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'c0d16Bv8vpYw2X8');... + atdrift('D03HM1', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('Q7', 0.0672457254622836, -11.8140171585779, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.058, 'EApertures', [0.006 0.006], 'UUID', 'fbS3rm1EPv7h05U');... + atdrift('D05HM1', 0.05, 'EApertures', [0.006 0.006]);... + atdrift('LBD1M1', 0.0395472975018047, 'EApertures', [0.006 0.006]);... + atsbend('BD24', 0.0284984341976272, 0.00215787898333112, -1.18160211440423, 'EApertures', [0.0076 0.0076], 'UUID', 'gwGN0h3Sq5K8eUP');... + atsbend('BD14', 0.0959771205127194, 0.00873427426315538, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0205293144427562);... + atsbend('BD14', 0.0959771205127194, 0.00873427426315538, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD14', 0.0959771205127194, 0.00873427426315538, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD14', 0.0959771205127194, 0.00873427426315538, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'ExitAngle', 0.0205293144427562);... + atsbend('BD24', 0.0284984341976272, 0.00215787898333112, -1.18160211440423, 'EApertures', [0.00786666666666667 0.00786666666666667]);... + atdrift('L03', 0.176061846245862, 'EApertures', [0.006 0.006]);... + atsextupole('SXD21', 0.09, -655.116114720116, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0075, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'sD4TKGmfHSziz2a');... + atdrift('L04', 0.111275514615956, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_02_1', 'EApertures', [0.006 0.006]);... + atmultipole('OCTF2_QCORROCT_13_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -262.360558705412], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'nPPnNroQpm90RF8');... + atdrift('L084', 0.048820499745398, 'EApertures', [0.006 0.006]);... + atsbend('BQ4H4', 0.0577872115264688, -0.000385457006104762, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.000385457006104762, 'UUID', 'KllxpBTjxb9nI8e');... + atsbend('BQ4H4', 0.0577872115264688, -0.000385457006104762, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'ExitAngle', -0.000385457006104762);... + atdrift('L084', 0.048820499745398, 'EApertures', [0.006 0.006]);... + atsextupole('SXF21_HCOR', 0.12, 719.09699842571, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'y0uzKnug9KPaOvn');... + atdrift('L082', 0.0471064301693061, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H4', 0.0689196396343699, -0.00144531683192883, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00144531683192883, 'UUID', 'IxAzp3EF6aPVSaC');... + atsbend('BQ6H4', 0.0689196396343699, -0.00144531683192883, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00144531683192883);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'haHJaWmGF0Dg7lJ');... + atsextupole('SXD21_VCOR', 0.09, -655.116114720116, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'P0JPZ4xdVZotIw5');... + atdrift('L071', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'Befi7ozXnilRK11');... + atmarker('GIRDEREND', 'EApertures', [0.006 0.006]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.0068 0.0068]);... + atmarker('GIRDERSTART', 'EApertures', [0.008 0.008]);... + atsbend('BD4H4', 0.0393049032024916, 0.00234342379845867, -1.11997137375817, 'EApertures', [0.008 0.008], 'UUID', 'Z28O9vhdH8QdJNd');... + atsbend('BD5H4', 0.398927492296932, 0.0303936245742024, -1.86297299994296, 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0342430714728858);... + atsbend('BD5H4', 0.398927492296932, 0.0303936245742024, -1.86297299994296, 'EApertures', [0.008 0.008], 'ExitAngle', 0.0342430714728858);... + atsbend('BD4H4', 0.0393049032024916, 0.00234342379845867, -1.11997137375817, 'EApertures', [0.008 0.008]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00774358974358974 0.00774358974358974]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00733333333333333 0.00733333333333333], 'UUID', 'nrl0bgchakIsEB2');... + atdrift('L071', 0.048, 'EApertures', [0.00676923076923077 0.00676923076923077]);... + atsextupole('SXD2', 0.09, -617.904418360321, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'Xw7rpEqkZICsnUx');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_02_2', 'EApertures', [0.006 0.006]);... + atsbend('BQ6H4', 0.0689196396343699, -0.00144531683192883, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00144531683192883, 'UUID', 'MkCFVgYQy2dfO5w');... + atsbend('BQ6H4', 0.0689196396343699, -0.00144531683192883, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00144531683192883);... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF2_QCORROCT_14_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -262.360558705412], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'asXvzxl71biP2PI');... + atdrift('L081', 0.06, 'EApertures', [0.006 0.006]);... + atsextupole('SXF2_HCOR', 0.12, 741.112250869933, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'UAO5y9U8OY585qk');... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H4', 0.0689196396343699, -0.00144531683192883, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00144531683192883, 'UUID', 'VTxDwNdbXVHVN8Y');... + atsbend('BQ6H4', 0.0689196396343699, -0.00144531683192883, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00144531683192883);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'JLufUzy5slhZu9V');... + atsextupole('SXD2_VCOR', 0.09, -617.904418360321, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'T48ucxIrwjPuH9B');... + atdrift('L071', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'PALwbvWzjSsxrnB');... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.0068 0.0068]);... + atsbend('BD4H4', 0.0393049032024916, 0.00234342379845867, -1.11997137375817, 'EApertures', [0.008 0.008], 'UUID', 'EgLdUSDY9SZZDk2');... + atsbend('BD5H4', 0.398927492296932, 0.0303936245742024, -1.86297299994296, 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0342430714728858);... + atsbend('BD5H4', 0.398927492296932, 0.0303936245742024, -1.86297299994296, 'EApertures', [0.008 0.008], 'ExitAngle', 0.0342430714728858);... + atsbend('BD4H4', 0.0393049032024916, 0.00234342379845867, -1.11997137375817, 'EApertures', [0.008 0.008]);... + atmarker('MIR_SMIS', 'RApertures', [-0.008 0.0045 -0.008 0.008 ]);... + atmarker('GIRDEREND', 'RApertures', [-0.008 0.0045 -0.008 0.008 ]);... + atdrift('L073', 0.0372677805661953, 'RApertures', [-0.00774358974358974 0.0045 -0.00774358974358974 0.00774358974358974]);... + atmarker('GIRDERSTART', 'EApertures', [0.00748717948717949 0.00748717948717949]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00728205128205128 0.00728205128205128], 'UUID', 't3q1K8FZHOXgSKs');... + atdrift('L071', 0.048, 'EApertures', [0.00676923076923077 0.00676923076923077]);... + atsextupole('SXD22', 0.09, -636.039531358256, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'FFWAIq4LAmxdRrI');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_02_3', 'EApertures', [0.006 0.006]);... + atsbend('BQ6H4', 0.0689196396343699, -0.00144531683192883, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00144531683192883, 'UUID', 'lAC8h0zcBo5eaHh');... + atsbend('BQ6H4', 0.0689196396343699, -0.00144531683192883, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00144531683192883);... + atdrift('L082', 0.0471064301693061, 'EApertures', [0.006 0.006]);... + atsextupole('SXF22_HCOR', 0.12, 843.464304725645, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'DHmhq3UDQfQUyMB');... + atdrift('L084', 0.048820499745398, 'EApertures', [0.006 0.006]);... + atsbend('BQ4H4', 0.0577872115264688, -0.000385457006104762, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.000385457006104762, 'UUID', 'Gpo12f8azjMVW8s');... + atsbend('BQ4H4', 0.0577872115264688, -0.000385457006104762, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'ExitAngle', -0.000385457006104762);... + atdrift('L085', 0.100096014361354, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF2_QCORROCT_15_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -262.360558705412], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'dHi0AOKVpWzFYKN');... + atdrift('L05', 0.06, 'EApertures', [0.008 0.008]);... + atsextupole('SXD22_VCOR', 0.09, -636.039531358256, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.0068 0.0068], 'KickAngle', [0. 0.], 'UUID', 'raV0GKqm0pQTEaW');... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'it9Zh2nMidiLAkf');... + atdrift('L03', 0.176061846245862, 'Action', 'BPM', 'EApertures', [0.006 0.006]);... + atsbend('BD24', 0.0284984341976272, 0.00215787898333112, -1.18160211440423, 'EApertures', [0.008 0.008], 'UUID', 'Hf8DdLqUwojCSag');... + atsbend('BD14', 0.0959771205127194, 0.00873427426315538, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0205293144427562);... + atsbend('BD14', 0.0959771205127194, 0.00873427426315538, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD14', 0.0959771205127194, 0.00873427426315538, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD14', 0.0959771205127194, 0.00873427426315538, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'ExitAngle', 0.0205293144427562);... + atsbend('BD24', 0.0284984341976272, 0.00215787898333112, -1.18160211440423, 'EApertures', [0.00722222222222222 0.00722222222222222]);... + atdrift('LBD1C', 0.0395472975018047, 'EApertures', [0.00611111111111111 0.00611111111111111]);... + atdrift('D05HC', 0.00499988833315879, 'EApertures', [0.006 0.006]);... + atquadrupole('Q11', 0.0789546761676337, -12.3862992113073, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.07, 'EApertures', [0.006 0.006], 'UUID', 'WSWp8mF0QcbwRq3');... + atdrift('D03HC', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH9_COR', 0.06, -668.536791100884, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'VzysczFjc63Ue7s');... + atdrift('D022HCQ', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'Ky4itctVlF2BO1i');... + atdrift('D041HCQ', 0.108, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_02_4', 'EApertures', [0.006 0.006]);... + atquadrupole('Q10', 0.0844113331477278, 13.6568508102765, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.076, 'EApertures', [0.006 0.006], 'UUID', 'SDt5FL2dgAnY5eR');... + atdrift('D03HC', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH8', 0.06, -366.603155097304, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'UUID', 'Yec6g143pIFJp71');... + atdrift('D022HCQ', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'fdr3MxWvXArT5Ab');... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'Fh3tv9cVJLbQLDQ');... + atdrift('D06HCQ', 0.158, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atquadrupole('Q9', 0.106409911705093, 12.8349230947647, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.098, 'EApertures', [0.006 0.006], 'UUID', 'nXbkG3M12YlJQCg');... + atdrift('D032HC', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH7_COR', 0.06, 832.664084881681, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'UodK6YwG7wiATVi');... + atdrift('D022HC', 0.06, 'EApertures', [0.006 0.006]);... + atmultipole('OH7_QCORROCT_16_QT', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'MaxOrder', 3, 'UUID', 'E7H8oUrODAAtprt');... + atdrift('D031HC', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('Q8', 0.0786666675115942, -13.273182641893, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.07, 'EApertures', [0.006 0.006], 'UUID', 'nOs3rxOSs341O84');... + atmarker('GIRDEREND', 'EApertures', [0.0076 0.0076]);... + atmarker('AN-C02END', 'EApertures', [0.0076 0.0076]);... + atmarker('SD03CSTART', 'EApertures', [0.0076 0.0076]);... + atmarker('VANNE_START', 'EApertures', [0.0076 0.0076]);... + atmarker('FCOR_3_1', 'UUID', 'DOni8vvyOpxj85A');... + atmonitor('BPM', 'EApertures', [0.0076 0.0076], 'UUID', 'QNHQ1lKOcFpBS6G');... + atdrift('SD1C_1', 0.322, 'Action', 'BPM', 'EApertures', [0.00854545454545455 0.00854545454545455]);... + atmarker('VANNE_END', 'EApertures', [0.01 0.01]);... + atdrift('SD1C_2', 0.0835458676300582, 'Action', 'BPM', 'EApertures', [0.01 0.01]);... + atmarker('ONDULEURMARK_START', 'EApertures', [0.042 0.0125]);... + atdrift('SD1C_3', 1.189, 'Action', 'BPM', 'EApertures', [0.0475 0.002 ]);... + atmarker('SD03CCENTER', 'EApertures', [0.0475 0.002 ]);... + atdrift('SD1C_4', 1.189, 'Action', 'BPM', 'EApertures', [0.0475 0.002 ]);... + atmarker('ONDULEURMARK_END', 'EApertures', [0.042 0.0125]);... + atdrift('SD1C_5', 0.0835458676300582, 'Action', 'BPM', 'EApertures', [0.01 0.01]);... + atmarker('VANNE_START', 'EApertures', [0.01 0.01]);... + atdrift('SD1C_6', 0.322, 'Action', 'BPM', 'EApertures', [0.00847619047619048 0.00847619047619048]);... + atmarker('FCOR_3_2', 'UUID', 'NPfj9V4Pssdybtp');... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'ydXXbYQcZl9SRmG');... + atmarker('VANNE_END', 'EApertures', [0.006 0.006]);... + atmarker('SD03CEND', 'EApertures', [0.006 0.006]);... + atmarker('AN-C03START', 'EApertures', [0.006 0.006]);... + atmarker('GIRDERSTART', 'EApertures', [0.006 0.006]);... + atquadrupole('Q8', 0.0786666675115942, -13.273182641893, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.07, 'EApertures', [0.006 0.006], 'UUID', 'ARwCsNpSkj2GP1m');... + atdrift('D031HC', 0.048, 'EApertures', [0.006 0.006]);... + atmultipole('OH7_QCORROCT_17_QT', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'MaxOrder', 3, 'UUID', 'UdtxeQKCpQnCXX4');... + atdrift('D022HC', 0.06, 'EApertures', [0.006 0.006]);... + atsextupole('SH7_COR', 0.06, 832.664084881681, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'dTKxy2bim7veDhi');... + atdrift('D032HC', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('Q9', 0.106409911705093, 12.8349230947647, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.098, 'EApertures', [0.006 0.006], 'UUID', 'xbNGAyscqe78HYH');... + atdrift('D06HCQ', 0.158, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'y3KdHN0OXw5YTab');... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'WIBlz0NUsGts0Ph');... + atdrift('D022HCQ', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH8', 0.06, -366.603155097304, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'UUID', 'gfkIAUe0uWdYnpo');... + atdrift('D03HC', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('Q10', 0.0844113331477278, 13.6568508102765, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.076, 'EApertures', [0.006 0.006], 'UUID', 'teVnsyTSFJpawOe');... + atdrift('D041HCQ', 0.108, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'b7ShhD5lJNhBM7t');... + atdrift('D022HCQ', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH9_COR', 0.06, -668.536791100884, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'W2IfNW7fdGeqJfm');... + atdrift('D03HC', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('Q11', 0.0789546761676337, -12.3862992113073, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.07, 'EApertures', [0.006 0.006], 'UUID', 'gOi5iJqVjNeA52z');... + atdrift('D05HC', 0.00499988833315879, 'EApertures', [0.006 0.006]);... + atdrift('LBD1C', 0.0395472975018047, 'EApertures', [0.006 0.006]);... + atsbend('BD27', 0.0284984341976272, 0.00225714925227511, -1.18160211440423, 'EApertures', [0.008 0.008], 'UUID', 'cNng2ZysXiEJ13c');... + atsbend('BD17', 0.0959771205127194, 0.00913608259524057, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0205293144427562);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524057, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524057, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524057, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'ExitAngle', 0.0205293144427562);... + atsbend('BD27', 0.0284984341976272, 0.00225714925227511, -1.18160211440423, 'EApertures', [0.00772413793103448 0.00772413793103448]);... + atdrift('L03', 0.176061846245862, 'EApertures', [0.006 0.006]);... + atsextupole('SXD31', 0.09, -681.129428046866, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0075, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'poJnwUdKXl4ecwa');... + atdrift('L04', 0.111275514615956, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_03_1', 'EApertures', [0.006 0.006]);... + atmultipole('OCTF3_QCORROCT_18_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -440.259660850112], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'xKigDUs5VdwzNp8');... + atdrift('L084', 0.048820499745398, 'EApertures', [0.006 0.006]);... + atsbend('BQ4H7', 0.0577872115264688, -0.000403189428060739, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.000403189428060739, 'UUID', 'BONRblnEwxs46s0');... + atsbend('BQ4H7', 0.0577872115264688, -0.000403189428060739, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'ExitAngle', -0.000403189428060739);... + atdrift('L084', 0.048820499745398, 'EApertures', [0.006 0.006]);... + atsextupole('SXF31_HCOR', 0.12, 734.143510940683, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'ohxkxHu87LH8Zwb');... + atdrift('L082', 0.0471064301693061, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444583, 'UUID', 'qXyJ988mCk5B86r');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444583);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'V4h313dsDkxkbL5');... + atsextupole('SXD31_VCOR', 0.09, -681.129428046866, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'zzqSrfb2S5U85sb');... + atdrift('L071', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'C6wGT7WKeOD346J');... + atmarker('GIRDEREND', 'EApertures', [0.006 0.006]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00766666666666667 0.00766666666666667]);... + atmarker('GIRDERSTART', 'EApertures', [0.008 0.008]);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008], 'UUID', 'yF2AtvQzq6j1ijA');... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702353, -1.86297299994296, 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0342430714728858);... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702353, -1.86297299994296, 'EApertures', [0.008 0.008], 'ExitAngle', 0.0342430714728858);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.0076 0.0076]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00715 0.00715], 'UUID', 'Q1La9BK7hwQjO9t');... + atdrift('L071', 0.048, 'EApertures', [0.00665 0.00665]);... + atsextupole('SXD3', 0.09, -753.118527609963, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'NqaVBwBwD9HDxDr');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_03_2', 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444583, 'UUID', 'oo7xDavd3Ck8PCX');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444583);... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF3_QCORROCT_19_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -440.259660850112], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'dMyc0Pvz84i8feM');... + atdrift('L081', 0.06, 'EApertures', [0.006 0.006]);... + atsextupole('SXF3_HCOR', 0.12, 675.00095481734, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'TPmnawWYE2ocRC0');... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444583, 'UUID', 'n4JfHtRB8G7AUTE');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444583);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'vS2PY52CQJXCjRc');... + atsextupole('SXD3_VCOR', 0.09, -753.118527609963, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'ttYluFCxHpMlIhH');... + atdrift('L071', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'YjhUfmNClTrJLyd');... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.0076 0.0076]);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008], 'UUID', 'EgwKqb8F7ppaLTT');... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702353, -1.86297299994296, 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0342430714728858);... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702352, -1.86297299994296, 'EApertures', [0.008 0.008], 'ExitAngle', 0.0342430714728858);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008]);... + atmarker('GIRDEREND', 'EApertures', [0.0078974358974359 0.0078974358974359]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00758974358974359 0.00758974358974359]);... + atmarker('GIRDERSTART', 'EApertures', [0.00733333333333333 0.00733333333333333]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00717948717948718 0.00717948717948718], 'UUID', 'Vt4rQW17x77yJgT');... + atdrift('L071', 0.048, 'EApertures', [0.00666666666666667 0.00666666666666667]);... + atsextupole('SXD3', 0.09, -753.118527609963, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'tMGagJ4a9digNC3');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_03_3', 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444582, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444582, 'UUID', 'BXa0YccALJp3yQO');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444582, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444582);... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF3_QCORROCT_20_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -440.259660850112], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'TF0PjdvUJNkPDRY');... + atdrift('L081', 0.06, 'EApertures', [0.006 0.006]);... + atsextupole('SXF33_HCOR', 0.12, 686.795497427942, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'VwWPAsH5J1chNcJ');... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsbend('BQ6HC7', 0.0689196396343699, -0.00144054604712974, 8.95984862959226, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00144054604712974, 'UUID', 'DHprs4lSirJurxQ');... + atsbend('BQ6HC7', 0.0689196396343699, -0.00144054604712974, 8.95984862959226, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00144054604712974);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'vSiHxz2MNGy4BgD');... + atsextupole('SXD33_VCOR', 0.09, -764.318658802759, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'kCQRHZ1A7JSZML1');... + atdrift('L071C', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'P7Qb6qfCNTVWmQg');... + atdrift('L073C', 0.0430773209057085, 'EApertures', [0.00742857142857143 0.00742857142857143]);... + atsbend('BD3HC7', 0.01, 0.000258818071001969, -1.37551837900507, 'EApertures', [0.008 0.00786363636363636], 'UUID', 'FL9dddQXHpn13R5');... + atsbend('BD4HC71', 0.03, 0.00188018240208164, -2.57765200910186, 'EApertures', [0.008 0.00765909090909091], 'EntranceAngle', 0.00982777557557598);... + atsbend('BD4HC7', 0.253621983633988, 0.0158951863469887, -2.57765200910186, 'EApertures', [0.008 0.00629545454545455]);... + atsbend('BD4HC71', 0.03, 0.00188018240208164, -2.57765200910186, 'EApertures', [0.008 0.005], 'ExitAngle', 0.00982777557557598);... + atsbend('BD5HC7', 0.0231155237960032, 0.00240516115877823, 0.0, 'EApertures', [0.008 0.005]);... + atsbend('BD6HC7', 0.0856857672699483, 0.0117810198825822, 0.0, 'EApertures', [0.008 0.005]);... + atsbend('BD6HC7', 0.0856857672699483, 0.0117810198825822, 0.0, 'EApertures', [0.008 0.005]);... + atsbend('BD5HC7', 0.0231155237960032, 0.00240516115877823, 0.0, 'EApertures', [0.008 0.005]);... + atsbend('BD4HC71', 0.03, 0.00188018240208164, -2.57765200910186, 'EApertures', [0.008 0.00518367346938775], 'EntranceAngle', 0.00982777557557598);... + atsbend('BD4HC7', 0.253621983633988, 0.0158951863469887, -2.57765200910186, 'EApertures', [0.008 0.00640816326530612]);... + atsbend('BD4HC71', 0.03, 0.00188018240208164, -2.57765200910186, 'EApertures', [0.008 0.00763265306122449], 'ExitAngle', 0.00982777557557598);... + atsbend('BD3HC7', 0.01, 0.000258818071001969, -1.37551837900507, 'EApertures', [0.008 0.00781632653061225]);... + atdrift('L073C', 0.0430773209057085, 'EApertures', [0.008 0.008]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00739393939393939 0.00739393939393939], 'UUID', 'XdHoLfFCSIewG8Z');... + atdrift('L071C', 0.048, 'EApertures', [0.00678787878787879 0.00678787878787879]);... + atsextupole('SXD33', 0.09, -764.318658802759, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.007, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'xR4OCNCFE6rHYRm');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_03_4', 'EApertures', [0.006 0.006]);... + atsbend('BQ6HC7', 0.0689196396343699, -0.00144054604712974, 8.95984862959226, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00144054604712974, 'UUID', 'lkP2RCjPJzWuGfa');... + atsbend('BQ6HC7', 0.0689196396343699, -0.00144054604712974, 8.95984862959226, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00144054604712974);... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsextupole('SXF33_HCOR', 0.12, 686.795497427942, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'iL9tne0guJoecmU');... + atdrift('L081', 0.06, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF3_QCORROCT_21_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -440.259660850112], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'qLYZLsrXeLPIAkX');... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444582, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444582, 'UUID', 'znvwj8whEwGTfPV');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444582, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444582);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'SsqV4AifmH7bunv');... + atsextupole('SXD3_VCOR', 0.09, -753.118527609963, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'g09JM4m52IIXWs7');... + atdrift('L071', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'XvhW0ZaBcKjWj9N');... + atmarker('GIRDEREND', 'EApertures', [0.006 0.006]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00766666666666667 0.00766666666666667]);... + atmarker('GIRDERSTART', 'EApertures', [0.008 0.008]);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008], 'UUID', 'gBl65XeySyVMqgM');... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702352, -1.86297299994296, 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0342430714728858);... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702353, -1.86297299994296, 'EApertures', [0.008 0.008], 'ExitAngle', 0.0342430714728858);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.0076 0.0076]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00715 0.00715], 'UUID', 'JkHhKimiwcnpa6r');... + atdrift('L071', 0.048, 'EApertures', [0.00665 0.00665]);... + atsextupole('SXD3', 0.09, -753.118527609963, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'nzfWITaD0gRrMQ8');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_03_5', 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444583, 'UUID', 'AtKSoQ5z1Lo9Ybj');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444583);... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsextupole('SXF3_HCOR', 0.12, 675.00095481734, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'tsjTyMWjQbeQkVM');... + atdrift('L081', 0.06, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF3_QCORROCT_22_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -440.259660850112], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'oyXPQEfTlvheeTz');... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444583, 'UUID', 'xBLaojtSDfARL1R');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444583);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'S9HPKx2p7Qdf4Z7');... + atsextupole('SXD3_VCOR', 0.09, -753.118527609963, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'fJQDM1ZNlMkvmpE');... + atdrift('L071', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'PljZA3ysY5JnGxD');... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00766666666666667 0.00766666666666667]);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008], 'UUID', 'b71ylUXHlnpoX07');... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702353, -1.86297299994296, 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0342430714728858);... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702353, -1.86297299994296, 'EApertures', [0.008 0.008], 'ExitAngle', 0.0342430714728858);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008]);... + atmarker('GIRDEREND', 'EApertures', [0.0078974358974359 0.0078974358974359]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00758974358974359 0.00758974358974359]);... + atmarker('GIRDERSTART', 'EApertures', [0.00733333333333333 0.00733333333333333]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00717948717948718 0.00717948717948718], 'UUID', 'HXLV7WZjXkrdqHI');... + atdrift('L071', 0.048, 'EApertures', [0.00666666666666667 0.00666666666666667]);... + atsextupole('SXD32', 0.09, -729.521731325636, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'WJvuJpESOOXUdOd');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444583, 'UUID', 'gxH4ZNtefn9DelK');... + atmarker('CROTCH_03_6', 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444583);... + atdrift('L082', 0.0471064301693061, 'EApertures', [0.006 0.006]);... + atsextupole('SXF32_HCOR', 0.12, 782.043582880113, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'pgjTsX2RXv9dVMD');... + atdrift('L084', 0.048820499745398, 'EApertures', [0.006 0.006]);... + atsbend('BQ4H7', 0.0577872115264688, -0.000403189428060739, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.000403189428060739, 'UUID', 'lE1FLZZtUqfuFk4');... + atsbend('BQ4H7', 0.0577872115264688, -0.000403189428060739, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'ExitAngle', -0.000403189428060739);... + atdrift('L085', 0.100096014361354, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF3_QCORROCT_23_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -440.259660850112], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'ePvuy0DH7CSZMgC');... + atdrift('L05', 0.06, 'EApertures', [0.006 0.006]);... + atsextupole('SXD32_VCOR', 0.09, -729.521731325636, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'h8wn2Aoh43tSwyp');... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'FsbG45HbIlWrVJu');... + atdrift('L03', 0.176061846245862, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atsbend('BD27', 0.0284984341976272, 0.00225714925227511, -1.18160211440423, 'EApertures', [0.008 0.008], 'UUID', 'YVUlXXFFVLSFzkL');... + atsbend('BD17', 0.0959771205127194, 0.00913608259524057, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0205293144427562);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524057, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524057, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524057, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'ExitAngle', 0.0205293144427562);... + atsbend('BD27', 0.0284984341976272, 0.00225714925227511, -1.18160211440423, 'EApertures', [0.00747368421052632 0.00747368421052632]);... + atdrift('LBD1C', 0.0395472975018047, 'EApertures', [0.00652631578947368 0.00652631578947368]);... + atdrift('D05HC', 0.00499988833315879, 'EApertures', [0.006 0.006]);... + atquadrupole('Q11', 0.0789546761676337, -12.3862992113073, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.07, 'EApertures', [0.006 0.006], 'UUID', 'TM1uDO8GAjdGJ3P');... + atdrift('D03HC', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH9_COR', 0.06, -668.536791100884, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'ILQxnlVjdwxtHUT');... + atdrift('D022HCQ', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'Xicg5JfkxjPza2w');... + atdrift('D041HCQ', 0.108, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_03_7', 'EApertures', [0.006 0.006]);... + atquadrupole('Q10', 0.0844113331477278, 13.6568508102765, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.076, 'EApertures', [0.006 0.006], 'UUID', 'gntjaAtTgVa3gXr');... + atdrift('D03HC', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH8', 0.06, -366.603155097304, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'UUID', 'D2PcXoli7GmvkxC');... + atdrift('D022HCQ', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'u8Jv5BKQzd3SiZB');... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'nahqf22GUaRe2JP');... + atdrift('D06HCQ', 0.158, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atquadrupole('Q9', 0.106409911705093, 12.8349230947647, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.098, 'EApertures', [0.006 0.006], 'UUID', 'FtigcbxWx5tzWQd');... + atdrift('D032HC', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH7_COR', 0.06, 832.664084881681, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'xwljVREQG1U3zPH');... + atdrift('D022HC', 0.06, 'EApertures', [0.006 0.006]);... + atmultipole('OH7_QCORROCT_24_QT', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'MaxOrder', 3, 'UUID', 'C7bnUgWTTukQ4gy');... + atdrift('D031HC', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('Q8', 0.0786666675115942, -13.273182641893, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.07, 'EApertures', [0.006 0.006], 'UUID', 'twyz8VXS0LUnbRe');... + atmarker('GIRDEREND', 'EApertures', [0.00666666666666667 0.00666666666666667]);... + atmarker('AN-C03END', 'EApertures', [0.00666666666666667 0.00666666666666667]);... + atmarker('SD04CSTART', 'EApertures', [0.00666666666666667 0.00666666666666667]);... + atmarker('VANNE_START', 'EApertures', [0.00666666666666667 0.00666666666666667]);... + atmarker('FCOR_4_1', 'UUID', 'QPmCAZMao8sWOw4');... + atmonitor('BPM', 'EApertures', [0.00666666666666667 0.00666666666666667], 'UUID', 'IOoOMuQ1DoPi5dB');... + atdrift('SD1C_7', 0.322, 'Action', 'BPM', 'EApertures', [0.00847619047619048 0.00847619047619048]);... + atmarker('VANNE_END', 'EApertures', [0.01 0.01]);... + atdrift('SD1C_8', 0.0835458676300582, 'Action', 'BPM', 'EApertures', [0.01 0.01]);... + atmarker('ONDULEURMARK_START', 'EApertures', [0.042 0.0125]);... + atdrift('SD1C_9', 1.189, 'Action', 'BPM', 'EApertures', [0.0475 0.002 ]);... + atmarker('SD04CCENTER', 'EApertures', [0.0475 0.002 ]);... + atdrift('SD1C_10', 1.189, 'Action', 'BPM', 'EApertures', [0.0475 0.002 ]);... + atmarker('ONDULEURMARK_END', 'EApertures', [0.042 0.0125]);... + atdrift('SD1C_11', 0.0835458676300582, 'Action', 'BPM', 'EApertures', [0.01 0.01]);... + atmarker('VANNE_START', 'EApertures', [0.01 0.01]);... + atdrift('SD1C_12', 0.322, 'Action', 'BPM', 'EApertures', [0.00854545454545455 0.00854545454545455]);... + atmarker('FCOR_4_2', 'UUID', 'Yv723Y5fCvuATRH');... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'ejs6UzWrKNqRtXq');... + atmarker('VANNE_END', 'EApertures', [0.006 0.006]);... + atmarker('SD04CEND', 'EApertures', [0.006 0.006]);... + atmarker('AN-C04START', 'EApertures', [0.006 0.006]);... + atmarker('GIRDERSTART', 'EApertures', [0.006 0.006]);... + atquadrupole('Q8', 0.0786666675115942, -13.273182641893, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.07, 'EApertures', [0.006 0.006], 'UUID', 'uyApAcv4NrZZQK4');... + atdrift('D031HC', 0.048, 'EApertures', [0.006 0.006]);... + atmultipole('OH7_QCORROCT_25_QT', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'MaxOrder', 3, 'UUID', 'axZ2Ns2grpK2GBR');... + atdrift('D022HC', 0.06, 'EApertures', [0.006 0.006]);... + atsextupole('SH7_COR', 0.06, 832.664084881681, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'CE24H4c21zlqIpL');... + atdrift('D032HC', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('Q9', 0.106409911705093, 12.8349230947647, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.098, 'EApertures', [0.006 0.006], 'UUID', 'VhzRChxxNUaGYBW');... + atdrift('D06HCQ', 0.158, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'KtcOB9QbQMd9axv');... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'xz9rsREo00RJnRW');... + atdrift('D022HCQ', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH8', 0.06, -366.603155097304, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'UUID', 'ILcun44BNY06N3s');... + atdrift('D03HC', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('Q10', 0.0844113331477278, 13.6568508102765, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.076, 'EApertures', [0.006 0.006], 'UUID', 'NEfKqVehJMwDfBw');... + atdrift('D041HCQ', 0.108, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'og2biQH6E2zjZ36');... + atdrift('D022HCQ', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH9_COR', 0.06, -668.536791100884, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'YtTof8KfNribIBe');... + atdrift('D03HC', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('Q11', 0.0789546761676337, -12.3862992113073, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.07, 'EApertures', [0.006 0.006], 'UUID', 'Kv00H453vUEnOcH');... + atdrift('D05HC', 0.00499988833315879, 'EApertures', [0.006 0.006]);... + atdrift('LBD1C', 0.0395472975018047, 'EApertures', [0.006 0.006]);... + atsbend('BD24', 0.0284984341976272, 0.00215787898333112, -1.18160211440423, 'EApertures', [0.0076 0.0076], 'UUID', 'jCU1d6NPKWj3iSq');... + atsbend('BD14', 0.0959771205127194, 0.00873427426315538, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0205293144427562);... + atsbend('BD14', 0.0959771205127194, 0.00873427426315538, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD14', 0.0959771205127194, 0.00873427426315538, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD14', 0.0959771205127194, 0.00873427426315538, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'ExitAngle', 0.0205293144427562);... + atsbend('BD24', 0.0284984341976272, 0.00215787898333112, -1.18160211440423, 'EApertures', [0.00786666666666667 0.00786666666666667]);... + atdrift('L03', 0.176061846245862, 'EApertures', [0.006 0.006]);... + atsextupole('SXD41', 0.09, -735.729130725313, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0075, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'AzizLO063zYD0yS');... + atdrift('L04', 0.111275514615956, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_04_1', 'EApertures', [0.006 0.006]);... + atmultipole('OCTF4_QCORROCT_26_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -183.939387091905], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'E0rQYusFa9WYnZq');... + atdrift('L084', 0.048820499745398, 'EApertures', [0.006 0.006]);... + atsbend('BQ4H4', 0.0577872115264688, -0.000385457006104762, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.000385457006104762, 'UUID', 'QA88bo6ZdWnNKY8');... + atsbend('BQ4H4', 0.0577872115264688, -0.000385457006104762, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'ExitAngle', -0.000385457006104762);... + atdrift('L084', 0.048820499745398, 'EApertures', [0.006 0.006]);... + atsextupole('SXF41_HCOR', 0.12, 846.26087738574, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'NvemmDQGd9i2EPB');... + atdrift('L082', 0.0471064301693061, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H4', 0.0689196396343699, -0.00144531683192883, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00144531683192883, 'UUID', 'jYF851icAT4gUK4');... + atsbend('BQ6H4', 0.0689196396343699, -0.00144531683192883, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00144531683192883);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'ib0CnMbOJvmlosn');... + atsextupole('SXD41_VCOR', 0.09, -735.729130725313, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'rBERTRPkdlZmQCE');... + atdrift('L071', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'j4EchFVgEVKDDGl');... + atmarker('GIRDEREND', 'EApertures', [0.006 0.006]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.0068 0.0068]);... + atmarker('GIRDERSTART', 'EApertures', [0.008 0.008]);... + atsbend('BD4H4', 0.0393049032024916, 0.00234342379845867, -1.11997137375817, 'EApertures', [0.008 0.008], 'UUID', 'LTGMSA2WZVcIQHf');... + atsbend('BD5H4', 0.398927492296932, 0.0303936245742024, -1.86297299994296, 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0342430714728858);... + atsbend('BD5H4', 0.398927492296932, 0.0303936245742024, -1.86297299994296, 'EApertures', [0.008 0.008], 'ExitAngle', 0.0342430714728858);... + atsbend('BD4H4', 0.0393049032024916, 0.00234342379845867, -1.11997137375817, 'EApertures', [0.008 0.008]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00774358974358974 0.00774358974358974]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00728205128205128 0.00728205128205128], 'UUID', 'wWsQHCuK5yWGJ7y');... + atdrift('L071', 0.048, 'EApertures', [0.00676923076923077 0.00676923076923077]);... + atsextupole('SXD4', 0.09, -748.397964225485, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'l2vvSC6SWlfMcNA');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_04_2', 'EApertures', [0.006 0.006]);... + atsbend('BQ6H4', 0.0689196396343699, -0.00144531683192883, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00144531683192883, 'UUID', 'vB0ByODEwC0m3sT');... + atsbend('BQ6H4', 0.0689196396343699, -0.00144531683192883, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00144531683192883);... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsextupole('SXF4_HCOR', 0.12, 811.758492840009, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'gEV9ghbbk7hVA3H');... + atdrift('L081', 0.06, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF4_QCORROCT_27_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -183.939387091905], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'xpazeKUnq8Nikhm');... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H4', 0.0689196396343699, -0.00144531683192883, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00144531683192883, 'UUID', 'CoNs7giT6BVrSih');... + atsbend('BQ6H4', 0.0689196396343699, -0.00144531683192883, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00144531683192883);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'KfmxXiRIdhK2CpE');... + atsextupole('SXD4_VCOR', 0.09, -748.397964225485, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'vYAYi0dc02xll2N');... + atdrift('L071', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'XgYrHi6toxYezBo');... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00666666666666667 0.00666666666666667]);... + atsbend('BD4H4', 0.0393049032024916, 0.00234342379845867, -1.11997137375817, 'EApertures', [0.008 0.008], 'UUID', 'L8J7hCqmcHm4jWW');... + atsbend('BD5H4', 0.398927492296932, 0.0303936245742024, -1.86297299994296, 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0342430714728858);... + atsbend('BD5H4', 0.398927492296932, 0.0303936245742024, -1.86297299994296, 'EApertures', [0.008 0.008], 'ExitAngle', 0.0342430714728858);... + atsbend('BD4H4', 0.0393049032024916, 0.00234342379845867, -1.11997137375817, 'EApertures', [0.008 0.008]);... + atmarker('GIRDEREND', 'EApertures', [0.008 0.008]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00775 0.00775]);... + atmarker('GIRDERSTART', 'EApertures', [0.0075 0.0075]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.0073 0.0073], 'UUID', 'dgUz9v1P3cIhFJt');... + atdrift('L071', 0.048, 'EApertures', [0.0068 0.0068]);... + atsextupole('SXD42', 0.09, -652.433055715131, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'vczmCS2I3dX2XPe');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_04_3', 'EApertures', [0.006 0.006]);... + atsbend('BQ6H4', 0.0689196396343699, -0.00144531683192883, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00144531683192883, 'UUID', 'VQATvLx5hDKf0vS');... + atsbend('BQ6H4', 0.0689196396343699, -0.00144531683192883, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00144531683192883);... + atdrift('L082', 0.0471064301693061, 'EApertures', [0.006 0.006]);... + atsextupole('SXF42_HCOR', 0.12, 832.798385062542, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'CMWqPWfqZ4gjMgl');... + atdrift('L084', 0.048820499745398, 'EApertures', [0.006 0.006]);... + atsbend('BQ4H4', 0.0577872115264688, -0.000385457006104762, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.000385457006104762, 'UUID', 'r3sGN1o3rzU8rui');... + atsbend('BQ4H4', 0.0577872115264688, -0.000385457006104762, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'ExitAngle', -0.000385457006104762);... + atdrift('L085', 0.100096014361354, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF4_QCORROCT_28_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -183.939387091905], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'mmRv2WY4Qih29Bq');... + atdrift('L05', 0.06, 'EApertures', [0.008 0.008]);... + atsextupole('SXD42_VCOR', 0.09, -652.433055715131, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.007 0.007], 'KickAngle', [0. 0.], 'UUID', 'cEDIY2S5ecG4Ga5');... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'FnCnyqGaFNU1onC');... + atdrift('L03', 0.176061846245862, 'Action', 'BPM', 'EApertures', [0.006 0.006]);... + atsbend('BD24', 0.0284984341976272, 0.00215787898333112, -1.18160211440423, 'EApertures', [0.008 0.008], 'UUID', 'cnJrEhYuryXfIan');... + atsbend('BD14', 0.0959771205127194, 0.00873427426315538, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0205293144427562);... + atsbend('BD14', 0.0959771205127194, 0.00873427426315538, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD14', 0.0959771205127194, 0.00873427426315538, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD14', 0.0959771205127194, 0.00873427426315538, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'ExitAngle', 0.0205293144427562);... + atsbend('BD24', 0.0284984341976272, 0.00215787898333112, -1.18160211440423, 'EApertures', [0.00722222222222222 0.00722222222222222]);... + atdrift('LBD1M', 0.0395472975018047, 'EApertures', [0.00611111111111111 0.00611111111111111]);... + atdrift('D05HM', 0.0250000000000106, 'EApertures', [0.006 0.006]);... + atquadrupole('Q15', 0.0669665183225528, -13.0158117569202, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.058, 'EApertures', [0.006 0.006], 'UUID', 'EMo5uD0tclkcXtD');... + atdrift('D03HM', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH12_COR', 0.06, -549.693929899786, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'RUECWMhacHyDJq7');... + atdrift('D022HMQ', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'AWLLmPtHT284WyM');... + atdrift('D040HMQ', 0.108, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_04_4', 'EApertures', [0.006 0.006]);... + atquadrupole('Q14', 0.0669654375650683, 13.020316581933, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.058, 'EApertures', [0.006 0.006], 'UUID', 'rH8zeFGHNBiaBSB');... + atdrift('D03HM', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH11', 0.06, -342.377584906705, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'UUID', 'q6FjfLiZYB9eiRk');... + atdrift('D022HM', 0.06, 'EApertures', [0.006 0.006]);... + atmultipole('OH11_QCORROCT_29', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.007 0.007], 'MaxOrder', 3, 'UUID', 'jR12dzIbfaDOLY4');... + atmonitor('BPM', 'EApertures', [0.008 0.008], 'UUID', 'zJtmGMrGO7o2ed5');... + atdrift('D06HM', 0.13, 'Action', 'BPM', 'EApertures', [0.00733333333333333 0.00733333333333333]);... + atquadrupole('Q13', 0.105549024737856, 14.4734284467452, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.098, 'EApertures', [0.006 0.006], 'UUID', 'J9MyrKMdQ8ft85X');... + atdrift('D032HM', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH10_COR', 0.06, 767.610099578133, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SaFXod7PuKCtACc');... + atdrift('D022HM', 0.06, 'EApertures', [0.006 0.006]);... + atmultipole('OH10_QCORROCT_30_QT', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'MaxOrder', 3, 'UUID', 'Kqqk5J8OVqry7C2');... + atdrift('D031HM', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('Q12', 0.0785288819736742, -13.6759084023114, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.07, 'EApertures', [0.006 0.006], 'UUID', 'iESDZXOZVLCY1Al');... + atmarker('GIRDEREND', 'EApertures', [0.006 0.006]);... + atmarker('AN-C04END', 'EApertures', [0.006 0.006]);... + atmarker('SD05MCSTART', 'EApertures', [0.006 0.006]);... + atmarker('VANNE_START', 'EApertures', [0.006 0.006]);... + atmarker('FCOR_5_1', 'UUID', 'f1o81AW3epHX4zg');... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'DSDnSMX4wSYteym');... + atdrift('SD1M_1', 0.322, 'Action', 'BPM', 'EApertures', [0.006 0.006]);... + atmarker('VANNE_END', 'EApertures', [0.01 0.01]);... + atdrift('SD1M_2', 0.287381847814076, 'Action', 'BPM', 'RApertures', [-0.0045 0.004 -0.0035 0.0035]);... + atmarker('ONDULEURMARK_START', 'EApertures', [0.0045 0.0035]);... + atdrift('SD1M_3', 1.29, 'Action', 'BPM', 'EApertures', [0.0045 0.0035]);... + atmarker('SD05MCCENTER', 'EApertures', [0.0045 0.0035]);... + atdrift('SD1M_4', 1.29, 'Action', 'BPM', 'EApertures', [0.0045 0.0035]);... + atmarker('ONDULEURMARK_END', 'EApertures', [0.0045 0.0035]);... + atdrift('SD1M_5', 0.287381847814076, 'Action', 'BPM', 'EApertures', [0.0045 0.0035]);... + atmarker('VANNE_START', 'EApertures', [0.01 0.01]);... + atdrift('SD1M_6', 0.322, 'Action', 'BPM', 'EApertures', [0.006 0.006]);... + atmarker('FCOR_5_2', 'UUID', 'hnQu21Zbe3PABJe');... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'yEXLNYVpmVyYe8N');... + atmarker('VANNE_END', 'EApertures', [0.006 0.006]);... + atmarker('SD05MCEND', 'EApertures', [0.006 0.006]);... + atmarker('AN-C05START', 'EApertures', [0.006 0.006]);... + atmarker('GIRDERSTART', 'EApertures', [0.006 0.006]);... + atquadrupole('Q12', 0.0785288819736742, -13.6759084023114, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.07, 'EApertures', [0.006 0.006], 'UUID', 'dHZFibfpaZ0s2Mv');... + atdrift('D031HM', 0.048, 'EApertures', [0.006 0.006]);... + atmultipole('OH10_QCORROCT_31_QT', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'MaxOrder', 3, 'UUID', 'dQCxiDn9wWVgBgE');... + atdrift('D022HM', 0.06, 'EApertures', [0.006 0.006]);... + atsextupole('SH10_COR', 0.06, 767.610099578133, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'fS4MYo3zObneJTA');... + atdrift('D032HM', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('Q13', 0.105549024737856, 14.4734284467452, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.098, 'EApertures', [0.006 0.006], 'UUID', 'gVYWSdWDAtZkHlq');... + atdrift('D06HM', 0.13, 'Action', 'BPM', 'EApertures', [0.006 0.006]);... + atmonitor('BPM', 'EApertures', [0.00633333333333333 0.00633333333333333], 'UUID', 'EcRo93r3hk3y1WC');... + atmultipole('OH11_QCORROCT_32', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'MaxOrder', 3, 'UUID', 'umMpImL9dApOyB8');... + atdrift('D022HM', 0.06, 'EApertures', [0.006 0.006]);... + atsextupole('SH11', 0.06, -342.377584906705, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'UUID', 'Vu7VwxtzGaAgokz');... + atdrift('D03HM', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('Q14', 0.0669654375650683, 13.020316581933, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.058, 'EApertures', [0.006 0.006], 'UUID', 'KODWaEoBEMy7iSs');... + atdrift('D040HMQ', 0.108, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'DkIJbed2eVibl9V');... + atdrift('D022HMQ', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH12_COR', 0.06, -549.693929899786, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'pmQzcQegfhkvsvv');... + atdrift('D03HM', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('Q15', 0.0669665183225528, -13.0158117569202, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.058, 'EApertures', [0.006 0.006], 'UUID', 'LDKuj2xV68qzceE');... + atdrift('D05HM', 0.0250000000000106, 'EApertures', [0.006 0.006]);... + atdrift('LBD1M', 0.0395472975018047, 'EApertures', [0.006 0.006]);... + atsbend('BD27', 0.0284984341976272, 0.00225714925227518, -1.18160211440423, 'EApertures', [0.00733333333333333 0.00733333333333333], 'UUID', 'DhHeeVfvQTY4hj5');... + atsbend('BD17', 0.0959771205127194, 0.00913608259524086, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0205293144427562);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524086, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524086, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524086, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.00793333333333333 0.00793333333333333], 'ExitAngle', 0.0205293144427562);... + atsbend('BD27', 0.0284984341976272, 0.00225714925227518, -1.18160211440423, 'EApertures', [0.0074 0.0074]);... + atdrift('L03', 0.176061846245862, 'EApertures', [0.006 0.006]);... + atsextupole('SXD51', 0.09, -647.766469752565, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0075, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'uY7QaxBUSpwd01M');... + atdrift('L04', 0.111275514615956, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_05_1', 'EApertures', [0.006 0.006]);... + atmultipole('OCTF5_QCORROCT_33_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. 353.486738211295], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'qeoMl2cgMCIeok0');... + atdrift('L084', 0.048820499745398, 'EApertures', [0.006 0.006]);... + atsbend('BQ4H7', 0.0577872115264688, -0.000403189428060752, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.000403189428060752, 'UUID', 'wYxmi8mZ4OItLOM');... + atsbend('BQ4H7', 0.0577872115264688, -0.000403189428060752, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'ExitAngle', -0.000403189428060752);... + atdrift('L084', 0.048820499745398, 'EApertures', [0.006 0.006]);... + atsextupole('SXF51_HCOR', 0.12, 840.822202380127, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'QXHfsq9iDxxdI4s');... + atdrift('L082', 0.0471064301693061, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444587, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444587, 'UUID', 'Vxny2uYt6OhVO2V');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444587, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444587);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'dPIIjcEfrLO62uK');... + atsextupole('SXD51_VCOR', 0.09, -647.766469752565, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'i2uwSt1vyF2Vfv9');... + atdrift('L071', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'PLeAoOukyqssRbJ');... + atmarker('GIRDEREND', 'EApertures', [0.006 0.006]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00766666666666667 0.00766666666666667]);... + atmarker('GIRDERSTART', 'EApertures', [0.008 0.008]);... + atsbend('BD4H7', 0.0393049032024916, 0.0024512298026507, -1.11997137375817, 'EApertures', [0.008 0.008], 'UUID', 'WJUYkmlCoPeV12x');... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702363, -1.86297299994296, 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0342430714728858);... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702363, -1.86297299994296, 'EApertures', [0.008 0.008], 'ExitAngle', 0.0342430714728858);... + atsbend('BD4H7', 0.0393049032024916, 0.0024512298026507, -1.11997137375817, 'EApertures', [0.008 0.008]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.0076 0.0076]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00715 0.00715], 'UUID', 'ioVrPTZmBrMQw1n');... + atdrift('L071', 0.048, 'EApertures', [0.00665 0.00665]);... + atsextupole('SXD5', 0.09, -673.701263957563, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'iIS16ndrztrfxXU');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_05_2', 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444587, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444587, 'UUID', 'BDRbnFdfsJDUMzg');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444587, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444587);... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF5_QCORROCT_34_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. 353.486738211295], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'VERbQ7lie96mZen');... + atdrift('L081', 0.06, 'EApertures', [0.006 0.006]);... + atsextupole('SXF5_HCOR', 0.12, 715.553794609745, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'fN30ItlfkJeDOw5');... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444587, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444587, 'UUID', 'MV5PIVorXodvirD');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444587, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444587);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'SGcuTX8VQZ81V4C');... + atsextupole('SXD5_VCOR', 0.09, -673.701263957563, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'diDxVxWUmlrK39g');... + atdrift('L071', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'GTQ1SH36btuvz8z');... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00766666666666667 0.00766666666666667]);... + atsbend('BD4H7', 0.0393049032024916, 0.0024512298026507, -1.11997137375817, 'EApertures', [0.008 0.008], 'UUID', 'leCNjQRWzm2JIBz');... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702363, -1.86297299994296, 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0342430714728858);... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702352, -1.86297299994296, 'EApertures', [0.008 0.008], 'ExitAngle', 0.0342430714728858);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008]);... + atmarker('GIRDEREND', 'EApertures', [0.0078974358974359 0.0078974358974359]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00764102564102564 0.00764102564102564]);... + atmarker('GIRDERSTART', 'EApertures', [0.00733333333333333 0.00733333333333333]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00717948717948718 0.00717948717948718], 'UUID', 'u7170HfLDtpn24D');... + atdrift('L071', 0.048, 'EApertures', [0.00666666666666667 0.00666666666666667]);... + atsextupole('SXD5', 0.09, -673.701263957563, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'cWZBIGzNjtgVb1O');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_05_3', 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444582, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444582, 'UUID', 'KBKCMznmutvA09S');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444582, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444582);... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF5_QCORROCT_35_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. 353.486738211295], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'Kyp6PcWXsPSyAcr');... + atdrift('L081', 0.06, 'EApertures', [0.006 0.006]);... + atsextupole('SXF53_HCOR', 0.12, 711.229968977946, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'Rwm0mFen1vCn84k');... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsbend('BQ6HC7', 0.0689196396343699, -0.00144054604712974, 8.95984862959226, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00144054604712974, 'UUID', 'y02hdDNPOs4L1Pv');... + atsbend('BQ6HC7', 0.0689196396343699, -0.00144054604712974, 8.95984862959226, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00144054604712974);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'a7qgUdwHj8pCrkD');... + atsextupole('SXD53_VCOR', 0.09, -625.758067765939, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'WCIWiOxZueWSuVX');... + atdrift('L071C', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'WTit1ijAvlbWwhR');... + atdrift('L073C', 0.0430773209057085, 'EApertures', [0.00714285714285714 0.00714285714285714]);... + atsbend('BD3HC7', 0.01, 0.000258818071001969, -1.37551837900507, 'EApertures', [0.008 0.00786363636363636], 'UUID', 'opaQweCpi9EAGoc');... + atsbend('BD4HC71', 0.03, 0.00188018240208164, -2.57765200910186, 'EApertures', [0.008 0.00765909090909091], 'EntranceAngle', 0.00982777557557598);... + atsbend('BD4HC7', 0.253621983633988, 0.0158951863469887, -2.57765200910186, 'EApertures', [0.008 0.00629545454545455]);... + atsbend('BD4HC71', 0.03, 0.00188018240208164, -2.57765200910186, 'EApertures', [0.008 0.005], 'ExitAngle', 0.00982777557557598);... + atsbend('BD5HC7', 0.0231155237960032, 0.00240516115877823, 0.0, 'EApertures', [0.008 0.005]);... + atsbend('BD6HC7', 0.0856857672699483, 0.0117810198825822, 0.0, 'EApertures', [0.008 0.005]);... + atsbend('BD6HC7', 0.0856857672699483, 0.0117810198825822, 0.0, 'EApertures', [0.008 0.005]);... + atsbend('BD5HC7', 0.0231155237960032, 0.00240516115877823, 0.0, 'EApertures', [0.008 0.005]);... + atsbend('BD4HC71', 0.03, 0.00188018240208164, -2.57765200910186, 'EApertures', [0.008 0.00521428571428571], 'EntranceAngle', 0.00982777557557598);... + atsbend('BD4HC7', 0.253621983633988, 0.0158951863469887, -2.57765200910186, 'EApertures', [0.008 0.00643877551020408]);... + atsbend('BD4HC71', 0.03, 0.00188018240208164, -2.57765200910186, 'EApertures', [0.008 0.00766326530612245], 'ExitAngle', 0.00982777557557598);... + atsbend('BD3HC7', 0.01, 0.000258818071001969, -1.37551837900507, 'EApertures', [0.008 0.00781632653061225]);... + atdrift('L073C', 0.0430773209057085, 'EApertures', [0.00794117647058824 0.00794117647058824]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00741176470588235 0.00741176470588235], 'UUID', 'RTAvlisNwopfpdE');... + atdrift('L071C', 0.048, 'EApertures', [0.00676470588235294 0.00676470588235294]);... + atsextupole('SXD53', 0.09, -625.758067765939, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.007, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'OSluTbsDoqcWgAe');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_05_4', 'EApertures', [0.006 0.006]);... + atsbend('BQ6HC7', 0.0689196396343699, -0.00144054604712974, 8.95984862959226, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00144054604712974, 'UUID', 'EWRFJcNhUmUlQ7Z');... + atsbend('BQ6HC7', 0.0689196396343699, -0.00144054604712974, 8.95984862959226, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00144054604712974);... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsextupole('SXF53_HCOR', 0.12, 711.229968977946, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'lunNzNgucTghasQ');... + atdrift('L081', 0.06, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF5_QCORROCT_36_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. 353.486738211295], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'RRPU5kDgezuTmpr');... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444582, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444582, 'UUID', 'PUjx2CXrOAdLtmj');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444582, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444582);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'mG71Rdw9v0Ml6pi');... + atsextupole('SXD5_VCOR', 0.09, -673.701263957563, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'W2edaUwJcgpLZUH');... + atdrift('L071', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'lAhP2wlkk7HeTqc');... + atmarker('GIRDEREND', 'EApertures', [0.006 0.006]);... + atdrift('L073', 0.0372677805661953, 'RApertures', [-0.008 0.0045 -0.008 0.008 ]);... + atmarker('MVUV_DISCO', 'RApertures', [-0.008 0.0045 -0.008 0.008 ]);... + atmarker('GIRDERSTART', 'RApertures', [-0.008 0.0045 -0.008 0.008 ]);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008], 'UUID', 'oKVtlV9l5WgaHkH');... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702352, -1.86297299994296, 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0342430714728858);... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702363, -1.86297299994296, 'EApertures', [0.008 0.008], 'ExitAngle', 0.0342430714728858);... + atsbend('BD4H7', 0.0393049032024916, 0.0024512298026507, -1.11997137375817, 'EApertures', [0.008 0.008]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.0076 0.0076]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00715 0.00715], 'UUID', 'ICDTU0YWWklWFFm');... + atdrift('L071', 0.048, 'EApertures', [0.00665 0.00665]);... + atsextupole('SXD5', 0.09, -673.701263957563, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'JWZsz0EJwooruiY');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_05_5', 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444587, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444587, 'UUID', 'IEchnmX1z2ZDMmB');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444587, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444587);... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsextupole('SXF5_HCOR', 0.12, 715.553794609745, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'sUb8JSzVhEUP6ks');... + atdrift('L081', 0.06, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF5_QCORROCT_37_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. 353.486738211295], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'JGlsZRQ4crm10xN');... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444587, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444587, 'UUID', 'D9z6AW2hTQhrZRI');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444587, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444587);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'HivnXnoe8mnAWu1');... + atsextupole('SXD5_VCOR', 0.09, -673.701263957563, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'FuS5PPc5ABgQ1vk');... + atdrift('L071', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'tfVyi7Nm92O26um');... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00766666666666667 0.00766666666666667]);... + atsbend('BD4H7', 0.0393049032024916, 0.0024512298026507, -1.11997137375817, 'EApertures', [0.008 0.008], 'UUID', 'l7zWyqoKPHXdWoS');... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702363, -1.86297299994296, 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0342430714728858);... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702363, -1.86297299994296, 'EApertures', [0.008 0.008], 'ExitAngle', 0.0342430714728858);... + atsbend('BD4H7', 0.0393049032024916, 0.0024512298026507, -1.11997137375817, 'EApertures', [0.008 0.008]);... + atmarker('GIRDEREND', 'EApertures', [0.00785 0.00785]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.0076 0.0076]);... + atmarker('GIRDERSTART', 'EApertures', [0.0073 0.0073]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00715 0.00715], 'UUID', 'vPHRMMA8F4QiBc3');... + atdrift('L071', 0.048, 'EApertures', [0.00665 0.00665]);... + atsextupole('SXD52', 0.09, -734.183150728341, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'MuNVWyx8vJ34QwF');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444587, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444587, 'UUID', 'AG1arMM289xgOS6');... + atmarker('CROTCH_05_6', 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444587, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444587);... + atdrift('L082', 0.0471064301693061, 'EApertures', [0.006 0.006]);... + atsextupole('SXF52_HCOR', 0.12, 788.330339912278, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'r61IR18D3bLpDlg');... + atdrift('L084', 0.048820499745398, 'EApertures', [0.006 0.006]);... + atsbend('BQ4H7', 0.0577872115264688, -0.000403189428060752, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.000403189428060752, 'UUID', 'xMihhq364PJGn0B');... + atsbend('BQ4H7', 0.0577872115264688, -0.000403189428060752, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'ExitAngle', -0.000403189428060752);... + atdrift('L085', 0.100096014361354, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF5_QCORROCT_38_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. 353.486738211295], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'YqBhcZTlllYtQDo');... + atdrift('L05', 0.06, 'EApertures', [0.006 0.006]);... + atsextupole('SXD52_VCOR', 0.09, -734.183150728341, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'UpU0LToJkaiAvty');... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'CozhZLEcQ6o1oNc');... + atdrift('L03', 0.176061846245862, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atsbend('BD27', 0.0284984341976272, 0.00225714925227518, -1.18160211440423, 'EApertures', [0.008 0.008], 'UUID', 'bMSMB1ojVuaFab9');... + atsbend('BD17', 0.0959771205127194, 0.00913608259524086, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0205293144427562);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524086, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524086, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524086, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'ExitAngle', 0.0205293144427562);... + atsbend('BD27', 0.0284984341976272, 0.00225714925227518, -1.18160211440423, 'EApertures', [0.0085 0.0085]);... + atdrift('LBD1T', 0.0395472975018047, 'EApertures', [0.0085 0.0085]);... + atdrift('D021HTQ', 0.0529998883331588, 'EApertures', [0.0085 0.0085]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.0085 0.0085], 'UUID', 'R9uIFeYyH3tOmM0');... + atdrift('D022HTQ', 0.048, 'EApertures', [0.0085 0.0085]);... + atsextupole('SH15_VCOR', 0.075, -151.263624499999, 'Action', 'SxtHarm', 'BoDiameter', 0.021, 'BoGap', 0.01, 'BoLength', 0.075, 'EApertures', [0.0085 0.0085], 'KickAngle', [0. 0.], 'UUID', 'Yt4Pmr5P0VT1CCD');... + atdrift('D05HT', 0.22, 'EApertures', [0.0085 0.0085]);... + atquadrupole('Q21', 0.118594861317721, -8.24976089349076, 'BoDiameter', 0.023, 'BoGap', 0.01, 'BoLength', 0.106, 'EApertures', [0.0085 0.0085], 'UUID', 'tFyIhbdwGyaoako');... + atmonitor('BPM', 'EApertures', [0.0085 0.0085], 'UUID', 'Q47EbEOOLWh6mh3');... + atdrift('D041HT', 0.18, 'Action', 'BPM', 'EApertures', [0.0085 0.0085]);... + atmarker('CROTCH_05_7', 'EApertures', [0.0085 0.0085]);... + atquadrupole('Q20', 0.122440853589187, 8.42972886822337, 'BoDiameter', 0.023, 'BoGap', 0.01, 'BoLength', 0.11, 'EApertures', [0.0085 0.0085], 'UUID', 'YOhUiAIuDHGZDtq');... + atdrift('D03HT', 0.048, 'EApertures', [0.0085 0.0085]);... + atsextupole('SH14_HCOR', 0.075, -335.348316276613, 'Action', 'SxtHarm', 'BoDiameter', 0.021, 'BoGap', 0.01, 'BoLength', 0.075, 'EApertures', [0.0085 0.0085], 'KickAngle', [0. 0.], 'UUID', 'WO4Bng8CvdSF6TX');... + atdrift('D022HT', 0.06, 'EApertures', [0.0085 0.0085]);... + atmultipole('OH14_QCORROCT_39', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.021, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.0085 0.0085], 'MaxOrder', 3, 'UUID', 'YyqNQiAOOXDe5pk');... + atdrift('D03HT', 0.048, 'EApertures', [0.0085 0.0085]);... + atquadrupole('Q19', 0.118733643867383, 8.01541064610388, 'BoDiameter', 0.023, 'BoGap', 0.01, 'BoLength', 0.106, 'EApertures', [0.0085 0.0085], 'UUID', 'eOHX368Fl1w0ajy');... + atdrift('D03HT', 0.048, 'EApertures', [0.0085 0.0085]);... + atsextupole('SH13_COR', 0.075, 476.313437796132, 'Action', 'SxtHarm', 'BoDiameter', 0.021, 'BoGap', 0.01, 'BoLength', 0.075, 'EApertures', [0.0085 0.0085], 'KickAngle', [0. 0.], 'UUID', 'e5I2aRNUvRyFq7N');... + atdrift('D022HT', 0.06, 'EApertures', [0.008 0.008]);... + atmultipole('OH13_QCORROCT_40_QT', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.021, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.008 0.008], 'MaxOrder', 3, 'UUID', 'enJ2TUWoKke6vJa');... + atdrift('D03HT', 0.048, 'EApertures', [0.008 0.008]);... + atquadrupole('Q18', 0.0932053766613153, -7.2301598888015, 'BoDiameter', 0.023, 'BoGap', 0.01, 'BoLength', 0.08, 'EApertures', [0.008 0.008], 'UUID', 'Zada4IGN6DfSDTe');... + atmarker('GIRDEREND', 'EApertures', [0.008 0.008]);... + atmarker('AN-C05END', 'EApertures', [0.008 0.008]);... + atmarker('SD06LSTART', 'EApertures', [0.008 0.008]);... + atmarker('VANNE_START', 'EApertures', [0.008 0.008]);... + atmarker('FCOR_6_1', 'UUID', 'sb2uPyAT4brkEAq');... + atmonitor('BPM', 'EApertures', [0.008 0.008], 'UUID', 'rOkFifu7LAe0Unx');... + atdrift('SD12T_1', 0.272, 'Action', 'BPM', 'EApertures', [0.0115238095238095 0.0115238095238095]);... + atmarker('VANNE_END', 'EApertures', [0.012 0.012]);... + atdrift('SD12T_2', 0.309170347288528, 'Action', 'BPM', 'EApertures', [0.03 0.03]);... + atmarker('SYSTEME_HARMONIQUE_START', 'EApertures', [0.03 0.03]);... + atmarker('TRANSITION_RFHARM_AMONT_START', 'EApertures', [0.03 0.03]);... + atdrift('SD12T_3', 0.25, 'Action', 'BPM', 'EApertures', [0.03 0.03]);... + atmarker('TRANSITION_RFHARM_AMONT_END', 'EApertures', [0.03 0.03]);... + atmarker('VANNE_RFHARM_AMONT_START', 'EApertures', [0.03 0.03]);... + atdrift('SD12T_4', 0.082, 'Action', 'BPM', 'EApertures', [0.03 0.03]);... + atmarker('VANNE_RFHARM_AMONT_END', 'EApertures', [0.03 0.03]);... + atdrift('SD12T_5', 0.25, 'Action', 'BPM', 'EApertures', [0.03 0.03]);... + atmarker('BLOC_CAVITE_HARMONIQUE_START', 'EApertures', [0.03 0.03]);... + atdrift('SD12T_6', 0.78, 'Action', 'BPM', 'EApertures', [0.03 0.03]);... + atmarker('SD06LACENTER', 'EApertures', [0.03 0.03]);... + atrfcavity('RFHARMON', 0.0, 0.0, 1409257008.41716, 1664, 2750000000.0, 'EApertures', [0.03 0.03]);... + atdrift('SD12T_7', 0.78, 'Action', 'BPM', 'EApertures', [0.03 0.03]);... + atmarker('BLOC_CAVITE_HARMONIQUE_END', 'EApertures', [0.03 0.03]);... + atdrift('SD12T_8', 0.25, 'Action', 'BPM', 'EApertures', [0.03 0.03]);... + atmarker('VANNE_RFHARM_AVALLE_START', 'EApertures', [0.0085 0.0085]);... + atdrift('SD12T_9', 0.082, 'Action', 'BPM', 'EApertures', [0.0085 0.0085]);... + atmarker('VANNE_RFHARM_AVALLE_END', 'EApertures', [0.0085 0.0085]);... + atmarker('TRANSITION_RFHARM_AVALLE_START', 'EApertures', [0.0085 0.0085]);... + atdrift('SD12T_10', 0.3, 'Action', 'BPM', 'EApertures', [0.0085 0.0085]);... + atmarker('TRANSITION_RFHARM_AVALLE_END', 'EApertures', [0.0085 0.0085]);... + atmarker('SYSTEME_HARMONIQUE_END', 'EApertures', [0.0085 0.0085]);... + atdrift('SD12T_11', 0.259170347288528, 'Action', 'BPM', 'EApertures', [0.0085 0.0085]);... + atmarker('VANNE_START', 'EApertures', [0.0085 0.0085]);... + atdrift('SD12T_12', 0.272, 'Action', 'BPM', 'EApertures', [0.0085 0.0085]);... + atmarker('FCOR_6_2', 'UUID', 'zW1ylc5vweE2wIr');... + atmonitor('BPM', 'EApertures', [0.0085 0.0085], 'UUID', 'iMkR2jgAIxkxfjQ');... + atmarker('VANNE_END', 'EApertures', [0.0085 0.0085]);... + atmarker('GIRDERSTART', 'EApertures', [0.008 0.008]);... + atquadrupole('Q17', 0.0929982217794612, -7.83896314384854, 'BoDiameter', 0.023, 'BoGap', 0.01, 'BoLength', 0.08, 'EApertures', [0.0085 0.0085], 'UUID', 'NPQWPre3asOrD9Q');... + atdrift('D032HT', 0.048, 'EApertures', [0.0085 0.0085]);... + atmultipole('OH16_QCORROCT_41', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.021, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.0085 0.0085], 'MaxOrder', 3, 'UUID', 'J3pQbRQkRWGHqUW');... + atdrift('D022HT', 0.06, 'EApertures', [0.0085 0.0085]);... + atsextupole('SH16_COR', 0.075, 0.0, 'Action', 'SxtHarm', 'BoDiameter', 0.021, 'BoGap', 0.01, 'BoLength', 0.075, 'EApertures', [0.0085 0.0085], 'KickAngle', [0. 0.], 'UUID', 'qCs4LS5kVxYeQjH');... + atdrift('D031HT', 0.048, 'EApertures', [0.0085 0.0085]);... + atquadrupole('Q16', 0.132220666360538, 8.59624027008373, 'BoDiameter', 0.023, 'BoGap', 0.01, 'BoLength', 0.12, 'EApertures', [0.0085 0.0085], 'UUID', 'SNEjjrWmR5mYbA7');... + atdrift('D031HT', 0.048, 'EApertures', [0.0085 0.0085]);... + atsextupole('SH16_COR', 0.075, 0.0, 'Action', 'SxtHarm', 'BoDiameter', 0.021, 'BoGap', 0.01, 'BoLength', 0.075, 'EApertures', [0.0085 0.0085], 'KickAngle', [0. 0.], 'UUID', 'oSeE0x8txolG5sL');... + atdrift('D022HT', 0.06, 'EApertures', [0.0085 0.0085]);... + atmultipole('OH16_QCORROCT_42', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.021, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.0085 0.0085], 'MaxOrder', 3, 'UUID', 'YfZpMVlqBjgAA6B');... + atdrift('D032HT', 0.048, 'EApertures', [0.0085 0.0085]);... + atquadrupole('Q17', 0.0929982217794612, -7.83896314384854, 'BoDiameter', 0.023, 'BoGap', 0.01, 'BoLength', 0.08, 'EApertures', [0.0085 0.0085], 'UUID', 'MPYWTy0fMtJaIxk');... + atmarker('GIRDEREND', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.0085 0.0085], 'UUID', 'hIHvJKwREiSwgih');... + atmarker('VANNE_START', 'EApertures', [0.0085 0.0085]);... + atmarker('FCOR_6_3', 'UUID', 'hAqbarR30s9MkVm');... + atdrift('SD34T_1', 0.272, 'Action', 'BPM', 'EApertures', [0.012 0.012]);... + atmarker('VANNE_END', 'EApertures', [0.012 0.012]);... + atdrift('SD34T_2', 0.01, 'Action', 'BPM', 'EApertures', [0.012 0.012]);... + atmarker('CAVITE_FBL_START', 'EApertures', [0.012 0.012]);... + atdrift('SD34T_3', 0.3, 'Action', 'BPM', 'EApertures', [0.016 0.016]);... + atmarker('CAVITE_FBL_END', 'EApertures', [0.016 0.016]);... + atmarker('ELECTRODES_RF_START', 'EApertures', [0.016 0.016]);... + atdrift('SD34T_4', 0.3, 'Action', 'BPM', 'EApertures', [0.016 0.016]);... + atmarker('ELECTRODES_RF_END', 'EApertures', [0.016 0.016]);... + atdrift('SD34T_5', 0.01, 'Action', 'BPM', 'EApertures', [0.016 0.016]);... + atmarker('ONDULEURMARK_START', 'EApertures', [0.016 0.016]);... + atdrift('SD34T_6', 0.991, 'Action', 'BPM', 'RApertures', [-0.0045 0.004 -0.0035 0.0035]);... + atmarker('SD06LB_ONDULEURCENTER', 'EApertures', [0.0045 0.0035]);... + atdrift('SD34T_7', 0.991, 'Action', 'BPM', 'EApertures', [0.0045 0.0035]);... + atmarker('ONDULEURMARK_END', 'EApertures', [0.0045 0.0035]);... + atdrift('SD34T_8', 0.01, 'Action', 'BPM', 'EApertures', [0.0045 0.0035]);... + atmarker('STRIPLINE_SECOURS_START', 'EApertures', [0.0045 0.0035]);... + atdrift('SD34T_9', 0.542, 'Action', 'BPM', 'EApertures', [0.012 0.012]);... + atmarker('STRIPLINE_SECOURS_END', 'EApertures', [0.012 0.012]);... + atdrift('SD34T_10', 0.01, 'Action', 'BPM', 'EApertures', [0.012 0.012]);... + atmarker('SHAKER_START', 'EApertures', [0.012 0.012]);... + atdrift('SD34T_11', 0.1706, 'Action', 'BPM', 'EApertures', [0.012 0.012]);... + atmarker('SHAKER_END', 'EApertures', [0.012 0.012]);... + atdrift('SD34T_12', 0.00774069457705604, 'Action', 'BPM', 'EApertures', [0.012 0.012]);... + atmarker('VANNE_START', 'EApertures', [0.012 0.012]);... + atdrift('SD34T_13', 0.272, 'Action', 'BPM', 'EApertures', [0.0115238095238095 0.0115238095238095]);... + atmarker('FCOR_6_4', 'UUID', 'EEMtOOSN4pQUB7p');... + atmarker('VANNE_END', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.008 0.008], 'UUID', 'hFaGAwYEKjpG3Zs');... + atmarker('SD06LEND', 'EApertures', [0.008 0.008]);... + atmarker('AN-C06START', 'EApertures', [0.008 0.008]);... + atmarker('GIRDERSTART', 'EApertures', [0.008 0.008]);... + atquadrupole('Q18', 0.0932053766613153, -7.2301598888015, 'BoDiameter', 0.023, 'BoGap', 0.01, 'BoLength', 0.08, 'EApertures', [0.008 0.008], 'UUID', 'LtFYgXu2NsBbB0l');... + atdrift('D03HT', 0.048, 'EApertures', [0.008 0.008]);... + atmultipole('OH13_QCORROCT_43_QT', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.021, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.008 0.008], 'MaxOrder', 3, 'UUID', 'KrdKhBaA858RMnM');... + atdrift('D022HT', 0.06, 'EApertures', [0.008 0.008]);... + atsextupole('SH13_COR', 0.075, 476.313437796132, 'Action', 'SxtHarm', 'BoDiameter', 0.021, 'BoGap', 0.01, 'BoLength', 0.075, 'EApertures', [0.0085 0.0085], 'KickAngle', [0. 0.], 'UUID', 'duZUUi8Ao4cy1Ik');... + atdrift('D03HT', 0.048, 'EApertures', [0.0085 0.0085]);... + atquadrupole('Q19', 0.118733643867383, 8.01541064610388, 'BoDiameter', 0.023, 'BoGap', 0.01, 'BoLength', 0.106, 'EApertures', [0.0085 0.0085], 'UUID', 'ZapXYLedwlT4usw');... + atdrift('D03HT', 0.048, 'EApertures', [0.0085 0.0085]);... + atmultipole('OH14_QCORROCT_44', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.021, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.0085 0.0085], 'MaxOrder', 3, 'UUID', 'kL3afxzDD8J9RYM');... + atdrift('D022HT', 0.06, 'EApertures', [0.0085 0.0085]);... + atsextupole('SH14_HCOR', 0.075, -335.348316276613, 'Action', 'SxtHarm', 'BoDiameter', 0.021, 'BoGap', 0.01, 'BoLength', 0.075, 'EApertures', [0.0085 0.0085], 'KickAngle', [0. 0.], 'UUID', 'pCmY5eRssiK103k');... + atdrift('D03HT', 0.048, 'EApertures', [0.0085 0.0085]);... + atquadrupole('Q20', 0.122440853589187, 8.42972886822337, 'BoDiameter', 0.023, 'BoGap', 0.01, 'BoLength', 0.11, 'EApertures', [0.0085 0.0085], 'UUID', 'ELYKz2LVGlidmf8');... + atdrift('D041HT', 0.18, 'Action', 'BPM', 'EApertures', [0.0085 0.0085]);... + atmonitor('BPM', 'EApertures', [0.0085 0.0085], 'UUID', 'mqsq8qyVY5cwydv');... + atquadrupole('Q21', 0.118594861317721, -8.24976089349076, 'BoDiameter', 0.023, 'BoGap', 0.01, 'BoLength', 0.106, 'EApertures', [0.0085 0.0085], 'UUID', 'BVYcXOYfAg2GFRf');... + atdrift('D05HT', 0.22, 'EApertures', [0.0085 0.0085]);... + atsextupole('SH15_VCOR', 0.075, -151.263624499999, 'Action', 'SxtHarm', 'BoDiameter', 0.021, 'BoGap', 0.01, 'BoLength', 0.075, 'EApertures', [0.0085 0.0085], 'KickAngle', [0. 0.], 'UUID', 'NwaP5D6Ne6xDMy2');... + atdrift('D022HTQ', 0.048, 'EApertures', [0.0085 0.0085]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.0085 0.0085], 'UUID', 'CWgbcqyUTm014FW');... + atdrift('D021HTQ', 0.0529998883331588, 'EApertures', [0.0085 0.0085]);... + atdrift('LBD1T', 0.0395472975018047, 'EApertures', [0.0085 0.0085]);... + atsbend('BD27', 0.0284984341976272, 0.00225714925227518, -1.18160211440423, 'EApertures', [0.008 0.008], 'UUID', 'sTpDahHgPGmeylQ');... + atsbend('BD17', 0.0959771205127194, 0.00913608259524086, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0205293144427562);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524086, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524086, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524086, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'ExitAngle', 0.0205293144427562);... + atsbend('BD27', 0.0284984341976272, 0.00225714925227518, -1.18160211440423, 'EApertures', [0.00772413793103448 0.00772413793103448]);... + atdrift('L03', 0.176061846245862, 'EApertures', [0.006 0.006]);... + atsextupole('SXD52', 0.09, -734.183150728341, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0075, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'feRkRv4OSRvi1JL');... + atdrift('L04', 0.111275514615956, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_06_1', 'EApertures', [0.006 0.006]);... + atmultipole('OCTF5_QCORROCT_45_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. 353.486738211295], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'TjoA3ER18Dv6weZ');... + atdrift('L084', 0.048820499745398, 'EApertures', [0.006 0.006]);... + atsbend('BQ4H7', 0.0577872115264688, -0.000403189428060752, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.000403189428060752, 'UUID', 'Ah25Fot91oGtmKo');... + atsbend('BQ4H7', 0.0577872115264688, -0.000403189428060752, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'ExitAngle', -0.000403189428060752);... + atdrift('L084', 0.048820499745398, 'EApertures', [0.006 0.006]);... + atsextupole('SXF52_HCOR', 0.12, 788.330339912278, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'XcH14x7rvtvwnz5');... + atdrift('L082', 0.0471064301693061, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444587, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444587, 'UUID', 'ZGQJciG0EHbksS2');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444587, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444587);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'M820EZyM63gRRwO');... + atsextupole('SXD52_VCOR', 0.09, -734.183150728341, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'KgkcibKi5SS9Drf');... + atdrift('L071', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'ZCHbmyNd1vWwuDn');... + atmarker('GIRDEREND', 'EApertures', [0.006 0.006]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00766666666666667 0.00766666666666667]);... + atmarker('GIRDERSTART', 'EApertures', [0.008 0.008]);... + atsbend('BD4H7', 0.0393049032024916, 0.0024512298026507, -1.11997137375817, 'EApertures', [0.008 0.008], 'UUID', 'eMmuhUAvuXiWDis');... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702363, -1.86297299994296, 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0342430714728858);... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702363, -1.86297299994296, 'EApertures', [0.008 0.008], 'ExitAngle', 0.0342430714728858);... + atsbend('BD4H7', 0.0393049032024916, 0.0024512298026507, -1.11997137375817, 'EApertures', [0.008 0.008]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.0076 0.0076]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00715 0.00715], 'UUID', 'gWrQWLBt2z8lwrr');... + atdrift('L071', 0.048, 'EApertures', [0.00665 0.00665]);... + atsextupole('SXD5', 0.09, -673.701263957563, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'S2fHK5YWdBC88X0');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_06_2', 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444587, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444587, 'UUID', 'HS3ynQKLqECave1');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444587, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444587);... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF5_QCORROCT_46_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. 353.486738211295], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'zc50mK31yR5mklM');... + atdrift('L081', 0.06, 'EApertures', [0.006 0.006]);... + atsextupole('SXF5_HCOR', 0.12, 715.553794609745, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'Sv5s7GdVGv2C1vp');... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444587, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444587, 'UUID', 'Q5BGINph5ydNBXA');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444587, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444587);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'wDfBQRw7NdJrrMD');... + atsextupole('SXD5_VCOR', 0.09, -673.701263957563, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'z2BNBz35rKwk6Dm');... + atdrift('L071', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'Cgnkh04Sd7sE4Xw');... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.0076 0.0076]);... + atsbend('BD4H7', 0.0393049032024916, 0.0024512298026507, -1.11997137375817, 'EApertures', [0.008 0.008], 'UUID', 'aoncCuC5QKkekCN');... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702363, -1.86297299994296, 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0342430714728858);... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702352, -1.86297299994296, 'EApertures', [0.008 0.008], 'ExitAngle', 0.0342430714728858);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008]);... + atmarker('GIRDEREND', 'EApertures', [0.0078974358974359 0.0078974358974359]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00758974358974359 0.00758974358974359]);... + atmarker('GIRDERSTART', 'EApertures', [0.00733333333333333 0.00733333333333333]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00717948717948718 0.00717948717948718], 'UUID', 'AG7GypGxdh728yW');... + atdrift('L071', 0.048, 'EApertures', [0.00666666666666667 0.00666666666666667]);... + atsextupole('SXD5', 0.09, -673.701263957563, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 's2PWw6UGJZNAKva');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_06_3', 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444582, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444582, 'UUID', 'ldnasZbtRSBiHOk');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444582, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444582);... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF5_QCORROCT_47_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. 353.486738211295], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'v8QsCTWxKLxD2a5');... + atdrift('L081', 0.06, 'EApertures', [0.006 0.006]);... + atsextupole('SXF53_HCOR', 0.12, 711.229968977946, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'Ta2ycJ8DkYA9ars');... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsbend('BQ6HC7', 0.0689196396343699, -0.00144054604712974, 8.95984862959226, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00144054604712974, 'UUID', 'mp2XgN22cL43Szn');... + atsbend('BQ6HC7', 0.0689196396343699, -0.00144054604712974, 8.95984862959226, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00144054604712974);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'te2hub5tEF4SnxO');... + atsextupole('SXD53_VCOR', 0.09, -625.758067765939, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'pRyCsCxjwSrgxif');... + atdrift('L071C', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'VR8rhWtmTvVbJCg');... + atdrift('L073C', 0.0430773209057085, 'EApertures', [0.00742857142857143 0.00742857142857143]);... + atsbend('BD3HC7', 0.01, 0.000258818071001969, -1.37551837900507, 'EApertures', [0.008 0.00786363636363636], 'UUID', 'POQA0i9pOix7RTt');... + atsbend('BD4HC71', 0.03, 0.00188018240208164, -2.57765200910186, 'EApertures', [0.008 0.00765909090909091], 'EntranceAngle', 0.00982777557557598);... + atsbend('BD4HC7', 0.253621983633988, 0.0158951863469887, -2.57765200910186, 'EApertures', [0.008 0.00629545454545455]);... + atsbend('BD4HC71', 0.03, 0.00188018240208164, -2.57765200910186, 'EApertures', [0.008 0.005], 'ExitAngle', 0.00982777557557598);... + atsbend('BD5HC7', 0.0231155237960032, 0.00240516115877823, 0.0, 'EApertures', [0.008 0.005]);... + atsbend('BD6HC7', 0.0856857672699483, 0.0117810198825822, 0.0, 'EApertures', [0.008 0.005]);... + atsbend('BD6HC7', 0.0856857672699483, 0.0117810198825822, 0.0, 'EApertures', [0.008 0.005]);... + atsbend('BD5HC7', 0.0231155237960032, 0.00240516115877823, 0.0, 'EApertures', [0.008 0.005]);... + atsbend('BD4HC71', 0.03, 0.00188018240208164, -2.57765200910186, 'EApertures', [0.008 0.00518367346938775], 'EntranceAngle', 0.00982777557557598);... + atsbend('BD4HC7', 0.253621983633988, 0.0158951863469887, -2.57765200910186, 'EApertures', [0.008 0.00640816326530612]);... + atsbend('BD4HC71', 0.03, 0.00188018240208164, -2.57765200910186, 'EApertures', [0.008 0.00763265306122449], 'ExitAngle', 0.00982777557557598);... + atsbend('BD3HC7', 0.01, 0.000258818071001969, -1.37551837900507, 'EApertures', [0.008 0.00781632653061225]);... + atdrift('L073C', 0.0430773209057085, 'EApertures', [0.008 0.008]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00739393939393939 0.00739393939393939], 'UUID', 'FMAGeUUi7x79WT6');... + atdrift('L071C', 0.048, 'EApertures', [0.00678787878787879 0.00678787878787879]);... + atsextupole('SXD53', 0.09, -625.758067765939, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.007, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'W73DthizyQli9zg');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_06_4', 'EApertures', [0.006 0.006]);... + atsbend('BQ6HC7', 0.0689196396343699, -0.00144054604712974, 8.95984862959226, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00144054604712974, 'UUID', 'IF3IxdXFNGbyxsV');... + atsbend('BQ6HC7', 0.0689196396343699, -0.00144054604712974, 8.95984862959226, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00144054604712974);... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsextupole('SXF53_HCOR', 0.12, 711.229968977946, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'Qa7WjOMPMMny5zF');... + atdrift('L081', 0.06, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF5_QCORROCT_48_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. 353.486738211295], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'AbFdMz3A65I2O7K');... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444582, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444582, 'UUID', 'WFCSa2SxyFvKrv0');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444582, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444582);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'dCRUtRLU0hIhvka');... + atsextupole('SXD5_VCOR', 0.09, -673.701263957563, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'Y8sHX9YDS1wdBol');... + atdrift('L071', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'k9eZ8jJk8ExicZl');... + atmarker('GIRDEREND', 'EApertures', [0.006 0.006]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00766666666666667 0.00766666666666667]);... + atmarker('GIRDERSTART', 'EApertures', [0.008 0.008]);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008], 'UUID', 'NqJ5lERfR3HHdGZ');... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702352, -1.86297299994296, 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0342430714728858);... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702363, -1.86297299994296, 'EApertures', [0.008 0.008], 'ExitAngle', 0.0342430714728858);... + atsbend('BD4H7', 0.0393049032024916, 0.0024512298026507, -1.11997137375817, 'EApertures', [0.008 0.008]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.0076 0.0076]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00715 0.00715], 'UUID', 'ZpuX7pXjSWZm0cb');... + atdrift('L071', 0.048, 'EApertures', [0.00665 0.00665]);... + atsextupole('SXD5', 0.09, -673.701263957563, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'eBwYIenA6fVW4YU');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_06_5', 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444587, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444587, 'UUID', 'GgQSyydxXSX7122');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444587, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444587);... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsextupole('SXF5_HCOR', 0.12, 715.553794609745, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'NtXUuY0CEwyOxB3');... + atdrift('L081', 0.06, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF5_QCORROCT_49_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. 353.486738211295], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'GA3gqqrkTDAotFP');... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444587, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444587, 'UUID', 'KtCErG1nNRmWaJP');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444587, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444587);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'VTqyhuSQMG3pLhk');... + atsextupole('SXD5_VCOR', 0.09, -673.701263957563, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'EoTTSXa9SPOxXq8');... + atdrift('L071', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'EkiRJSioBWprNNP');... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00766666666666667 0.00766666666666667]);... + atsbend('BD4H7', 0.0393049032024916, 0.0024512298026507, -1.11997137375817, 'EApertures', [0.008 0.008], 'UUID', 'F0on1NPMQejTCmq');... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702363, -1.86297299994296, 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0342430714728858);... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702363, -1.86297299994296, 'EApertures', [0.008 0.008], 'ExitAngle', 0.0342430714728858);... + atsbend('BD4H7', 0.0393049032024916, 0.0024512298026507, -1.11997137375817, 'EApertures', [0.008 0.008]);... + atmarker('GIRDEREND', 'EApertures', [0.00785 0.00785]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.0076 0.0076]);... + atmarker('GIRDERSTART', 'EApertures', [0.0073 0.0073]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00715 0.00715], 'UUID', 'i3cXCHnis76ow8w');... + atdrift('L071', 0.048, 'EApertures', [0.00665 0.00665]);... + atsextupole('SXD51', 0.09, -647.766469752565, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'TeSYnlNreJwINji');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444587, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444587, 'UUID', 'UlVIIEp9gmj2OA2');... + atmarker('CROTCH_06_6', 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444587, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444587);... + atdrift('L082', 0.0471064301693061, 'EApertures', [0.006 0.006]);... + atsextupole('SXF51_HCOR', 0.12, 840.822202380127, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'UJTwjrU0KXp8Tcx');... + atdrift('L084', 0.048820499745398, 'EApertures', [0.006 0.006]);... + atsbend('BQ4H7', 0.0577872115264688, -0.000403189428060752, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.000403189428060752, 'UUID', 'ANsWdPweQnSGGYg');... + atsbend('BQ4H7', 0.0577872115264688, -0.000403189428060752, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'ExitAngle', -0.000403189428060752);... + atdrift('L085', 0.100096014361354, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF5_QCORROCT_50_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. 353.486738211295], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'tPRN8CJQRSKF8Ey');... + atdrift('L05', 0.06, 'EApertures', [0.006 0.006]);... + atsextupole('SXD51_VCOR', 0.09, -647.766469752565, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'LDRY1EIn814U6aZ');... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'FqzXxluOxfKoreu');... + atdrift('L03', 0.176061846245862, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atsbend('BD27', 0.0284984341976272, 0.00225714925227518, -1.18160211440423, 'EApertures', [0.008 0.008], 'UUID', 'mwOph7lOoAuCSkA');... + atsbend('BD17', 0.0959771205127194, 0.00913608259524086, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0205293144427562);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524086, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524086, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524086, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'ExitAngle', 0.0205293144427562);... + atsbend('BD27', 0.0284984341976272, 0.00225714925227518, -1.18160211440423, 'EApertures', [0.00747368421052632 0.00747368421052632]);... + atdrift('LBD1M', 0.0395472975018047, 'EApertures', [0.00652631578947368 0.00652631578947368]);... + atdrift('D05HM', 0.0250000000000106, 'EApertures', [0.006 0.006]);... + atquadrupole('Q15', 0.0669665183225528, -13.0158117569202, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.058, 'EApertures', [0.006 0.006], 'UUID', 'O5ZgkPcWl5piN6O');... + atdrift('D03HM', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH12_COR', 0.06, -549.693929899786, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'UtuiqznQbRlZ8DI');... + atdrift('D022HMQ', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'rTJk1CZvAS45ObQ');... + atdrift('D040HMQ', 0.108, 'EApertures', [0.006 0.006]);... + atquadrupole('Q14', 0.0669654375650683, 13.020316581933, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.058, 'EApertures', [0.006 0.006], 'UUID', 'gA9Nv2zNHrKaYFj');... + atmarker('CROTCH_06_7', 'EApertures', [0.006 0.006]);... + atdrift('D03HM', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH11', 0.06, -342.377584906705, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'UUID', 'OqBIxNJ34jMP1Pa');... + atdrift('D022HM', 0.06, 'EApertures', [0.006 0.006]);... + atmultipole('OH11_QCORROCT_51', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'MaxOrder', 3, 'UUID', 'izB8cNwxVdVo9AW');... + atmonitor('BPM', 'EApertures', [0.008 0.008], 'UUID', 'CgpohrEJoEueZlF');... + atdrift('D06HM', 0.13, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atquadrupole('Q13', 0.105549024737856, 14.4734284467452, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.098, 'EApertures', [0.006 0.006], 'UUID', 'xl5hO4okAzJRChF');... + atdrift('D032HM', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH10_COR', 0.06, 767.610099578133, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'pvnrxg85jkoWskL');... + atdrift('D022HM', 0.06, 'EApertures', [0.006 0.006]);... + atmultipole('OH10_QCORROCT_52_QT', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'MaxOrder', 3, 'UUID', 'vFMiFaSnHtVF1JW');... + atdrift('D031HM', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('Q12', 0.0785288819736742, -13.6759084023114, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.07, 'EApertures', [0.006 0.006], 'UUID', 'eT2LizS4CIQm2hm');... + atmarker('GIRDEREND', 'EApertures', [0.00733333333333333 0.00733333333333333]);... + atmarker('AN-C06END', 'EApertures', [0.00733333333333333 0.00733333333333333]);... + atmarker('SD07MCSTART', 'EApertures', [0.00733333333333333 0.00733333333333333]);... + atmarker('VANNE_START', 'EApertures', [0.00733333333333333 0.00733333333333333]);... + atmarker('FCOR_7_1', 'UUID', 'SqLDOdAwsjWePpa');... + atmonitor('BPM', 'EApertures', [0.00733333333333333 0.00733333333333333], 'UUID', 'oLdfchxtRFbgkfu');... + atdrift('SD1M_7', 0.322, 'Action', 'BPM', 'EApertures', [0.00838095238095238 0.00838095238095238]);... + atmarker('VANNE_END', 'EApertures', [0.01 0.01]);... + atdrift('SD1M_8', 0.287381847814076, 'Action', 'BPM', 'EApertures', [0.01 0.01]);... + atmarker('ONDULEURMARK_START', 'EApertures', [0.01 0.01]);... + atdrift('SD1M_9', 1.29, 'Action', 'BPM', 'EApertures', [0.0475 0.002 ]);... + atmarker('SD07MCCENTER', 'EApertures', [0.0475 0.002 ]);... + atdrift('SD1M_10', 1.29, 'Action', 'BPM', 'EApertures', [0.0475 0.002 ]);... + atmarker('ONDULEURMARK_END', 'EApertures', [0.01 0.01]);... + atdrift('SD1M_11', 0.287381847814076, 'Action', 'BPM', 'EApertures', [0.01 0.01]);... + atmarker('VANNE_START', 'EApertures', [0.01 0.01]);... + atdrift('SD1M_12', 0.322, 'Action', 'BPM', 'EApertures', [0.00838095238095238 0.00838095238095238]);... + atmarker('FCOR_7_2', 'UUID', 'gGoVEovXXelqqVV');... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'ZWFWAsEoR4csQZZ');... + atmarker('VANNE_END', 'EApertures', [0.006 0.006]);... + atmarker('SD07MCEND', 'EApertures', [0.006 0.006]);... + atmarker('AN-C07START', 'EApertures', [0.006 0.006]);... + atmarker('GIRDERSTART', 'EApertures', [0.006 0.006]);... + atquadrupole('Q12', 0.0785288819736742, -13.6759084023114, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.07, 'EApertures', [0.006 0.006], 'UUID', 'eS7UlZ8aASLxEsy');... + atdrift('D031HM', 0.048, 'EApertures', [0.006 0.006]);... + atmultipole('OH10_QCORROCT_53_QT', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'MaxOrder', 3, 'UUID', 'u3sPGnBo71hOxC6');... + atdrift('D022HM', 0.06, 'EApertures', [0.006 0.006]);... + atsextupole('SH10_COR', 0.06, 767.610099578133, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'PTrnpkI85Ew2MLK');... + atdrift('D032HM', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('Q13', 0.105549024737856, 14.4734284467452, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.098, 'EApertures', [0.006 0.006], 'UUID', 'RvqjZSirvEjgYzq');... + atdrift('D06HM', 0.13, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.00733333333333333 0.00733333333333333], 'UUID', 'FFOYYge32yRksmN');... + atmultipole('OH11_QCORROCT_54', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'MaxOrder', 3, 'UUID', 'lWMX5aQZzrqtXos');... + atdrift('D022HM', 0.06, 'EApertures', [0.006 0.006]);... + atsextupole('SH11', 0.06, -342.377584906705, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'UUID', 'w7Z6lDotjVEDNO7');... + atdrift('D03HM', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('Q14', 0.0669654375650683, 13.020316581933, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.058, 'EApertures', [0.006 0.006], 'UUID', 'RC8UBKjjZj3KFh7');... + atdrift('D040HMQ', 0.108, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'T3QXHEuCbRhcmcj');... + atdrift('D022HMQ', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH12_COR', 0.06, -549.693929899786, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'W92Fj1YsGYzAOAZ');... + atdrift('D03HM', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('Q15', 0.0669665183225528, -13.0158117569202, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.058, 'EApertures', [0.006 0.006], 'UUID', 'QjtMXQnvVQ6A8Yp');... + atdrift('D05HM', 0.0250000000000106, 'EApertures', [0.006 0.006]);... + atdrift('LBD1M', 0.0395472975018047, 'EApertures', [0.006 0.006]);... + atsbend('BD24', 0.0284984341976272, 0.00215787898333112, -1.18160211440423, 'EApertures', [0.00766666666666667 0.00766666666666667], 'UUID', 'hDxFw8UiCF5GmEz');... + atsbend('BD14', 0.0959771205127194, 0.00873427426315538, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0205293144427562);... + atsbend('BD14', 0.0959771205127194, 0.00873427426315538, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD14', 0.0959771205127194, 0.00873427426315538, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD14', 0.0959771205127194, 0.00873427426315538, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'ExitAngle', 0.0205293144427562);... + atsbend('BD24', 0.0284984341976272, 0.00215787898333112, -1.18160211440423, 'EApertures', [0.00786206896551724 0.00786206896551724]);... + atdrift('L03', 0.176061846245862, 'EApertures', [0.006 0.006]);... + atsextupole('SXD42', 0.09, -652.433055715131, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0075, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'OVuVV4vGODJkne8');... + atdrift('L04', 0.111275514615956, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_07_1', 'EApertures', [0.006 0.006]);... + atmultipole('OCTF4_QCORROCT_55_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -183.939387091905], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'NROSMXt9SvU4Wod');... + atdrift('L084', 0.048820499745398, 'EApertures', [0.006 0.006]);... + atsbend('BQ4H4', 0.0577872115264688, -0.000385457006104762, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.000385457006104762, 'UUID', 'wJcdRUsbph7S7Sc');... + atsbend('BQ4H4', 0.0577872115264688, -0.000385457006104762, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'ExitAngle', -0.000385457006104762);... + atdrift('L084', 0.048820499745398, 'EApertures', [0.006 0.006]);... + atsextupole('SXF42_HCOR', 0.12, 832.798385062542, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'Qtsa7TWksgqXqjg');... + atdrift('L082', 0.0471064301693061, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H4', 0.0689196396343699, -0.00144531683192883, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00144531683192883, 'UUID', 'oOZEFLOd2UxktEs');... + atsbend('BQ6H4', 0.0689196396343699, -0.00144531683192883, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00144531683192883);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'YQFVXfHnsMDgwWO');... + atsextupole('SXD42_VCOR', 0.09, -652.433055715131, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'ZyWfEixTJRE16Bt');... + atdrift('L071', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'RjP27JiCOZPxPK8');... + atmarker('GIRDEREND', 'EApertures', [0.006 0.006]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00666666666666667 0.00666666666666667]);... + atmarker('GIRDERSTART', 'EApertures', [0.008 0.008]);... + atsbend('BD4H4', 0.0393049032024916, 0.00234342379845867, -1.11997137375817, 'EApertures', [0.008 0.008], 'UUID', 'duIaKNB2e2MkUxf');... + atsbend('BD5H4', 0.398927492296932, 0.0303936245742024, -1.86297299994296, 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0342430714728858);... + atsbend('BD5H4', 0.398927492296932, 0.0303936245742024, -1.86297299994296, 'EApertures', [0.008 0.008], 'ExitAngle', 0.0342430714728858);... + atsbend('BD4H4', 0.0393049032024916, 0.00234342379845867, -1.11997137375817, 'EApertures', [0.008 0.008]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00775 0.00775]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.0073 0.0073], 'UUID', 'cExCPMysCXzkc0o');... + atdrift('L071', 0.048, 'EApertures', [0.0068 0.0068]);... + atsextupole('SXD4', 0.09, -748.397964225485, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'o9ciLvbmppugwf5');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_07_2', 'EApertures', [0.006 0.006]);... + atsbend('BQ6H4', 0.0689196396343699, -0.00144531683192883, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00144531683192883, 'UUID', 'IdpzjAchCvznhOa');... + atsbend('BQ6H4', 0.0689196396343699, -0.00144531683192883, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00144531683192883);... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF4_QCORROCT_56_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -183.939387091905], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'kciEjosNGQ98JGM');... + atdrift('L081', 0.06, 'EApertures', [0.006 0.006]);... + atsextupole('SXF4_HCOR', 0.12, 811.758492840009, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'IhynJmFn0MdqYMc');... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H4', 0.0689196396343699, -0.00144531683192883, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00144531683192883, 'UUID', 'gy9wB5hu8Fohz8C');... + atsbend('BQ6H4', 0.0689196396343699, -0.00144531683192883, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00144531683192883);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'ktyrOvCGrD8MLiw');... + atsextupole('SXD4_VCOR', 0.09, -748.397964225485, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'bqLjXtR1Uu4nZOG');... + atdrift('L071', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'JHUcvZQnQahIsVp');... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.0068 0.0068]);... + atsbend('BD4H4', 0.0393049032024916, 0.00234342379845867, -1.11997137375817, 'EApertures', [0.008 0.008], 'UUID', 'h0uYaKcKMqAdDYP');... + atsbend('BD5H4', 0.398927492296932, 0.0303936245742024, -1.86297299994296, 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0342430714728858);... + atsbend('BD5H4', 0.398927492296932, 0.0303936245742024, -1.86297299994296, 'EApertures', [0.008 0.008], 'ExitAngle', 0.0342430714728858);... + atsbend('BD4H4', 0.0393049032024916, 0.00234342379845867, -1.11997137375817, 'EApertures', [0.008 0.008]);... + atmarker('GIRDEREND', 'EApertures', [0.008 0.008]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00774358974358974 0.00774358974358974]);... + atmarker('GIRDERSTART', 'EApertures', [0.00748717948717949 0.00748717948717949]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00733333333333333 0.00733333333333333], 'UUID', 'kJsqrjBHL3bgjMy');... + atdrift('L071', 0.048, 'EApertures', [0.00676923076923077 0.00676923076923077]);... + atsextupole('SXD41', 0.09, -735.729130725313, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'mJ5bOeg7x6tQJt4');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_07_3', 'EApertures', [0.006 0.006]);... + atsbend('BQ6H4', 0.0689196396343699, -0.00144531683192883, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00144531683192883, 'UUID', 'dGVLSQb3fYpmtAm');... + atsbend('BQ6H4', 0.0689196396343699, -0.00144531683192883, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00144531683192883);... + atdrift('L082', 0.0471064301693061, 'EApertures', [0.006 0.006]);... + atsextupole('SXF41_HCOR', 0.12, 846.26087738574, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'R2868lvuoNTcSjC');... + atdrift('L084', 0.048820499745398, 'EApertures', [0.006 0.006]);... + atsbend('BQ4H4', 0.0577872115264688, -0.000385457006104762, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.000385457006104762, 'UUID', 'KK2He0HMn1YZZJP');... + atsbend('BQ4H4', 0.0577872115264688, -0.000385457006104762, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'ExitAngle', -0.000385457006104762);... + atdrift('L085', 0.100096014361354, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF4_QCORROCT_57_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -183.939387091905], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'kw9Yp87azt6kzWi');... + atdrift('L05', 0.06, 'EApertures', [0.008 0.008]);... + atsextupole('SXD41_VCOR', 0.09, -735.729130725313, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.0068 0.0068], 'KickAngle', [0. 0.], 'UUID', 'VuvumDoCJLRGEyP');... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'jCEQAFeoOjOcmxb');... + atdrift('L03', 0.176061846245862, 'Action', 'BPM', 'EApertures', [0.006 0.006]);... + atsbend('BD24', 0.0284984341976272, 0.00215787898333112, -1.18160211440423, 'EApertures', [0.008 0.008], 'UUID', 'uF9wj1WfrIeHrag');... + atsbend('BD14', 0.0959771205127194, 0.00873427426315538, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0205293144427562);... + atsbend('BD14', 0.0959771205127194, 0.00873427426315538, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD14', 0.0959771205127194, 0.00873427426315538, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD14', 0.0959771205127194, 0.00873427426315538, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'ExitAngle', 0.0205293144427562);... + atsbend('BD24', 0.0284984341976272, 0.00215787898333112, -1.18160211440423, 'EApertures', [0.00715789473684211 0.00715789473684211]);... + atdrift('LBD1C', 0.0395472975018047, 'EApertures', [0.00610526315789474 0.00610526315789474]);... + atdrift('D05HC', 0.00499988833315879, 'EApertures', [0.006 0.006]);... + atquadrupole('Q11', 0.0789546761676337, -12.3862992113073, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.07, 'EApertures', [0.006 0.006], 'UUID', 'H9VfJRA4Z3n9yHM');... + atdrift('D03HC', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH9_COR', 0.06, -668.536791100884, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'vFGL09m6KRfSeUk');... + atdrift('D022HCQ', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'lF0rk21oOl520kV');... + atdrift('D041HCQ', 0.108, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_07_4', 'EApertures', [0.006 0.006]);... + atquadrupole('Q10', 0.0844113331477278, 13.6568508102765, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.076, 'EApertures', [0.006 0.006], 'UUID', 'fvH4SzWuCTCX6Ae');... + atdrift('D03HC', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH8', 0.06, -366.603155097304, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'UUID', 'i1CUUpE9SppYqDf');... + atdrift('D022HCQ', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'adepF3T3RDTou4G');... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'bfrOHmCP42i7ovE');... + atdrift('D06HCQ', 0.158, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atquadrupole('Q9', 0.106409911705093, 12.8349230947647, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.098, 'EApertures', [0.006 0.006], 'UUID', 'QP25TRCeeVFM39t');... + atdrift('D032HC', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH7_COR', 0.06, 832.664084881681, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'hIDf3aou30LAsff');... + atdrift('D022HC', 0.06, 'EApertures', [0.006 0.006]);... + atmultipole('OH7_QCORROCT_58_QT', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'MaxOrder', 3, 'UUID', 'Yqv9Z7GPN2e9nlx');... + atdrift('D031HC', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('Q8', 0.0786666675115942, -13.273182641893, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.07, 'EApertures', [0.006 0.006], 'UUID', 'r5fxJaL3LQTxevd');... + atmarker('GIRDEREND', 'EApertures', [0.0076 0.0076]);... + atmarker('AN-C07END', 'EApertures', [0.0076 0.0076]);... + atmarker('SD08CSTART', 'EApertures', [0.0076 0.0076]);... + atmarker('VANNE_START', 'EApertures', [0.0076 0.0076]);... + atmarker('FCOR_8_1', 'UUID', 'Znmy5nWv6APhoye');... + atmonitor('BPM', 'EApertures', [0.0076 0.0076], 'UUID', 'XI7HiaYADkw9p7c');... + atdrift('SD1C_13', 0.322, 'Action', 'BPM', 'EApertures', [0.00847619047619048 0.00847619047619048]);... + atmarker('VANNE_END', 'EApertures', [0.01 0.01]);... + atdrift('SD1C_14', 0.0835458676300582, 'Action', 'BPM', 'EApertures', [0.01 0.01]);... + atmarker('ONDULEURMARK_START', 'EApertures', [0.042 0.0125]);... + atdrift('SD1C_15', 1.189, 'Action', 'BPM', 'EApertures', [0.0475 0.002 ]);... + atmarker('SD08CCENTER', 'EApertures', [0.0475 0.002 ]);... + atdrift('SD1C_16', 1.189, 'Action', 'BPM', 'EApertures', [0.0475 0.002 ]);... + atmarker('ONDULEURMARK_END', 'EApertures', [0.042 0.0125]);... + atdrift('SD1C_17', 0.0835458676300582, 'Action', 'BPM', 'EApertures', [0.01 0.01]);... + atmarker('VANNE_START', 'EApertures', [0.01 0.01]);... + atdrift('SD1C_18', 0.322, 'Action', 'BPM', 'EApertures', [0.00854545454545455 0.00854545454545455]);... + atmarker('FCOR_8_2', 'UUID', 'YxyphJT5rNL5dZU');... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'qViAzHMQVvvIiRq');... + atmarker('VANNE_END', 'EApertures', [0.006 0.006]);... + atmarker('SD08CEND', 'EApertures', [0.006 0.006]);... + atmarker('AN-C08START', 'EApertures', [0.006 0.006]);... + atmarker('GIRDERSTART', 'EApertures', [0.006 0.006]);... + atquadrupole('Q8', 0.0786666675115942, -13.273182641893, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.07, 'EApertures', [0.006 0.006], 'UUID', 'izv0aOdsyVj6wwf');... + atdrift('D031HC', 0.048, 'EApertures', [0.006 0.006]);... + atmultipole('OH7_QCORROCT_59_QT', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'MaxOrder', 3, 'UUID', 'ZYD4E4eldGkAF2U');... + atdrift('D022HC', 0.06, 'EApertures', [0.006 0.006]);... + atsextupole('SH7_COR', 0.06, 832.664084881681, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'r9c6PHD6PUVtTFF');... + atdrift('D032HC', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('Q9', 0.106409911705093, 12.8349230947647, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.098, 'EApertures', [0.006 0.006], 'UUID', 'f8V9fsiDSFsXD8x');... + atdrift('D06HCQ', 0.158, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'oJ1JAH5jR8zn6EN');... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'N2ASE91SwevCvE0');... + atdrift('D022HCQ', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH8', 0.06, -366.603155097304, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'UUID', 'hFCPjwO5N1rFqv5');... + atdrift('D03HC', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('Q10', 0.0844113331477278, 13.6568508102765, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.076, 'EApertures', [0.006 0.006], 'UUID', 'y8uxjYDyHzRcp3L');... + atdrift('D041HCQ', 0.108, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'UER5tuwC0QHM4ZU');... + atdrift('D022HCQ', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH9_COR', 0.06, -668.536791100884, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'ezie7gpvwkOBDqr');... + atdrift('D03HC', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('Q11', 0.0789546761676337, -12.3862992113073, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.07, 'EApertures', [0.006 0.006], 'UUID', 'V21Vx8b2legvjMD');... + atdrift('D05HC', 0.00499988833315879, 'EApertures', [0.006 0.006]);... + atdrift('LBD1C', 0.0395472975018047, 'EApertures', [0.006 0.006]);... + atsbend('BD27', 0.0284984341976272, 0.00225714925227511, -1.18160211440423, 'EApertures', [0.008 0.008], 'UUID', 'pJrUDjl5Kqv9DQO');... + atsbend('BD17', 0.0959771205127194, 0.00913608259524057, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0205293144427562);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524057, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524057, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524057, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'ExitAngle', 0.0205293144427562);... + atsbend('BD27', 0.0284984341976272, 0.00225714925227511, -1.18160211440423, 'EApertures', [0.00766666666666667 0.00766666666666667]);... + atdrift('L03', 0.176061846245862, 'EApertures', [0.006 0.006]);... + atsextupole('SXD32', 0.09, -729.521731325636, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0075, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'LGwq2sqEbsOwMuv');... + atmarker('CROTCH_08_1', 'EApertures', [0.006 0.006]);... + atdrift('L04', 0.111275514615956, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF3_QCORROCT_60_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -440.259660850112], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'HD2pMubXDlFcKGD');... + atdrift('L084', 0.048820499745398, 'EApertures', [0.006 0.006]);... + atsbend('BQ4H7', 0.0577872115264688, -0.000403189428060739, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.000403189428060739, 'UUID', 'cZnveMtGieyZ6ca');... + atsbend('BQ4H7', 0.0577872115264688, -0.000403189428060739, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'ExitAngle', -0.000403189428060739);... + atdrift('L084', 0.048820499745398, 'EApertures', [0.006 0.006]);... + atsextupole('SXF32_HCOR', 0.12, 782.043582880113, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'fRwsCx8DTOprddT');... + atdrift('L082', 0.0471064301693061, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444583, 'UUID', 'HrAB4MDq6VbbtVy');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444583);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'wiXoLkzFeeSBpGT');... + atsextupole('SXD32_VCOR', 0.09, -729.521731325636, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'npXTJclhV1WKDfU');... + atdrift('L071', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'H9UDO2nii0ICZK4');... + atmarker('GIRDEREND', 'EApertures', [0.006 0.006]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00766666666666667 0.00766666666666667]);... + atmarker('GIRDERSTART', 'EApertures', [0.008 0.008]);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008], 'UUID', 'd4qFCCTPjuUGR34');... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702353, -1.86297299994296, 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0342430714728858);... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702353, -1.86297299994296, 'EApertures', [0.008 0.008], 'ExitAngle', 0.0342430714728858);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.0076 0.0076]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00715 0.00715], 'UUID', 'dp9pjzr0ctGFBDl');... + atdrift('L071', 0.048, 'EApertures', [0.00665 0.00665]);... + atsextupole('SXD3', 0.09, -753.118527609963, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'gD7KahKFoHg1NIn');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_08_2', 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444583, 'UUID', 'Us24R32F2PwNjxG');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444583);... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF3_QCORROCT_61_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -440.259660850112], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'O2DyaHePzIXpONu');... + atdrift('L081', 0.06, 'EApertures', [0.006 0.006]);... + atsextupole('SXF3_HCOR', 0.12, 675.00095481734, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'BWWwWPebYf22BY6');... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444583, 'UUID', 'q7nF9IOHMBVsuOM');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444583);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'HsUpgEgVUW8hJ24');... + atsextupole('SXD3_VCOR', 0.09, -753.118527609963, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'HaOJlObcFHYGyGE');... + atdrift('L071', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'GLrMrZY5ZqkcGi4');... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00766666666666667 0.00766666666666667]);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008], 'UUID', 'OewuEWZ2fW0bhJo');... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702353, -1.86297299994296, 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0342430714728858);... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702352, -1.86297299994296, 'EApertures', [0.008 0.008], 'ExitAngle', 0.0342430714728858);... + atmarker('PHC1', 'EApertures', [0.008 0.008]);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008]);... + atmarker('GIRDEREND', 'EApertures', [0.00785 0.00785]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.0076 0.0076]);... + atmarker('GIRDERSTART', 'EApertures', [0.0073 0.0073]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00715 0.00715], 'UUID', 'gkkNaX3gLdcMkoK');... + atdrift('L071', 0.048, 'EApertures', [0.00665 0.00665]);... + atsextupole('SXD3', 0.09, -753.118527609963, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'cyDLYYIPlJyWSfV');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_08_3', 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444582, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444582, 'UUID', 'LWlteenDdHyxuzt');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444582, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444582);... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF3_QCORROCT_62_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -440.259660850112], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'P9dboIt3L47SbMZ');... + atdrift('L081', 0.06, 'EApertures', [0.006 0.006]);... + atsextupole('SXF33_HCOR', 0.12, 686.795497427942, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'RfPySzLVOPjpKUB');... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsbend('BQ6HC7', 0.0689196396343699, -0.00144054604712974, 8.95984862959226, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00144054604712974, 'UUID', 'HEKr3vtAPO5IfXo');... + atsbend('BQ6HC7', 0.0689196396343699, -0.00144054604712974, 8.95984862959226, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00144054604712974);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'HgjaAVM4ubfC0gW');... + atsextupole('SXD33_VCOR', 0.09, -764.318658802759, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'zibop5DgOHZIeiI');... + atdrift('L071C', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'w3mJ5G9fypRro6F');... + atdrift('L073C', 0.0430773209057085, 'EApertures', [0.00714285714285714 0.00714285714285714]);... + atsbend('BD3HC7', 0.01, 0.000258818071001969, -1.37551837900507, 'EApertures', [0.008 0.00786363636363636], 'UUID', 'zSIBFTeBGxI91HI');... + atsbend('BD4HC71', 0.03, 0.00188018240208164, -2.57765200910186, 'EApertures', [0.008 0.00769318181818182], 'EntranceAngle', 0.00982777557557598);... + atsbend('BD4HC7', 0.253621983633988, 0.0158951863469887, -2.57765200910186, 'EApertures', [0.008 0.00629545454545455]);... + atsbend('BD4HC71', 0.03, 0.00188018240208164, -2.57765200910186, 'EApertures', [0.008 0.005], 'ExitAngle', 0.00982777557557598);... + atsbend('BD5HC7', 0.0231155237960032, 0.00240516115877823, 0.0, 'EApertures', [0.008 0.005]);... + atsbend('BD6HC7', 0.0856857672699483, 0.0117810198825822, 0.0, 'EApertures', [0.008 0.00425]);... + atsbend('BD6HC7', 0.0856857672699483, 0.0117810198825822, 0.0, 'EApertures', [0.008 0.0046]);... + atsbend('BD5HC7', 0.0231155237960032, 0.00240516115877823, 0.0, 'EApertures', [0.008 0.005]);... + atsbend('BD4HC71', 0.03, 0.00188018240208164, -2.57765200910186, 'EApertures', [0.008 0.00521428571428571], 'EntranceAngle', 0.00982777557557598);... + atsbend('BD4HC7', 0.253621983633988, 0.0158951863469887, -2.57765200910186, 'EApertures', [0.008 0.00643877551020408]);... + atsbend('BD4HC71', 0.03, 0.00188018240208164, -2.57765200910186, 'EApertures', [0.008 0.00766326530612245], 'ExitAngle', 0.00982777557557598);... + atsbend('BD3HC7', 0.01, 0.000258818071001969, -1.37551837900507, 'EApertures', [0.008 0.00781632653061225]);... + atdrift('L073C', 0.0430773209057085, 'EApertures', [0.00794117647058824 0.00794117647058824]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00741176470588235 0.00741176470588235], 'UUID', 'Gu2cQdAiQHYzn7I');... + atdrift('L071C', 0.048, 'EApertures', [0.00682352941176471 0.00682352941176471]);... + atsextupole('SXD33', 0.09, -764.318658802759, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.007, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'bKWDiAXhLPz4p9r');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_08_4', 'EApertures', [0.006 0.006]);... + atsbend('BQ6HC7', 0.0689196396343699, -0.00144054604712974, 8.95984862959226, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00144054604712974, 'UUID', 'ZF4bSfItE81xrKQ');... + atsbend('BQ6HC7', 0.0689196396343699, -0.00144054604712974, 8.95984862959226, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00144054604712974);... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsextupole('SXF33_HCOR', 0.12, 686.795497427942, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'bIXPTfgZUPEphov');... + atdrift('L081', 0.06, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF3_QCORROCT_63_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -440.259660850112], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'DxVLbXbi82ORFsn');... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444582, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444582, 'UUID', 'FAIE4cGZRgH98Ct');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444582, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444582);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'mjDcenawzExyYrp');... + atsextupole('SXD3_VCOR', 0.09, -753.118527609963, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'F7NiFeHWsGRtwVb');... + atdrift('L071', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'uBre6WtI9noFwYV');... + atmarker('GIRDEREND', 'EApertures', [0.006 0.006]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.008 0.008]);... + atmarker('GIRDERSTART', 'EApertures', [0.008 0.008]);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008], 'UUID', 'mXv8fzFD3UB5R9w');... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702352, -1.86297299994296, 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0342430714728858);... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702353, -1.86297299994296, 'EApertures', [0.008 0.008], 'ExitAngle', 0.0342430714728858);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00758974358974359 0.00758974358974359]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00712820512820513 0.00712820512820513], 'UUID', 'kSLF7RrQeTqFiOa');... + atdrift('L071', 0.048, 'EApertures', [0.00661538461538461 0.00661538461538461]);... + atsextupole('SXD3', 0.09, -753.118527609963, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'LOQ2hIFkTngHgGx');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_08_5', 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444583, 'UUID', 'PVvmwMsh81hbmbj');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444583);... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsextupole('SXF3_HCOR', 0.12, 675.00095481734, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'hTqv5SrksuCeHpe');... + atdrift('L081', 0.06, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF3_QCORROCT_64_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -440.259660850112], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'SJoT4vwDwzijua7');... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444583, 'UUID', 'MO248PU0JQKmwiT');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444583);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'OfxXgTZBus6Kb66');... + atsextupole('SXD3_VCOR', 0.09, -753.118527609963, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'ReSSeSK6yZhygYr');... + atdrift('L071', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'PV3IfSOrrCd3RRD');... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00766666666666667 0.00766666666666667]);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008], 'UUID', 'h4o2rsn4qSveyAa');... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702353, -1.86297299994296, 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0342430714728858);... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702353, -1.86297299994296, 'EApertures', [0.008 0.008], 'ExitAngle', 0.0342430714728858);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008]);... + atmarker('GIRDEREND', 'EApertures', [0.00785 0.00785]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.0076 0.0076]);... + atmarker('GIRDERSTART', 'EApertures', [0.0073 0.0073]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00715 0.00715], 'UUID', 'ISccWbOO5eMqpUm');... + atdrift('L071', 0.048, 'EApertures', [0.00665 0.00665]);... + atsextupole('SXD31', 0.09, -681.129428046866, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'WHpVWxcAbjiNJWj');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444583, 'UUID', 'qlLKxwhIoXPZzwQ');... + atmarker('CROTCH_08_6', 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444583);... + atdrift('L082', 0.0471064301693061, 'EApertures', [0.006 0.006]);... + atsextupole('SXF31_HCOR', 0.12, 734.143510940683, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'sA3BrePyo6KjNFx');... + atdrift('L084', 0.048820499745398, 'EApertures', [0.006 0.006]);... + atsbend('BQ4H7', 0.0577872115264688, -0.000403189428060739, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.000403189428060739, 'UUID', 'tHL9I2TuBt6bpKf');... + atsbend('BQ4H7', 0.0577872115264688, -0.000403189428060739, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'ExitAngle', -0.000403189428060739);... + atdrift('L085', 0.100096014361354, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF3_QCORROCT_65_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -440.259660850112], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'OGQUS8NFfNnvtUB');... + atdrift('L05', 0.06, 'EApertures', [0.006 0.006]);... + atsextupole('SXD31_VCOR', 0.09, -681.129428046866, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'Hljs2n9ocAmliKU');... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'otuufs5G9zzKEoy');... + atdrift('L03', 0.176061846245862, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atsbend('BD27', 0.0284984341976272, 0.00225714925227511, -1.18160211440423, 'EApertures', [0.008 0.008], 'UUID', 'VWfYs4jWGA78II9');... + atsbend('BD17', 0.0959771205127194, 0.00913608259524057, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0205293144427562);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524057, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524057, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524057, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'ExitAngle', 0.0205293144427562);... + atsbend('BD27', 0.0284984341976272, 0.00225714925227511, -1.18160211440423, 'EApertures', [0.00744444444444444 0.00744444444444444]);... + atdrift('LBD1C', 0.0395472975018047, 'EApertures', [0.00644444444444444 0.00644444444444444]);... + atdrift('D05HC', 0.00499988833315879, 'EApertures', [0.006 0.006]);... + atquadrupole('Q11', 0.0789546761676337, -12.3862992113073, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.07, 'EApertures', [0.006 0.006], 'UUID', 'cTl2BNTgMAoI1u5');... + atdrift('D03HC', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH9_COR', 0.06, -668.536791100884, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'ShxHdV9L4ShVAGq');... + atdrift('D022HCQ', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'gacREUwYD8bZJuF');... + atdrift('D041HCQ', 0.108, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_08_7', 'EApertures', [0.006 0.006]);... + atquadrupole('Q10', 0.0844113331477278, 13.6568508102765, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.076, 'EApertures', [0.006 0.006], 'UUID', 'zVl9hDZY470BRH4');... + atdrift('D03HC', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH8', 0.06, -366.603155097304, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'UUID', 'WNC5ETcmvEA8Rx5');... + atdrift('D022HCQ', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'UsHYon5RrXzwg1Q');... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'eYqObI703LHfRk0');... + atdrift('D06HCQ', 0.158, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atquadrupole('Q9', 0.106409911705093, 12.8349230947647, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.098, 'EApertures', [0.006 0.006], 'UUID', 'PiG8jkVJIzfDNq2');... + atdrift('D032HC', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH7_COR', 0.06, 832.664084881681, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'BvYcR1YuSx6y6rC');... + atdrift('D022HC', 0.06, 'EApertures', [0.006 0.006]);... + atmultipole('OH7_QCORROCT_66_QT', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'MaxOrder', 3, 'UUID', 'AuRWrL4QTZQEAle');... + atdrift('D031HC', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('Q8', 0.0786666675115942, -13.273182641893, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.07, 'EApertures', [0.006 0.006], 'UUID', 'RSpLUEDBdWm4EgM');... + atmarker('GIRDEREND', 'EApertures', [0.0064 0.0064]);... + atmarker('AN-C08END', 'EApertures', [0.0064 0.0064]);... + atmarker('SD09CSTART', 'EApertures', [0.0064 0.0064]);... + atmarker('VANNE_START', 'EApertures', [0.0064 0.0064]);... + atmarker('FCOR_9_1', 'UUID', 'GYpX1eOq7SgL2Xa');... + atmonitor('BPM', 'EApertures', [0.0064 0.0064], 'UUID', 'SMNpZody5eY4ovH');... + atdrift('SD1C_19', 0.322, 'Action', 'BPM', 'EApertures', [0.00847619047619048 0.00847619047619048]);... + atmarker('VANNE_END', 'EApertures', [0.01 0.01]);... + atdrift('SD1C_20', 0.0835458676300582, 'Action', 'BPM', 'EApertures', [0.01 0.01]);... + atmarker('ONDULEURMARK_START', 'EApertures', [0.042 0.0125]);... + atdrift('SD1C_21', 1.189, 'Action', 'BPM', 'EApertures', [0.0475 0.002 ]);... + atmarker('SD09CCENTER', 'EApertures', [0.0475 0.002 ]);... + atdrift('SD1C_22', 1.189, 'Action', 'BPM', 'EApertures', [0.0475 0.002 ]);... + atmarker('ONDULEURMARK_END', 'EApertures', [0.042 0.0125]);... + atdrift('SD1C_23', 0.0835458676300582, 'Action', 'BPM', 'EApertures', [0.01 0.01]);... + atmarker('VANNE_START', 'EApertures', [0.01 0.01]);... + atdrift('SD1C_24', 0.322, 'Action', 'BPM', 'EApertures', [0.00847619047619048 0.00847619047619048]);... + atmarker('FCOR_9_2', 'UUID', 'BQLDnE7nQKfJnoG');... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'OBdotBa6gJIgNEo');... + atmarker('VANNE_END', 'EApertures', [0.006 0.006]);... + atmarker('SD09CEND', 'EApertures', [0.006 0.006]);... + atmarker('AN-C09START', 'EApertures', [0.006 0.006]);... + atmarker('GIRDERSTART', 'EApertures', [0.006 0.006]);... + atquadrupole('Q8', 0.0786666675115942, -13.273182641893, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.07, 'EApertures', [0.006 0.006], 'UUID', 'KWaYG0lYjxtTqPE');... + atdrift('D031HC', 0.048, 'EApertures', [0.006 0.006]);... + atmultipole('OH7_QCORROCT_67_QT', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'MaxOrder', 3, 'UUID', 'xl9epwzPxUPe75a');... + atdrift('D022HC', 0.06, 'EApertures', [0.006 0.006]);... + atsextupole('SH7_COR', 0.06, 832.664084881681, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'zQmjrMXkSrvGiQp');... + atdrift('D032HC', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('Q9', 0.106409911705093, 12.8349230947647, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.098, 'EApertures', [0.006 0.006], 'UUID', 'Xg9IF0BQSi5NCMJ');... + atdrift('D06HCQ', 0.158, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'mIu9J1U9aDraKLv');... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'YsjWtEw7rMSi8jh');... + atdrift('D022HCQ', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH8', 0.06, -366.603155097304, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'UUID', 'I09cHWZx7tHimTt');... + atdrift('D03HC', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('Q10', 0.0844113331477278, 13.6568508102765, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.076, 'EApertures', [0.006 0.006], 'UUID', 'nsomHHwFj20RqoE');... + atdrift('D041HCQ', 0.108, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'WYH0PORuFDBnmPY');... + atdrift('D022HCQ', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH9_COR', 0.06, -668.536791100884, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'mpJi67Q2UObUcMn');... + atdrift('D03HC', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('Q11', 0.0789546761676337, -12.3862992113073, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.07, 'EApertures', [0.006 0.006], 'UUID', 'dVBetUAjN59GWSy');... + atdrift('D05HC', 0.00499988833315879, 'EApertures', [0.006 0.006]);... + atdrift('LBD1C', 0.0395472975018047, 'EApertures', [0.006 0.006]);... + atsbend('BD24', 0.0284984341976272, 0.00215787898333112, -1.18160211440423, 'EApertures', [0.0076 0.0076], 'UUID', 'rgalqfRHf3geRob');... + atsbend('BD14', 0.0959771205127194, 0.00873427426315538, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0205293144427562);... + atsbend('BD14', 0.0959771205127194, 0.00873427426315538, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD14', 0.0959771205127194, 0.00873427426315538, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD14', 0.0959771205127194, 0.00873427426315538, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'ExitAngle', 0.0205293144427562);... + atsbend('BD24', 0.0284984341976272, 0.00215787898333112, -1.18160211440423, 'EApertures', [0.00786206896551724 0.00786206896551724]);... + atdrift('L03', 0.176061846245862, 'EApertures', [0.006 0.006]);... + atsextupole('SXD22', 0.09, -636.039531358256, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0075, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'kaUyA9mtlLs4xbP');... + atdrift('L04', 0.111275514615956, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_09_1', 'EApertures', [0.006 0.006]);... + atmultipole('OCTF2_QCORROCT_68_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -262.360558705412], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'Q9TXgalFFexq42L');... + atdrift('L084', 0.048820499745398, 'EApertures', [0.006 0.006]);... + atsbend('BQ4H4', 0.0577872115264688, -0.000385457006104762, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.000385457006104762, 'UUID', 'uEZ6ZGLmzvfcEHi');... + atsbend('BQ4H4', 0.0577872115264688, -0.000385457006104762, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'ExitAngle', -0.000385457006104762);... + atdrift('L084', 0.048820499745398, 'EApertures', [0.006 0.006]);... + atsextupole('SXF22_HCOR', 0.12, 843.464304725645, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SLplQFbiICdxIvS');... + atdrift('L082', 0.0471064301693061, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H4', 0.0689196396343699, -0.00144531683192883, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00144531683192883, 'UUID', 'TFWD82A8dk7B3hA');... + atsbend('BQ6H4', 0.0689196396343699, -0.00144531683192883, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00144531683192883);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'q8TKeiPee1G9Lcl');... + atsextupole('SXD22_VCOR', 0.09, -636.039531358256, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'q1h1c3V31menz5i');... + atdrift('L071', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'obv9i0wNUiVOm1r');... + atmarker('GIRDEREND', 'EApertures', [0.006 0.006]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.0064 0.0064]);... + atmarker('GIRDERSTART', 'EApertures', [0.008 0.008]);... + atsbend('BD4H4', 0.0393049032024916, 0.00234342379845867, -1.11997137375817, 'EApertures', [0.008 0.008], 'UUID', 'Zi0lXFSQfCqsHus');... + atsbend('BD5H4', 0.398927492296932, 0.0303936245742024, -1.86297299994296, 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0342430714728858);... + atsbend('BD5H4', 0.398927492296932, 0.0303936245742024, -1.86297299994296, 'EApertures', [0.008 0.008], 'ExitAngle', 0.0342430714728858);... + atsbend('BD4H4', 0.0393049032024916, 0.00234342379845867, -1.11997137375817, 'EApertures', [0.008 0.008]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00774358974358974 0.00774358974358974]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00733333333333333 0.00733333333333333], 'UUID', 'IotAss0QRNlYdFs');... + atdrift('L071', 0.048, 'EApertures', [0.00682051282051282 0.00682051282051282]);... + atsextupole('SXD2', 0.09, -617.904418360321, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'bjcc03T7FYhWHHh');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_09_2', 'EApertures', [0.006 0.006]);... + atsbend('BQ6H4', 0.0689196396343699, -0.00144531683192883, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00144531683192883, 'UUID', 'DfBCS0bRNeTlcIB');... + atsbend('BQ6H4', 0.0689196396343699, -0.00144531683192883, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00144531683192883);... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsextupole('SXF2_HCOR', 0.12, 741.112250869933, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'V2Y5auTja8BYU9O');... + atdrift('L081', 0.06, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF2_QCORROCT_69_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -262.360558705412], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'ebSic5qh0qwS4JR');... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H4', 0.0689196396343699, -0.00144531683192883, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00144531683192883, 'UUID', 'S4C3VW8w0cnJVuq');... + atsbend('BQ6H4', 0.0689196396343699, -0.00144531683192883, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00144531683192883);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'EaJCgmJaqlajjOZ');... + atsextupole('SXD2_VCOR', 0.09, -617.904418360321, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'qLg9ttFJS7Zbuj3');... + atdrift('L071', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'Ge3WZvjHA3eHTLV');... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.0068 0.0068]);... + atsbend('BD4H4', 0.0393049032024916, 0.00234342379845867, -1.11997137375817, 'EApertures', [0.008 0.008], 'UUID', 'MTwPe2hvZV71YKQ');... + atsbend('BD5H4', 0.398927492296932, 0.0303936245742024, -1.86297299994296, 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0342430714728858);... + atsbend('BD5H4', 0.398927492296932, 0.0303936245742024, -1.86297299994296, 'EApertures', [0.008 0.008], 'ExitAngle', 0.0342430714728858);... + atsbend('BD4H4', 0.0393049032024916, 0.00234342379845867, -1.11997137375817, 'EApertures', [0.008 0.008]);... + atmarker('GIRDEREND', 'EApertures', [0.008 0.008]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00774358974358974 0.00774358974358974]);... + atmarker('GIRDERSTART', 'EApertures', [0.00748717948717949 0.00748717948717949]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00728205128205128 0.00728205128205128], 'UUID', 'hYt8RFsRGVqPRHA');... + atdrift('L071', 0.048, 'EApertures', [0.00676923076923077 0.00676923076923077]);... + atsextupole('SXD21', 0.09, -655.116114720116, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'S0voWMk6gr9sGt8');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_09_3', 'EApertures', [0.006 0.006]);... + atsbend('BQ6H4', 0.0689196396343699, -0.00144531683192883, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00144531683192883, 'UUID', 'XUdeVvx9bQv6xof');... + atsbend('BQ6H4', 0.0689196396343699, -0.00144531683192883, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00144531683192883);... + atdrift('L082', 0.0471064301693061, 'EApertures', [0.006 0.006]);... + atsextupole('SXF21_HCOR', 0.12, 719.09699842571, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'yIAlEkzUwCO393S');... + atdrift('L084', 0.048820499745398, 'EApertures', [0.006 0.006]);... + atsbend('BQ4H4', 0.0577872115264688, -0.000385457006104762, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.000385457006104762, 'UUID', 'wqhIcsUJAW1Comc');... + atsbend('BQ4H4', 0.0577872115264688, -0.000385457006104762, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'ExitAngle', -0.000385457006104762);... + atdrift('L085', 0.100096014361354, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF2_QCORROCT_70_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -262.360558705412], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'dYF3ViweNp1jycf');... + atdrift('L05', 0.06, 'EApertures', [0.008 0.008]);... + atsextupole('SXD21_VCOR', 0.09, -655.116114720116, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.0068 0.0068], 'KickAngle', [0. 0.], 'UUID', 'W2TmaUIUel3sTho');... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'geTmMyJWbIw8i1k');... + atdrift('L03', 0.176061846245862, 'Action', 'BPM', 'EApertures', [0.006 0.006]);... + atsbend('BD24', 0.0284984341976272, 0.00215787898333112, -1.18160211440423, 'EApertures', [0.008 0.008], 'UUID', 'HMtWS7Yjf87C78F');... + atsbend('BD14', 0.0959771205127194, 0.00873427426315538, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0205293144427562);... + atsbend('BD14', 0.0959771205127194, 0.00873427426315538, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD14', 0.0959771205127194, 0.00873427426315538, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD14', 0.0959771205127194, 0.00873427426315538, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'ExitAngle', 0.0205293144427562);... + atsbend('BD24', 0.0284984341976272, 0.00215787898333112, -1.18160211440423, 'EApertures', [0.00722222222222222 0.00722222222222222]);... + atdrift('LBD1M1', 0.0395472975018047, 'EApertures', [0.00611111111111111 0.00611111111111111]);... + atdrift('D05HM1', 0.05, 'EApertures', [0.006 0.006]);... + atquadrupole('Q7', 0.0672457254622836, -11.8140171585779, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.058, 'EApertures', [0.006 0.006], 'UUID', 'Iq0VeqXewFccCwT');... + atdrift('D03HM1', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH6_COR', 0.06, -324.475203415205, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'umZ9pnE3qn1WrLb');... + atdrift('D022HM1Q', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'LXVDcsLF3psB2WT');... + atdrift('D040HM1Q', 0.128, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_09_4', 'EApertures', [0.006 0.006]);... + atquadrupole('Q6', 0.067209291601852, 11.9784555023184, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.058, 'EApertures', [0.006 0.006], 'UUID', 'SfoLCstq3s1G6zd');... + atdrift('D03HM1', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH5', 0.06, -514.413524183539, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'UUID', 'PNVpl7qeoqDVwiN');... + atdrift('D022HM1', 0.06, 'EApertures', [0.006 0.006]);... + atmultipole('OH5_QCORROCT_71', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.008 0.008], 'MaxOrder', 3, 'UUID', 'K7pAT73mzbBBhPL');... + atmonitor('BPM', 'EApertures', [0.008 0.008], 'UUID', 'WtkxFJIwOYYeKAE');... + atdrift('D06HM1', 0.13, 'Action', 'BPM', 'EApertures', [0.006 0.006]);... + atquadrupole('Q5', 0.105773394525209, 14.0793630884634, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.098, 'EApertures', [0.006 0.006], 'UUID', 'yXvae0ujw60WCy9');... + atdrift('D032HM1', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH4_COR', 0.06, 682.544409709839, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'fCKjOUJMg7jyLwo');... + atdrift('D022HM1', 0.06, 'EApertures', [0.006 0.006]);... + atmultipole('OH4_QCORROCT_72_QT', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'MaxOrder', 3, 'UUID', 'DrNS1nuOw6WQGDn');... + atdrift('D031HM1', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('Q4', 0.0785476107439048, -13.6216098775293, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.07, 'EApertures', [0.006 0.006], 'UUID', 'vRcRSiaOn9OEPmV');... + atmarker('GIRDEREND', 'EApertures', [0.006 0.006]);... + atmarker('AN-C09END', 'EApertures', [0.006 0.006]);... + atmarker('SD10MLSTART', 'EApertures', [0.006 0.006]);... + atmarker('VANNE_START', 'EApertures', [0.006 0.006]);... + atmarker('FCOR_10_1', 'UUID', 'AMGGlguQKO0nYhy');... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'ekwHoTFaDbWrW9F');... + atdrift('SD1M1_13', 0.322, 'Action', 'BPM', 'EApertures', [0.00876190476190476 0.00876190476190476]);... + atmarker('VANNE_END', 'EApertures', [0.01 0.01]);... + atdrift('SD1M1_14', 0.01, 'Action', 'BPM', 'EApertures', [0.01 0.01]);... + atmarker('ELECTRODES_START', 'EApertures', [0.01 0.01]);... + atdrift('SD1M1_15', 0.3, 'Action', 'BPM', 'EApertures', [0.01 0.01]);... + atmarker('ELECTRODES_END', 'EApertures', [0.01 0.01]);... + atdrift('SD1M1_16', 0.209986392245071, 'Action', 'BPM', 'RApertures', [-0.00895714285714286 0.00828571428571429 -0.00895714285714286 0.00895714285714286]);... + atmarker('ONDULEURMARK_START', 'RApertures', [-0.00878333333333333 0.008 -0.00878333333333333 0.00878333333333333]);... + atdrift('SD1M1_17', 1.29, 'Action', 'BPM', 'RApertures', [-0.0045 0.004 -0.0035 0.0035]);... + atmarker('SD10MLCENTER', 'EApertures', [0.0045 0.0035]);... + atdrift('SD1M1_18', 1.29, 'Action', 'BPM', 'EApertures', [0.0045 0.0035]);... + atmarker('ONDULEURMARK_END', 'EApertures', [0.00902941176470588 0.00885294117647059]);... + atdrift('SD1M1_19', 0.01, 'Action', 'BPM', 'EApertures', [0.00935294117647059 0.00923529411764706]);... + atmarker('STRIPLINE_FBT_SPARE_START', 'EApertures', [0.00951470588235294 0.00942647058823529]);... + atdrift('SD1M1_20', 0.45, 'Action', 'BPM', 'EApertures', [0.01 0.01]);... + atmarker('STRIPLINE_FBT_SPARE_END', 'EApertures', [0.01 0.01]);... + atdrift('SD1M1_21', 0.0599863922450715, 'Action', 'BPM', 'EApertures', [0.01 0.01]);... + atmarker('VANNE_START', 'EApertures', [0.01 0.01]);... + atdrift('SD1M1_22', 0.322, 'Action', 'BPM', 'EApertures', [0.00872727272727273 0.00872727272727273]);... + atmarker('FCOR_10_2', 'UUID', 'Tmq2WbktOPZaAYq');... + atmonitor('BPM', 'EApertures', [0.008 0.008], 'UUID', 'GVievUUlCRwtxA9');... + atmarker('VANNE_END', 'EApertures', [0.008 0.008]);... + atmarker('SD10MLEND', 'EApertures', [0.008 0.008]);... + atmarker('AN-C10START', 'EApertures', [0.008 0.008]);... + atmarker('GIRDERSTART', 'EApertures', [0.008 0.008]);... + atquadrupole('Q4', 0.0785476107439048, -13.6216098775293, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.07, 'EApertures', [0.006 0.006], 'UUID', 'FnyKebcx9McE09T');... + atdrift('D031HM1', 0.048, 'EApertures', [0.006 0.006]);... + atmultipole('OH4_QCORROCT_73_QT', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'MaxOrder', 3, 'UUID', 'hftAlsnufyZGHWs');... + atdrift('D022HM1', 0.06, 'EApertures', [0.006 0.006]);... + atsextupole('SH4_COR', 0.06, 682.544409709839, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'KaXd3vaGaWcahBt');... + atdrift('D032HM1', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('Q5', 0.105773394525209, 14.0793630884634, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.098, 'EApertures', [0.006 0.006], 'UUID', 'ga2oVs2f3CkMrbq');... + atdrift('D06HM1', 0.13, 'Action', 'BPM', 'EApertures', [0.00666666666666667 0.00666666666666667]);... + atmonitor('BPM', 'EApertures', [0.008 0.008], 'UUID', 'xfxROpJq3vpHFia');... + atmultipole('OH5_QCORROCT_74', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.008 0.008], 'MaxOrder', 3, 'UUID', 'PjXdWLkWiDUlZjp');... + atdrift('D022HM1', 0.06, 'EApertures', [0.006 0.006]);... + atsextupole('SH5', 0.06, -514.413524183539, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'UUID', 'l8rk0kmgNt6GQXy');... + atdrift('D03HM1', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('Q6', 0.067209291601852, 11.9784555023184, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.058, 'EApertures', [0.006 0.006], 'UUID', 'cQxZNmIxE2dKYQh');... + atdrift('D040HM1Q', 0.128, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'PQLIwLlrzOWJ59o');... + atdrift('D022HM1Q', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH6_COR', 0.06, -324.475203415205, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'h5sb2zqGQJBuBuZ');... + atdrift('D03HM1', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('Q7', 0.0672457254622836, -11.8140171585779, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.058, 'EApertures', [0.006 0.006], 'UUID', 'g0hVUuxsSyxlN34');... + atdrift('D05HM1', 0.05, 'EApertures', [0.006 0.006]);... + atdrift('LBD1M1', 0.0395472975018047, 'EApertures', [0.006 0.006]);... + atsbend('BD27', 0.0284984341976272, 0.00225714925227511, -1.18160211440423, 'EApertures', [0.008 0.008], 'UUID', 'bChE9u4eBbOIVXf');... + atsbend('BD17', 0.0959771205127194, 0.00913608259524057, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0205293144427562);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524057, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524057, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524057, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'ExitAngle', 0.0205293144427562);... + atsbend('BD27', 0.0284984341976272, 0.00225714925227511, -1.18160211440423, 'EApertures', [0.00766666666666667 0.00766666666666667]);... + atdrift('L03', 0.176061846245862, 'EApertures', [0.006 0.006]);... + atsextupole('SXD12', 0.09, -749.191327132338, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0075, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'VdPJU3abssiy7D6');... + atdrift('L04', 0.111275514615956, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_10_1', 'EApertures', [0.006 0.006]);... + atmultipole('OCTF1_QCORROCT_75_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -800.842486671932], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'Tce3amaUToWTGPk');... + atdrift('L084', 0.048820499745398, 'EApertures', [0.006 0.006]);... + atsbend('BQ4H7', 0.0577872115264688, -0.000403189428060739, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.000403189428060739, 'UUID', 'GNw9JqplpxkLtIu');... + atsbend('BQ4H7', 0.0577872115264688, -0.000403189428060739, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'ExitAngle', -0.000403189428060739);... + atdrift('L084', 0.048820499745398, 'EApertures', [0.006 0.006]);... + atsextupole('SXF12_HCOR', 0.12, 860.065976124029, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'bLrmQH8NNri0dLx');... + atdrift('L082', 0.0471064301693061, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444583, 'UUID', 'On4enEmZFRl207U');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444583);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'rYAhe5AOrbcuyxc');... + atsextupole('SXD12_VCOR', 0.09, -749.191327132338, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'YVHJkOf6WqgaPRM');... + atdrift('L071', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'e6JTTVBSzh0ghfE');... + atmarker('GIRDEREND', 'EApertures', [0.006 0.006]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00766666666666667 0.00766666666666667]);... + atmarker('GIRDERSTART', 'EApertures', [0.008 0.008]);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008], 'UUID', 'hjnO7xerzjr64kZ');... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702353, -1.86297299994296, 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0342430714728858);... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702353, -1.86297299994296, 'EApertures', [0.008 0.008], 'ExitAngle', 0.0342430714728858);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.0076 0.0076]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00715 0.00715], 'UUID', 'A4vZJ1bnPggblo9');... + atdrift('L071', 0.048, 'EApertures', [0.00665 0.00665]);... + atsextupole('SXD1', 0.09, -688.075994596801, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'AH9IrqAwCqvI9xH');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_10_2', 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444583, 'UUID', 'x7hu0Xb0GgqVhrd');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444583);... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF1_QCORROCT_76_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -800.842486671932], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'XDOob7io3V1qTVZ');... + atdrift('L081', 0.06, 'EApertures', [0.006 0.006]);... + atsextupole('SXF1_HCOR', 0.12, 781.382308964691, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'vEhQdLQLF0HREYU');... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444583, 'UUID', 'I2UWllHu2uaZAyg');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444583);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'VqChxxNZ2h8AGFT');... + atsextupole('SXD1_VCOR', 0.09, -688.075994596801, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'K8b0hWsxxRXzN5r');... + atdrift('L071', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'WCEwf4M7i2OFbNn');... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00766666666666667 0.00766666666666667]);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008], 'UUID', 'g36W7BDaSVayfPX');... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702353, -1.86297299994296, 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0342430714728858);... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702352, -1.86297299994296, 'EApertures', [0.008 0.008], 'ExitAngle', 0.0342430714728858);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008]);... + atmarker('GIRDEREND', 'EApertures', [0.0078974358974359 0.0078974358974359]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00764102564102564 0.00764102564102564]);... + atmarker('GIRDERSTART', 'EApertures', [0.00733333333333333 0.00733333333333333]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00717948717948718 0.00717948717948718], 'UUID', 'c3RERwj5E2JhkVh');... + atdrift('L071', 0.048, 'EApertures', [0.00666666666666667 0.00666666666666667]);... + atsextupole('SXD1', 0.09, -688.075994596801, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'lAUAjaGBVg69v70');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_10_3', 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444582, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444582, 'UUID', 'M8tQvVnHkgBIKU7');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444582, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444582);... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF1_QCORROCT_77_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -800.842486671932], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'xNoMZ1Bi6QaPGnb');... + atdrift('L081', 0.06, 'EApertures', [0.006 0.006]);... + atsextupole('SXF13_HCOR', 0.12, 750.901805779491, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'tjRAKPEdRFInKUY');... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsbend('BQ6HC7', 0.0689196396343699, -0.00144054604712974, 8.95984862959226, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00144054604712974, 'UUID', 'jBuIi5vZ0fYEM81');... + atsbend('BQ6HC7', 0.0689196396343699, -0.00144054604712974, 8.95984862959226, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00144054604712974);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'IsobJMAPlbN57SI');... + atsextupole('SXD13_VCOR', 0.09, -689.724579569546, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'ci3E8UBX18eQjP6');... + atdrift('L071C', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'mMQ9i0SYdcYXyom');... + atdrift('L073C', 0.0430773209057085, 'EApertures', [0.00714285714285714 0.00714285714285714]);... + atsbend('BD3HC7', 0.01, 0.000258818071001969, -1.37551837900507, 'EApertures', [0.008 0.00786363636363636], 'UUID', 'yKcARqADG3aAniN');... + atsbend('BD4HC71', 0.03, 0.00188018240208164, -2.57765200910186, 'EApertures', [0.008 0.00765909090909091], 'EntranceAngle', 0.00982777557557598);... + atsbend('BD4HC7', 0.253621983633988, 0.0158951863469887, -2.57765200910186, 'EApertures', [0.008 0.00629545454545455]);... + atsbend('BD4HC71', 0.03, 0.00188018240208164, -2.57765200910186, 'EApertures', [0.008 0.005], 'ExitAngle', 0.00982777557557598);... + atsbend('BD5HC7', 0.0231155237960032, 0.00240516115877823, 0.0, 'EApertures', [0.008 0.005]);... + atsbend('BD6HC7', 0.0856857672699483, 0.0117810198825822, 0.0, 'EApertures', [0.008 0.005]);... + atsbend('BD6HC7', 0.0856857672699483, 0.0117810198825822, 0.0, 'EApertures', [0.008 0.005]);... + atsbend('BD5HC7', 0.0231155237960032, 0.00240516115877823, 0.0, 'EApertures', [0.008 0.005]);... + atsbend('BD4HC71', 0.03, 0.00188018240208164, -2.57765200910186, 'EApertures', [0.008 0.00521428571428571], 'EntranceAngle', 0.00982777557557598);... + atsbend('BD4HC7', 0.253621983633988, 0.0158951863469887, -2.57765200910186, 'EApertures', [0.008 0.00643877551020408]);... + atsbend('BD4HC71', 0.03, 0.00188018240208164, -2.57765200910186, 'EApertures', [0.008 0.00766326530612245], 'ExitAngle', 0.00982777557557598);... + atsbend('BD3HC7', 0.01, 0.000258818071001969, -1.37551837900507, 'EApertures', [0.008 0.00781632653061225]);... + atdrift('L073C', 0.0430773209057085, 'EApertures', [0.00794117647058824 0.00794117647058824]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00741176470588235 0.00741176470588235], 'UUID', 'qbIxLUY9ayAZsot');... + atdrift('L071C', 0.048, 'EApertures', [0.00676470588235294 0.00676470588235294]);... + atsextupole('SXD13', 0.09, -689.724579569546, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.007, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'eeUWOlDofsFH7Qi');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atsbend('BQ6HC7', 0.0689196396343699, -0.00144054604712974, 8.95984862959226, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00144054604712974, 'UUID', 'YIBPBZjGMlBArRk');... + atmarker('CROTCH_10_4', 'EApertures', [0.006 0.006]);... + atsbend('BQ6HC7', 0.0689196396343699, -0.00144054604712974, 8.95984862959226, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00144054604712974);... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsextupole('SXF13_HCOR', 0.12, 750.901805779491, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'AUbLGQ0nbmaGYEg');... + atdrift('L081', 0.06, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF1_QCORROCT_78_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -800.842486671932], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'DX9PtcLWCcCLhio');... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444582, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444582, 'UUID', 'RfMiRNktiUgJ8wK');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444582, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444582);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'l7bf4tTOknkOns1');... + atsextupole('SXD1_VCOR', 0.09, -688.075994596801, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'AVuUhHxgYtWGiIu');... + atdrift('L071', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'v3XnBgW4niLmv0h');... + atmarker('GIRDEREND', 'EApertures', [0.006 0.006]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.008 0.008]);... + atmarker('GIRDERSTART', 'EApertures', [0.008 0.008]);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008], 'UUID', 'MRDy6dz8HD6eNVI');... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702352, -1.86297299994296, 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0342430714728858);... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702353, -1.86297299994296, 'EApertures', [0.008 0.008], 'ExitAngle', 0.0342430714728858);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.0076 0.0076]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00715 0.00715], 'UUID', 'bCbCMzUlnSmDAgI');... + atdrift('L071', 0.048, 'EApertures', [0.00665 0.00665]);... + atsextupole('SXD1', 0.09, -688.075994596801, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'p0ZJXfeDpgJYfWu');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444583, 'UUID', 'c48HFSCVnPWvP86');... + atmarker('CROTCH_10_5', 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444583);... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsextupole('SXF1_HCOR', 0.12, 781.382308964691, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'ayTDHV0WtYGGyRd');... + atdrift('L081', 0.06, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF1_QCORROCT_79_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -800.842486671932], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'VE2IMweAjpMs25d');... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444583, 'UUID', 'peaDW6XgsKWmZuz');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444583);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'DFfevtDyP35DulW');... + atsextupole('SXD1_VCOR', 0.09, -688.075994596801, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'UKj45x3Yt2gwZla');... + atdrift('L071', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'pmcVSYMUdJ83hJY');... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00766666666666667 0.00766666666666667]);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008], 'UUID', 'd12jlJYcefkx1aj');... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702353, -1.86297299994296, 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0342430714728858);... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702353, -1.86297299994296, 'EApertures', [0.008 0.008], 'ExitAngle', 0.0342430714728858);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008]);... + atmarker('GIRDEREND', 'EApertures', [0.00785 0.00785]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.0076 0.0076]);... + atmarker('GIRDERSTART', 'EApertures', [0.0073 0.0073]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00715 0.00715], 'UUID', 'fPmRPyP2e58JZtk');... + atdrift('L071', 0.048, 'EApertures', [0.00665 0.00665]);... + atsextupole('SXD11', 0.09, -701.568414672357, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'koXmXLzU7GN1wFr');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444583, 'UUID', 'GTZXxX28geuuBEQ');... + atmarker('CROTCH_10_6', 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444583);... + atdrift('L082', 0.0471064301693061, 'EApertures', [0.006 0.006]);... + atsextupole('SXF11_HCOR', 0.12, 831.660252988522, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'CjLNXMf3tngrkFw');... + atdrift('L084', 0.048820499745398, 'EApertures', [0.006 0.006]);... + atsbend('BQ4H7', 0.0577872115264688, -0.000403189428060739, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.000403189428060739, 'UUID', 'ARG5j05NUXjl4rP');... + atsbend('BQ4H7', 0.0577872115264688, -0.000403189428060739, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'ExitAngle', -0.000403189428060739);... + atdrift('L085', 0.100096014361354, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF1_QCORROCT_80_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -800.842486671932], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'x2fRtSKPfXAUu7k');... + atdrift('L05', 0.06, 'EApertures', [0.006 0.006]);... + atsextupole('SXD11_VCOR', 0.09, -701.568414672357, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'S2qbALrppabNaE5');... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'xdITtbnfPuWtCPG');... + atdrift('L03', 0.176061846245862, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atsbend('BD27', 0.0284984341976272, 0.00225714925227511, -1.18160211440423, 'EApertures', [0.008 0.008], 'UUID', 'd4LdReLb0KuEhEH');... + atsbend('BD17', 0.0959771205127194, 0.00913608259524057, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0205293144427562);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524057, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524057, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524057, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'ExitAngle', 0.0205293144427562);... + atsbend('BD27', 0.0284984341976272, 0.00225714925227511, -1.18160211440423, 'EApertures', [0.0085 0.0085]);... + atdrift('LBD1I', 0.0395472975018047, 'EApertures', [0.0085 0.0085]);... + atdrift('D05HI', 0.00499988833315879, 'EApertures', [0.0085 0.0085]);... + atquadrupole('Q3', 0.19168495937003, 8.41314022851464, 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.18, 'EApertures', [0.0085 0.0085], 'UUID', 'AGGL2fEKYHt1EaG');... + atdrift('D03HIQ', 0.1, 'EApertures', [0.0085 0.0085]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.0085 0.0085], 'UUID', 'lFkEbjRQmkeDoxt');... + atdrift('D022HIQ', 0.048, 'EApertures', [0.0085 0.0085]);... + atsextupole('SH3_VCOR', 0.075, -319.26546309512, 'Action', 'SxtHarm', 'BoDiameter', 0.021, 'BoGap', 0.0062, 'BoLength', 0.075, 'EApertures', [0.0085 0.0085], 'KickAngle', [0. 0.], 'UUID', 'j87lRIeIBoD0XF5');... + atmonitor('BPM', 'EApertures', [0.0085 0.0085], 'UUID', 'g0rLjjNZw2L2Sm6');... + atdrift('D041HI', 0.118040964330437, 'Action', 'BPM', 'EApertures', [0.0085 0.0085]);... + atmarker('CROTCH_10_7', 'EApertures', [0.0085 0.0085]);... + atquadrupole('Q2', 0.190595998125992, -9.58185915782871, 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.18, 'EApertures', [0.0085 0.0085], 'UUID', 'xWiqaAuvYVdGDFH');... + atdrift('D03HI', 0.052, 'EApertures', [0.0085 0.0085]);... + atmultipole('OH2_QCORROCT_81', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.021, 'BoGap', 0.00718, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.0085 0.0085], 'MaxOrder', 3, 'UUID', 'KZW4aqnYvY1kZho');... + atdrift('D022HI', 0.06, 'EApertures', [0.0085 0.0085]);... + atsextupole('SH2_HCOR', 0.075, -0.0179339928448087, 'Action', 'SxtHarm', 'BoDiameter', 0.021, 'BoGap', 0.0062, 'BoLength', 0.075, 'EApertures', [0.0085 0.0085], 'KickAngle', [0. 0.], 'UUID', 'eXjQLUGY4im4Nug');... + atdrift('D03HI', 0.052, 'EApertures', [0.0085 0.0085]);... + atquadrupole('Q1', 0.137671036897098, 9.06658187296726, 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.0085 0.0085], 'UUID', 'wTOjUGrBH2d2i7o');... + atdrift('D031HI', 0.052, 'EApertures', [0.0085 0.0085]);... + atmultipole('OH1_QCORROCT_82_QT', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.021, 'BoGap', 0.00718, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.0085 0.0085], 'MaxOrder', 3, 'UUID', 'qk4CcH7WaA1GKAw');... + atdrift('D022HI', 0.06, 'EApertures', [0.0085 0.0085]);... + atsextupole('SH1_COR', 0.075, 180.531158381771, 'Action', 'SxtHarm', 'BoDiameter', 0.021, 'BoGap', 0.0062, 'BoLength', 0.075, 'EApertures', [0.008 0.008], 'KickAngle', [0. 0.], 'UUID', 'owrmEteGL3ic4mn');... + atmarker('GIRDEREND', 'EApertures', [0.008 0.008]);... + atmarker('AN-C10END', 'EApertures', [0.008 0.008]);... + atmarker('SD11ISTART', 'EApertures', [0.008 0.008]);... + atmarker('VANNE_START', 'EApertures', [0.008 0.008]);... + atmarker('FCOR_11_1', 'UUID', 'yHHtXVb3FZZktlt');... + atmonitor('BPM', 'EApertures', [0.008 0.008], 'UUID', 'QMXFE1vVNT8Krx9');... + atdrift('SD1I_10', 0.322, 'Action', 'BPM', 'EApertures', [0.010952380952381 0.010952380952381]);... + atmarker('VANNE_END', 'EApertures', [0.012 0.012]);... + atdrift('SD1I_11', 0.01, 'Action', 'BPM', 'EApertures', [0.012 0.012]);... + atmarker('DOUBLEBPM_START', 'EApertures', [0.012 0.012]);... + atdrift('SD1I_12', 0.3, 'Action', 'BPM', 'EApertures', [0.01568 0.01568]);... + atmarker('DOUBLEBPM_END', 'EApertures', [0.016 0.016]);... + atdrift('SD1I_13', 0.01, 'Action', 'BPM', 'EApertures', [0.016 0.016]);... + atmarker('STRIPLINE_FBT_V_START', 'EApertures', [0.016 0.016]);... + atdrift('SD1I_14', 0.542, 'Action', 'BPM', 'EApertures', [0.016 0.016]);... + atmarker('STRIPLINE_FBT_V_END', 'EApertures', [0.0133 0.0133]);... + atdrift('SD1I_15', 0.01, 'Action', 'BPM', 'EApertures', [0.013 0.013]);... + atmarker('STRIPLINE_FBT_H_START', 'EApertures', [0.0124 0.0124]);... + atdrift('SD1I_16', 0.542, 'Action', 'BPM', 'EApertures', [0.01 0.01]);... + atmarker('STRIPLINE_FBT_H_END', 'EApertures', [0.01 0.01]);... + atdrift('SD1I_17', 0.01, 'Action', 'BPM', 'EApertures', [0.01 0.01]);... + atmarker('ONDULEURMARK_START', 'EApertures', [0.01 0.01]);... + atdrift('SD1I_18', 2.86, 'Action', 'BPM', 'EApertures', [0.01 0.01]);... + atmarker('SD11I_ONDULEURCENTER', 'EApertures', [0.01 0.01]);... + atdrift('SD1I_19', 2.86, 'Action', 'BPM', 'EApertures', [0.01 0.01]);... + atmarker('ONDULEURMARK_END', 'EApertures', [0.016 0.016]);... + atdrift('SD1I_20', 0.254458331720047, 'Action', 'BPM', 'EApertures', [0.0075 0.0045]);... + atmarker('VANNE_START', 'EApertures', [0.012 0.012]);... + atdrift('SD1I_21', 0.322, 'Action', 'BPM', 'EApertures', [0.010952380952381 0.010952380952381]);... + atmarker('FCOR_11_2', 'UUID', 'CdhmOvQ9OTGDILc');... + atmonitor('BPM', 'EApertures', [0.008 0.008], 'UUID', 'Cc8ZFPaEtkeCRBF');... + atmarker('VANNE_END', 'EApertures', [0.008 0.008]);... + atmarker('SD11IEND', 'EApertures', [0.008 0.008]);... + atmarker('AN-C11START', 'EApertures', [0.008 0.008]);... + atmarker('GIRDERSTART', 'EApertures', [0.008 0.008]);... + atsextupole('SH1_COR', 0.075, 180.531158381771, 'Action', 'SxtHarm', 'BoDiameter', 0.021, 'BoGap', 0.0062, 'BoLength', 0.075, 'EApertures', [0.008 0.008], 'KickAngle', [0. 0.], 'UUID', 'Wy3JE4PvVJsdQDc');... + atdrift('D022HI', 0.06, 'EApertures', [0.0085 0.0085]);... + atmultipole('OH1_QCORROCT_83_QT', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.021, 'BoGap', 0.00718, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.0085 0.0085], 'MaxOrder', 3, 'UUID', 'gnh0VlujcSNQWZ5');... + atdrift('D031HI', 0.052, 'EApertures', [0.0085 0.0085]);... + atquadrupole('Q1', 0.137671036897098, 9.06658187296726, 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.0085 0.0085], 'UUID', 'y0SHUqU8rgGVOBT');... + atdrift('D03HI', 0.052, 'EApertures', [0.0085 0.0085]);... + atsextupole('SH2_HCOR', 0.075, -0.0179339928448087, 'Action', 'SxtHarm', 'BoDiameter', 0.021, 'BoGap', 0.0062, 'BoLength', 0.075, 'EApertures', [0.0085 0.0085], 'KickAngle', [0. 0.], 'UUID', 'g2crvbGwB3k7CJf');... + atdrift('D022HI', 0.06, 'EApertures', [0.0085 0.0085]);... + atmultipole('OH2_QCORROCT_84', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.021, 'BoGap', 0.00718, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.0085 0.0085], 'MaxOrder', 3, 'UUID', 'sXpmCWmPNFzGO7V');... + atdrift('D03HI', 0.052, 'EApertures', [0.0085 0.0085]);... + atquadrupole('Q2', 0.190595998125992, -9.58185915782871, 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.18, 'EApertures', [0.0085 0.0085], 'UUID', 'l6lzAmcPff4CXYt');... + atdrift('D041HI', 0.118040964330437, 'Action', 'BPM', 'EApertures', [0.0085 0.0085]);... + atmonitor('BPM', 'EApertures', [0.0085 0.0085], 'UUID', 'qHUdy1dOl1dBPgc');... + atsextupole('SH3_VCOR', 0.075, -319.26546309512, 'Action', 'SxtHarm', 'BoDiameter', 0.021, 'BoGap', 0.0062, 'BoLength', 0.075, 'EApertures', [0.0085 0.0085], 'KickAngle', [0. 0.], 'UUID', 'Ug98H0yZc28cf8s');... + atdrift('D022HIQ', 0.048, 'EApertures', [0.0085 0.0085]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.0085 0.0085], 'UUID', 'FpGbB8hDqlE1VlH');... + atdrift('D03HIQ', 0.1, 'EApertures', [0.0085 0.0085]);... + atquadrupole('Q3', 0.19168495937003, 8.41314022851464, 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.18, 'EApertures', [0.0085 0.0085], 'UUID', 'qtsBAOvTGriideM');... + atdrift('D05HI', 0.00499988833315879, 'EApertures', [0.0085 0.0085]);... + atdrift('LBD1I', 0.0395472975018047, 'EApertures', [0.0085 0.0085]);... + atsbend('BD27', 0.0284984341976272, 0.00225714925227511, -1.18160211440423, 'EApertures', [0.008 0.008], 'UUID', 'Vmes5SFhqhI54LO');... + atsbend('BD17', 0.0959771205127194, 0.00913608259524057, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0205293144427562);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524057, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524057, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524057, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'ExitAngle', 0.0205293144427562);... + atsbend('BD27', 0.0284984341976272, 0.00225714925227511, -1.18160211440423, 'EApertures', [0.00766666666666667 0.00766666666666667]);... + atdrift('L03', 0.176061846245862, 'EApertures', [0.006 0.006]);... + atsextupole('SXD11', 0.09, -701.568414672357, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0075, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'bK5S9OB0Ys7zxeK');... + atmarker('CROTCH_11_1', 'EApertures', [0.006 0.006]);... + atdrift('L04', 0.111275514615956, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF1_QCORROCT_85_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -800.842486671932], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'm33DrisBkDuo7hX');... + atdrift('L084', 0.048820499745398, 'EApertures', [0.006 0.006]);... + atsbend('BQ4H7', 0.0577872115264688, -0.000403189428060739, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.000403189428060739, 'UUID', 'f2yHBOtgEc1jwNf');... + atsbend('BQ4H7', 0.0577872115264688, -0.000403189428060739, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'ExitAngle', -0.000403189428060739);... + atdrift('L084', 0.048820499745398, 'EApertures', [0.006 0.006]);... + atsextupole('SXF11_HCOR', 0.12, 831.660252988522, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'h4aV333QnOOxSd9');... + atdrift('L082', 0.0471064301693061, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444583, 'UUID', 'RjZJmismjVd71Fc');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444583);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'I9cHU8jEE6OcoRt');... + atsextupole('SXD11_VCOR', 0.09, -701.568414672357, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'McQ3n7YVbwEarnS');... + atdrift('L071', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'wX24x1XdRpdMJVz');... + atmarker('GIRDEREND', 'EApertures', [0.006 0.006]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.008 0.008]);... + atmarker('GIRDERSTART', 'EApertures', [0.008 0.008]);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008], 'UUID', 'oKiS9TXGNEeMeK6');... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702353, -1.86297299994296, 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0342430714728858);... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702353, -1.86297299994296, 'EApertures', [0.008 0.008], 'ExitAngle', 0.0342430714728858);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00758974358974359 0.00758974358974359]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00717948717948718 0.00717948717948718], 'UUID', 'X4GRQMmEgfG1RZM');... + atdrift('L071', 0.048, 'EApertures', [0.00661538461538461 0.00661538461538461]);... + atsextupole('SXD1', 0.09, -688.075994596801, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'i7C716wcD83OCcu');... + atmarker('CROTCH_11_2', 'EApertures', [0.006 0.006]);... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444583, 'UUID', 'ldYFvA0YCnLCo2o');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444583);... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF1_QCORROCT_86_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -800.842486671932], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'kMqW0e4iBTXGYDW');... + atdrift('L081', 0.06, 'EApertures', [0.006 0.006]);... + atsextupole('SXF1_HCOR', 0.12, 781.382308964691, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'ARXVs12XnBLCHQA');... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444583, 'UUID', 'm60llCpFQtVEr1l');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444583);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'RE96NkB133sMsHB');... + atsextupole('SXD1_VCOR', 0.09, -688.075994596801, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'u2l5rLkZP0vhz9R');... + atdrift('L071', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'Rdoze0uOiE22FwS');... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00766666666666667 0.00766666666666667]);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008], 'UUID', 'EgYYWfKNLPjDBvP');... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702353, -1.86297299994296, 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0342430714728858);... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702352, -1.86297299994296, 'EApertures', [0.008 0.008], 'ExitAngle', 0.0342430714728858);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008]);... + atmarker('GIRDEREND', 'EApertures', [0.00785 0.00785]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.0076 0.0076]);... + atmarker('GIRDERSTART', 'EApertures', [0.00735 0.00735]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00715 0.00715], 'UUID', 'DFIrSgVfJeVb6lZ');... + atdrift('L071', 0.048, 'EApertures', [0.00665 0.00665]);... + atsextupole('SXD1', 0.09, -688.075994596801, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'lGKtwl7FZsItV2o');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_11_3', 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444582, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444582, 'UUID', 'h1MPaXqhqSPoBH3');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444582, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444582);... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF1_QCORROCT_87_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -800.842486671932], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'aSZNrvCyKrlPZbR');... + atdrift('L081', 0.06, 'EApertures', [0.006 0.006]);... + atsextupole('SXF13_HCOR', 0.12, 750.901805779491, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SBh95P4NRRrVy2D');... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsbend('BQ6HC7', 0.0689196396343699, -0.00144054604712974, 8.95984862959226, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00144054604712974, 'UUID', 'N61STpOyU7VYWnS');... + atsbend('BQ6HC7', 0.0689196396343699, -0.00144054604712974, 8.95984862959226, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00144054604712974);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'qk7Bxfb3U6Lo9Jm');... + atsextupole('SXD13_VCOR', 0.09, -689.724579569546, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'QyJfG04OWPX6Pxp');... + atdrift('L071C', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'l2IxSXerrj20sAY');... + atdrift('L073C', 0.0430773209057085, 'EApertures', [0.00714285714285714 0.00714285714285714]);... + atsbend('BD3HC7', 0.01, 0.000258818071001969, -1.37551837900507, 'EApertures', [0.008 0.00786363636363636], 'UUID', 'ASjq2BvBwo8jV6x');... + atsbend('BD4HC71', 0.03, 0.00188018240208164, -2.57765200910186, 'EApertures', [0.008 0.00769318181818182], 'EntranceAngle', 0.00982777557557598);... + atsbend('BD4HC7', 0.253621983633988, 0.0158951863469887, -2.57765200910186, 'EApertures', [0.008 0.00632954545454545]);... + atsbend('BD4HC71', 0.03, 0.00188018240208164, -2.57765200910186, 'EApertures', [0.008 0.005], 'ExitAngle', 0.00982777557557598);... + atsbend('BD5HC7', 0.0231155237960032, 0.00240516115877823, 0.0, 'EApertures', [0.008 0.005]);... + atsbend('BD6HC7', 0.0856857672699483, 0.0117810198825822, 0.0, 'EApertures', [0.008 0.00425]);... + atsbend('BD6HC7', 0.0856857672699483, 0.0117810198825822, 0.0, 'EApertures', [0.008 0.00457894736842105]);... + atsbend('BD5HC7', 0.0231155237960032, 0.00240516115877823, 0.0, 'EApertures', [0.008 0.005]);... + atsbend('BD4HC71', 0.03, 0.00188018240208164, -2.57765200910186, 'EApertures', [0.008 0.00518367346938775], 'EntranceAngle', 0.00982777557557598);... + atsbend('BD4HC7', 0.253621983633988, 0.0158951863469887, -2.57765200910186, 'EApertures', [0.008 0.00640816326530612]);... + atsbend('BD4HC71', 0.03, 0.00188018240208164, -2.57765200910186, 'EApertures', [0.008 0.00763265306122449], 'ExitAngle', 0.00982777557557598);... + atsbend('BD3HC7', 0.01, 0.000258818071001969, -1.37551837900507, 'EApertures', [0.008 0.00781632653061225]);... + atdrift('L073C', 0.0430773209057085, 'EApertures', [0.00793939393939394 0.00793939393939394]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00739393939393939 0.00739393939393939], 'UUID', 'DH7jyjqXUjMeIWh');... + atdrift('L071C', 0.048, 'EApertures', [0.00678787878787879 0.00678787878787879]);... + atsextupole('SXD13', 0.09, -689.724579569546, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.007, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'teJyGkMiGJx7W9E');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_11_4', 'EApertures', [0.006 0.006]);... + atsbend('BQ6HC7', 0.0689196396343699, -0.00144054604712974, 8.95984862959226, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00144054604712974, 'UUID', 't0bSyVh9RmS36z1');... + atsbend('BQ6HC7', 0.0689196396343699, -0.00144054604712974, 8.95984862959226, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00144054604712974);... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsextupole('SXF13_HCOR', 0.12, 750.901805779491, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'DN7E08sMYoxU7nI');... + atdrift('L081', 0.06, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF1_QCORROCT_88_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -800.842486671932], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'ibTWTrbCm6sWjgA');... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444582, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444582, 'UUID', 'N8PkH7h3EMAAHNp');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444582, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444582);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'be44GFJfO0XxV3U');... + atsextupole('SXD1_VCOR', 0.09, -688.075994596801, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'hgg0BUUOWeRdeG4');... + atdrift('L071', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'bK5VgV9g8lvzumA');... + atmarker('GIRDEREND', 'EApertures', [0.006 0.006]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.008 0.008]);... + atmarker('GIRDERSTART', 'EApertures', [0.008 0.008]);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008], 'UUID', 'Fj4jlOunCGMoe2t');... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702352, -1.86297299994296, 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0342430714728858);... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702353, -1.86297299994296, 'EApertures', [0.008 0.008], 'ExitAngle', 0.0342430714728858);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00758974358974359 0.00758974358974359]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00717948717948718 0.00717948717948718], 'UUID', 'GDNn20G4aEMN9m3');... + atdrift('L071', 0.048, 'EApertures', [0.00666666666666667 0.00666666666666667]);... + atsextupole('SXD1', 0.09, -688.075994596801, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'iM2M4UOZE3J41YS');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_11_5', 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444583, 'UUID', 'GwgSZN2328rp3PT');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444583);... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsextupole('SXF1_HCOR', 0.12, 781.382308964691, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'DSM3GmNlqvp9Gjd');... + atdrift('L081', 0.06, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF1_QCORROCT_89_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -800.842486671932], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'ERjmLMe0rcRk6b0');... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444583, 'UUID', 'unghcATDPyEBOB8');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444583);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'Cq2iwlZESZjufd0');... + atsextupole('SXD1_VCOR', 0.09, -688.075994596801, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'sbxHoVYIV8IIf1d');... + atdrift('L071', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'F3IfjjeIVKOLvSm');... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.008 0.008]);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008], 'UUID', 'HrfAnlAoacVLBvK');... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702353, -1.86297299994296, 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0342430714728858);... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702353, -1.86297299994296, 'EApertures', [0.008 0.008], 'ExitAngle', 0.0342430714728858);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008]);... + atmarker('GIRDEREND', 'EApertures', [0.00784615384615385 0.00784615384615385]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00758974358974359 0.00758974358974359]);... + atmarker('GIRDERSTART', 'EApertures', [0.00733333333333333 0.00733333333333333]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00712820512820513 0.00712820512820513], 'UUID', 'RCDLnwSVDLIblEU');... + atdrift('L071', 0.048, 'EApertures', [0.00661538461538461 0.00661538461538461]);... + atsextupole('SXD12', 0.09, -749.191327132338, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'vzlIDNxN3NVzArZ');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_11_6', 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444583, 'UUID', 'M034x2N9ERAlVo6');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444583);... + atdrift('L082', 0.0471064301693061, 'EApertures', [0.006 0.006]);... + atsextupole('SXF12_HCOR', 0.12, 860.065976124029, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'vBXIIPRxb50EZ6B');... + atdrift('L084', 0.048820499745398, 'EApertures', [0.006 0.006]);... + atsbend('BQ4H7', 0.0577872115264688, -0.000403189428060739, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.000403189428060739, 'UUID', 'mKLB68WE5XQlO7e');... + atsbend('BQ4H7', 0.0577872115264688, -0.000403189428060739, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'ExitAngle', -0.000403189428060739);... + atdrift('L085', 0.100096014361354, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF1_QCORROCT_90_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -800.842486671932], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'Z1Strx97kRnCu2u');... + atdrift('L05', 0.06, 'EApertures', [0.006 0.006]);... + atsextupole('SXD12_VCOR', 0.09, -749.191327132338, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'hNCAVNs5I9yVB1a');... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'ZytQwc960lwSVjp');... + atdrift('L03', 0.176061846245862, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atsbend('BD27', 0.0284984341976272, 0.00225714925227511, -1.18160211440423, 'EApertures', [0.008 0.008], 'UUID', 'SryfejfB4391bmQ');... + atsbend('BD17', 0.0959771205127194, 0.00913608259524057, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0205293144427562);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524057, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524057, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524057, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'ExitAngle', 0.0205293144427562);... + atsbend('BD27', 0.0284984341976272, 0.00225714925227511, -1.18160211440423, 'EApertures', [0.00755555555555556 0.00755555555555556]);... + atdrift('LBD1M1', 0.0395472975018047, 'EApertures', [0.00644444444444444 0.00644444444444444]);... + atdrift('D05HM1', 0.05, 'EApertures', [0.006 0.006]);... + atquadrupole('Q7', 0.0672457254622836, -11.8140171585779, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.058, 'EApertures', [0.006 0.006], 'UUID', 'Ytrr4vxVRZKdwZu');... + atdrift('D03HM1', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH6_COR', 0.06, -324.475203415205, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'ZKSyntFNaJ5Wlg6');... + atdrift('D022HM1Q', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'CpFCRFRm2EmkRc3');... + atdrift('D040HM1Q', 0.128, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_11_7', 'EApertures', [0.006 0.006]);... + atquadrupole('Q6', 0.067209291601852, 11.9784555023184, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.058, 'EApertures', [0.006 0.006], 'UUID', 'liPfobAKD0CpaKl');... + atdrift('D03HM1', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH5', 0.06, -514.413524183539, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'UUID', 'X83nhDrjryH7iB1');... + atdrift('D022HM1', 0.06, 'EApertures', [0.006 0.006]);... + atmultipole('OH5_QCORROCT_91', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.008 0.008], 'MaxOrder', 3, 'UUID', 'xO0M72uYnVimv47');... + atmonitor('BPM', 'EApertures', [0.008 0.008], 'UUID', 'Cdy2y0iEgEZJjLb');... + atdrift('D06HM1', 0.13, 'Action', 'BPM', 'EApertures', [0.006 0.006]);... + atquadrupole('Q5', 0.105773394525209, 14.0793630884634, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.098, 'EApertures', [0.006 0.006], 'UUID', 'fMXpqgwBTl07FIS');... + atdrift('D032HM1', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH4_COR', 0.06, 682.544409709839, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'ZNa8VtbTbW73h9V');... + atdrift('D022HM1', 0.06, 'EApertures', [0.006 0.006]);... + atmultipole('OH4_QCORROCT_92_QT', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'MaxOrder', 3, 'UUID', 'wLLWJTnL06nZk2k');... + atdrift('D031HM1', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('Q4', 0.0785476107439048, -13.6216098775293, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.07, 'EApertures', [0.006 0.006], 'UUID', 'QUOv7VmeMswD0Wd');... + atmarker('GIRDEREND', 'EApertures', [0.006 0.006]);... + atmarker('AN-C11END', 'EApertures', [0.006 0.006]);... + atmarker('SD12MLSTART', 'EApertures', [0.006 0.006]);... + atmarker('VANNE_START', 'EApertures', [0.006 0.006]);... + atmarker('FCOR_12_1', 'UUID', 'e8J6KdMSYnGCT2j');... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'JIT1CM87U7f4sSM');... + atdrift('SD1M1_23', 0.322, 'Action', 'BPM', 'EApertures', [0.00876190476190476 0.00876190476190476]);... + atmarker('VANNE_END', 'EApertures', [0.01 0.01]);... + atdrift('SD1M1_24', 0.01, 'Action', 'BPM', 'EApertures', [0.01 0.01]);... + atmarker('DCCT_1_START', 'EApertures', [0.01 0.01]);... + atdrift('SD1M1_25', 0.3, 'Action', 'BPM', 'EApertures', [0.01 0.01]);... + atmarker('DCCT_1_END', 'EApertures', [0.01 0.01]);... + atdrift('SD1M1_26', 0.209986392245071, 'Action', 'BPM', 'RApertures', [-0.00895714285714286 0.00828571428571429 -0.00895714285714286 0.00895714285714286]);... + atmarker('ONDULEURMARK_START', 'RApertures', [-0.00878333333333333 0.008 -0.00878333333333333 0.00878333333333333]);... + atdrift('SD1M1_27', 1.29, 'Action', 'BPM', 'RApertures', [-0.0045 0.004 -0.0035 0.0035]);... + atmarker('SD12MLCENTER', 'EApertures', [0.0045 0.0035]);... + atdrift('SD1M1_28', 1.29, 'Action', 'BPM', 'EApertures', [0.0045 0.0035]);... + atmarker('ONDULEURMARK_END', 'EApertures', [0.00902941176470588 0.00885294117647059]);... + atdrift('SD1M1_29', 0.01, 'Action', 'BPM', 'EApertures', [0.00935294117647059 0.00923529411764706]);... + atmarker('DCCT_2_START', 'EApertures', [0.00951470588235294 0.00942647058823529]);... + atdrift('SD1M1_30', 0.3, 'Action', 'BPM', 'EApertures', [0.01 0.01]);... + atmarker('DCCT_2_END', 'EApertures', [0.01 0.01]);... + atdrift('SD1M1_31', 0.209986392245071, 'Action', 'BPM', 'EApertures', [0.01 0.01]);... + atmarker('VANNE_START', 'EApertures', [0.01 0.01]);... + atdrift('SD1M1_32', 0.322, 'Action', 'BPM', 'EApertures', [0.00872727272727273 0.00872727272727273]);... + atmarker('FCOR_12_2', 'UUID', 'u6FYxdu0vwJcxnl');... + atmonitor('BPM', 'EApertures', [0.008 0.008], 'UUID', 'xl9mC7lqmTqw3NT');... + atmarker('VANNE_END', 'EApertures', [0.008 0.008]);... + atmarker('SD12MLEND', 'EApertures', [0.008 0.008]);... + atmarker('AN-C12START', 'EApertures', [0.008 0.008]);... + atmarker('GIRDERSTART', 'EApertures', [0.008 0.008]);... + atquadrupole('Q4', 0.0785476107439048, -13.6216098775293, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.07, 'EApertures', [0.0064 0.0064], 'UUID', 'Fs4DiUQO4kjDvur');... + atdrift('D031HM1', 0.048, 'EApertures', [0.006 0.006]);... + atmultipole('OH4_QCORROCT_93_QT', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'MaxOrder', 3, 'UUID', 'mLYELpqhxv7LXyE');... + atdrift('D022HM1', 0.06, 'EApertures', [0.006 0.006]);... + atsextupole('SH4_COR', 0.06, 682.544409709839, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'qgS7WaCgZ7v4DJT');... + atdrift('D032HM1', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('Q5', 0.105773394525209, 14.0793630884634, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.098, 'EApertures', [0.006 0.006], 'UUID', 'K5GBRpf1PQIhGIc');... + atdrift('D06HM1', 0.13, 'Action', 'BPM', 'EApertures', [0.006 0.006]);... + atmonitor('BPM', 'EApertures', [0.008 0.008], 'UUID', 'dylsTFwUnut1uCO');... + atmultipole('OH5_QCORROCT_94', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.008 0.008], 'MaxOrder', 3, 'UUID', 'NnT50e4H2AVaXMm');... + atdrift('D022HM1', 0.06, 'EApertures', [0.006 0.006]);... + atsextupole('SH5', 0.06, -514.413524183539, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'UUID', 'Uceb2R74KqMI5jL');... + atdrift('D03HM1', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('Q6', 0.067209291601852, 11.9784555023184, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.058, 'EApertures', [0.006 0.006], 'UUID', 'd426WyYXdYWCHi1');... + atdrift('D040HM1Q', 0.128, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'wPAv3F6z1PIYCz2');... + atdrift('D022HM1Q', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH6_COR', 0.06, -324.475203415205, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'Zc3mpeel8cmiEw5');... + atdrift('D03HM1', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('Q7', 0.0672457254622836, -11.8140171585779, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.058, 'EApertures', [0.006 0.006], 'UUID', 'tp9g2fAbWWeNqeB');... + atdrift('D05HM1', 0.05, 'EApertures', [0.006 0.006]);... + atdrift('LBD1M1', 0.0395472975018047, 'EApertures', [0.006 0.006]);... + atsbend('BD24', 0.0284984341976272, 0.00215787898333112, -1.18160211440423, 'EApertures', [0.00766666666666667 0.00766666666666667], 'UUID', 'lvA8xYXzR6p9dmO');... + atsbend('BD14', 0.0959771205127194, 0.00873427426315538, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0205293144427562);... + atsbend('BD14', 0.0959771205127194, 0.00873427426315538, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD14', 0.0959771205127194, 0.00873427426315538, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD14', 0.0959771205127194, 0.00873427426315538, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'ExitAngle', 0.0205293144427562);... + atsbend('BD24', 0.0284984341976272, 0.00215787898333112, -1.18160211440423, 'EApertures', [0.00786666666666667 0.00786666666666667]);... + atdrift('L03', 0.176061846245862, 'EApertures', [0.006 0.006]);... + atsextupole('SXD21', 0.09, -655.116114720116, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0075, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'QUo81bF22BWsxnt');... + atdrift('L04', 0.111275514615956, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_12_1', 'EApertures', [0.006 0.006]);... + atmultipole('OCTF2_QCORROCT_95_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -262.360558705412], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'lUnOSQN39f9QGnO');... + atdrift('L084', 0.048820499745398, 'EApertures', [0.006 0.006]);... + atsbend('BQ4H4', 0.0577872115264688, -0.000385457006104762, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.000385457006104762, 'UUID', 'XNyWR5sBrnnpwGM');... + atsbend('BQ4H4', 0.0577872115264688, -0.000385457006104762, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'ExitAngle', -0.000385457006104762);... + atdrift('L084', 0.048820499745398, 'EApertures', [0.006 0.006]);... + atsextupole('SXF21_HCOR', 0.12, 719.09699842571, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SQ9v7VjsMH1lfcH');... + atdrift('L082', 0.0471064301693061, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H4', 0.0689196396343699, -0.00144531683192883, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00144531683192883, 'UUID', 't640rtQ8y3C0Syp');... + atsbend('BQ6H4', 0.0689196396343699, -0.00144531683192883, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00144531683192883);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'OzQDlf1tpVXse6K');... + atsextupole('SXD21_VCOR', 0.09, -655.116114720116, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'cBZAfI8iAtqDNJa');... + atdrift('L071', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'KDjDZSG2icVkABm');... + atmarker('GIRDEREND', 'EApertures', [0.006 0.006]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00666666666666667 0.00666666666666667]);... + atmarker('GIRDERSTART', 'EApertures', [0.008 0.008]);... + atsbend('BD4H4', 0.0393049032024916, 0.00234342379845867, -1.11997137375817, 'EApertures', [0.008 0.008], 'UUID', 'YSfZr2qVvTm2Y8p');... + atsbend('BD5H4', 0.398927492296932, 0.0303936245742024, -1.86297299994296, 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0342430714728858);... + atsbend('BD5H4', 0.398927492296932, 0.0303936245742024, -1.86297299994296, 'EApertures', [0.008 0.008], 'ExitAngle', 0.0342430714728858);... + atsbend('BD4H4', 0.0393049032024916, 0.00234342379845867, -1.11997137375817, 'EApertures', [0.008 0.008]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00775 0.00775]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.0073 0.0073], 'UUID', 'w75bu50AEqeikMF');... + atdrift('L071', 0.048, 'EApertures', [0.0068 0.0068]);... + atsextupole('SXD2', 0.09, -617.904418360321, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'rmYqQcyTwYCBs40');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_12_2', 'EApertures', [0.006 0.006]);... + atsbend('BQ6H4', 0.0689196396343699, -0.00144531683192883, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00144531683192883, 'UUID', 'sChWuqKvR1tZyqg');... + atsbend('BQ6H4', 0.0689196396343699, -0.00144531683192883, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00144531683192883);... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF2_QCORROCT_96_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -262.360558705412], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'gU04ATyKRetMXar');... + atdrift('L081', 0.06, 'EApertures', [0.006 0.006]);... + atsextupole('SXF2_HCOR', 0.12, 741.112250869933, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'wyOSoyR9QEpWjCy');... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H4', 0.0689196396343699, -0.00144531683192883, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00144531683192883, 'UUID', 'lW1n9z7dHcUxWMx');... + atsbend('BQ6H4', 0.0689196396343699, -0.00144531683192883, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00144531683192883);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'bXsY2iJKRYZ7mTu');... + atsextupole('SXD2_VCOR', 0.09, -617.904418360321, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'B9A7A0lG3cgWy5n');... + atdrift('L071', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'cngVsTs3Xlg90xc');... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00666666666666667 0.00666666666666667]);... + atsbend('BD4H4', 0.0393049032024916, 0.00234342379845867, -1.11997137375817, 'EApertures', [0.008 0.008], 'UUID', 'SeMXAlyOwvdABQQ');... + atsbend('BD5H4', 0.398927492296932, 0.0303936245742024, -1.86297299994296, 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0342430714728858);... + atsbend('BD5H4', 0.398927492296932, 0.0303936245742024, -1.86297299994296, 'EApertures', [0.008 0.008], 'ExitAngle', 0.0342430714728858);... + atsbend('BD4H4', 0.0393049032024916, 0.00234342379845867, -1.11997137375817, 'EApertures', [0.008 0.008]);... + atmarker('GIRDEREND', 'EApertures', [0.008 0.008]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00775 0.00775]);... + atmarker('GIRDERSTART', 'EApertures', [0.00745 0.00745]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.0073 0.0073], 'UUID', 'badXwt4qn8KQq2W');... + atdrift('L071', 0.048, 'EApertures', [0.0068 0.0068]);... + atsextupole('SXD22', 0.09, -636.039531358256, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'GmUq6lryvVbNf3J');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_12_3', 'EApertures', [0.006 0.006]);... + atsbend('BQ6H4', 0.0689196396343699, -0.00144531683192883, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00144531683192883, 'UUID', 'Jmj5HWNDjmYXtiv');... + atsbend('BQ6H4', 0.0689196396343699, -0.00144531683192883, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00144531683192883);... + atdrift('L082', 0.0471064301693061, 'EApertures', [0.006 0.006]);... + atsextupole('SXF22_HCOR', 0.12, 843.464304725645, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'mBtmcLffL5Idqs3');... + atdrift('L084', 0.048820499745398, 'EApertures', [0.006 0.006]);... + atsbend('BQ4H4', 0.0577872115264688, -0.000385457006104762, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.000385457006104762, 'UUID', 'pbRGq4pI0x23ylt');... + atsbend('BQ4H4', 0.0577872115264688, -0.000385457006104762, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'ExitAngle', -0.000385457006104762);... + atdrift('L085', 0.100096014361354, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF2_QCORROCT_97_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -262.360558705412], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'PhA1lcL64Z4Ms7G');... + atdrift('L05', 0.06, 'EApertures', [0.008 0.008]);... + atsextupole('SXD22_VCOR', 0.09, -636.039531358256, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.0068 0.0068], 'KickAngle', [0. 0.], 'UUID', 'dONmHdXjUuVa1LY');... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'PkES8ZRWWPQfNT4');... + atdrift('L03', 0.176061846245862, 'Action', 'BPM', 'EApertures', [0.006 0.006]);... + atsbend('BD24', 0.0284984341976272, 0.00215787898333112, -1.18160211440423, 'EApertures', [0.008 0.008], 'UUID', 'F9gY0KLLkYYWq0i');... + atsbend('BD14', 0.0959771205127194, 0.00873427426315538, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0205293144427562);... + atsbend('BD14', 0.0959771205127194, 0.00873427426315538, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD14', 0.0959771205127194, 0.00873427426315538, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD14', 0.0959771205127194, 0.00873427426315538, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'ExitAngle', 0.0205293144427562);... + atsbend('BD24', 0.0284984341976272, 0.00215787898333112, -1.18160211440423, 'EApertures', [0.00715789473684211 0.00715789473684211]);... + atdrift('LBD1C', 0.0395472975018047, 'EApertures', [0.00621052631578947 0.00621052631578947]);... + atdrift('D05HC', 0.00499988833315879, 'EApertures', [0.006 0.006]);... + atquadrupole('Q11', 0.0789546761676337, -12.3862992113073, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.07, 'EApertures', [0.006 0.006], 'UUID', 'p4NrhTXoufdtcAs');... + atdrift('D03HC', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH9_COR', 0.06, -668.536791100884, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'kWgTY9cQdx1798J');... + atdrift('D022HCQ', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'IJqoJWkKJozrY0n');... + atdrift('D041HCQ', 0.108, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_12_4', 'EApertures', [0.006 0.006]);... + atquadrupole('Q10', 0.0844113331477278, 13.6568508102765, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.076, 'EApertures', [0.006 0.006], 'UUID', 'lPMJWqOZ5sefgS0');... + atdrift('D03HC', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH8', 0.06, -366.603155097304, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'UUID', 'ay3dUu3BmUVlxo9');... + atdrift('D022HCQ', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'FzX7uTKu4DgUyWm');... + atmonitor('BPM', 'EApertures', [0.00633333333333333 0.00633333333333333], 'UUID', 'EdAbJKEnJVmdDjL');... + atdrift('D06HCQ', 0.158, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atquadrupole('Q9', 0.106409911705093, 12.8349230947647, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.098, 'EApertures', [0.006 0.006], 'UUID', 'sCKSj9BG7Hafr3N');... + atdrift('D032HC', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH7_COR', 0.06, 832.664084881681, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'XvEMdh1NroVOuMj');... + atdrift('D022HC', 0.06, 'EApertures', [0.006 0.006]);... + atmultipole('OH7_QCORROCT_98_QT', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'MaxOrder', 3, 'UUID', 'ccP89YdPMyfFKJL');... + atdrift('D031HC', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('Q8', 0.0786666675115942, -13.273182641893, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.07, 'EApertures', [0.006 0.006], 'UUID', 'MBbn2dkZQWLfudB');... + atmarker('GIRDEREND', 'EApertures', [0.00766666666666667 0.00766666666666667]);... + atmarker('AN-C12END', 'EApertures', [0.00766666666666667 0.00766666666666667]);... + atmarker('SD13CSTART', 'EApertures', [0.00766666666666667 0.00766666666666667]);... + atmarker('VANNE_START', 'EApertures', [0.00766666666666667 0.00766666666666667]);... + atmarker('FCOR_13_1', 'UUID', 'QudgYae9CkqGqIW');... + atmonitor('BPM', 'EApertures', [0.00766666666666667 0.00766666666666667], 'UUID', 'R8Bl4211IDF971s');... + atdrift('SD1C_25', 0.322, 'Action', 'BPM', 'EApertures', [0.00847619047619048 0.00847619047619048]);... + atmarker('VANNE_END', 'EApertures', [0.01 0.01]);... + atdrift('SD1C_26', 0.0835458676300582, 'Action', 'BPM', 'EApertures', [0.01 0.01]);... + atmarker('ONDULEURMARK_START', 'EApertures', [0.042 0.0125]);... + atdrift('SD1C_27', 1.189, 'Action', 'BPM', 'EApertures', [0.0475 0.002 ]);... + atmarker('SD13CCENTER', 'EApertures', [0.0475 0.002 ]);... + atdrift('SD1C_28', 1.189, 'Action', 'BPM', 'EApertures', [0.0475 0.002 ]);... + atmarker('ONDULEURMARK_END', 'EApertures', [0.042 0.0125]);... + atdrift('SD1C_29', 0.0835458676300582, 'Action', 'BPM', 'EApertures', [0.01 0.01]);... + atmarker('VANNE_START', 'EApertures', [0.01 0.01]);... + atdrift('SD1C_30', 0.322, 'Action', 'BPM', 'EApertures', [0.00847619047619048 0.00847619047619048]);... + atmarker('FCOR_13_2', 'UUID', 'q8neXiGLayNFazn');... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'xqOgUiITKNcbrPL');... + atmarker('VANNE_END', 'EApertures', [0.006 0.006]);... + atmarker('SD13CEND', 'EApertures', [0.006 0.006]);... + atmarker('AN-C13START', 'EApertures', [0.006 0.006]);... + atmarker('GIRDERSTART', 'EApertures', [0.006 0.006]);... + atquadrupole('Q8', 0.0786666675115942, -13.273182641893, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.07, 'EApertures', [0.006 0.006], 'UUID', 'uZRI20TwQ88JUFD');... + atdrift('D031HC', 0.048, 'EApertures', [0.006 0.006]);... + atmultipole('OH7_QCORROCT_99_QT', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'MaxOrder', 3, 'UUID', 'AFS7Cc3VtVmTiXv');... + atdrift('D022HC', 0.06, 'EApertures', [0.006 0.006]);... + atsextupole('SH7_COR', 0.06, 832.664084881681, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'MXopiGpLw5onq48');... + atdrift('D032HC', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('Q9', 0.106409911705093, 12.8349230947647, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.098, 'EApertures', [0.006 0.006], 'UUID', 'AAsoh6R6rPAwQRF');... + atdrift('D06HCQ', 0.158, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'Lq7dNpoYRkmOcja');... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'VTkKaUmydfLJNrm');... + atdrift('D022HCQ', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH8', 0.06, -366.603155097304, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'UUID', 'ERDOHmUCxSNHr4v');... + atdrift('D03HC', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('Q10', 0.0844113331477278, 13.6568508102765, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.076, 'EApertures', [0.006 0.006], 'UUID', 'Be4xSLaL3Wo2882');... + atdrift('D041HCQ', 0.108, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'aeOqUUEBHR64sjs');... + atdrift('D022HCQ', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH9_COR', 0.06, -668.536791100884, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'vsaKtRci2RYyotb');... + atdrift('D03HC', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('Q11', 0.0789546761676337, -12.3862992113073, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.07, 'EApertures', [0.006 0.006], 'UUID', 'LwXrF9DtgXyNv4k');... + atdrift('D05HC', 0.00499988833315879, 'EApertures', [0.006 0.006]);... + atdrift('LBD1C', 0.0395472975018047, 'EApertures', [0.006 0.006]);... + atsbend('BD27', 0.0284984341976272, 0.00225714925227511, -1.18160211440423, 'EApertures', [0.008 0.008], 'UUID', 'p5jlwQ6vpXwIzxP');... + atsbend('BD17', 0.0959771205127194, 0.00913608259524057, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0205293144427562);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524057, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524057, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524057, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'ExitAngle', 0.0205293144427562);... + atsbend('BD27', 0.0284984341976272, 0.00225714925227511, -1.18160211440423, 'EApertures', [0.00766666666666667 0.00766666666666667]);... + atdrift('L03', 0.176061846245862, 'EApertures', [0.006 0.006]);... + atsextupole('SXD31', 0.09, -681.129428046866, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0075, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'nyy4XwCqG0iQzqW');... + atmarker('CROTCH_13_1', 'EApertures', [0.006 0.006]);... + atdrift('L04', 0.111275514615956, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF3_QCORROCT_100_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -440.259660850112], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'NslSFmZ9kPBipCg');... + atdrift('L084', 0.048820499745398, 'EApertures', [0.006 0.006]);... + atsbend('BQ4H7', 0.0577872115264688, -0.000403189428060739, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.000403189428060739, 'UUID', 'BF8pNahhv1EocYQ');... + atsbend('BQ4H7', 0.0577872115264688, -0.000403189428060739, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'ExitAngle', -0.000403189428060739);... + atdrift('L084', 0.048820499745398, 'EApertures', [0.006 0.006]);... + atsextupole('SXF31_HCOR', 0.12, 734.143510940683, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'ZEwL4bSg54KVajf');... + atdrift('L082', 0.0471064301693061, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444583, 'UUID', 'ms0v4CTDUc5z7hC');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444583);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'WfhB00gENCQ2XGo');... + atsextupole('SXD31_VCOR', 0.09, -681.129428046866, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'GESCtLQAgVlaPgP');... + atdrift('L071', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'olWoRPaECgEAZ7w');... + atmarker('GIRDEREND', 'EApertures', [0.006 0.006]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.008 0.008]);... + atmarker('GIRDERSTART', 'EApertures', [0.008 0.008]);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008], 'UUID', 'ML76XVX7jRCNvwW');... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702353, -1.86297299994296, 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0342430714728858);... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702353, -1.86297299994296, 'EApertures', [0.008 0.008], 'ExitAngle', 0.0342430714728858);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00758974358974359 0.00758974358974359]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00717948717948718 0.00717948717948718], 'UUID', 'MxCLewDof1Ejuxl');... + atdrift('L071', 0.048, 'EApertures', [0.00661538461538461 0.00661538461538461]);... + atsextupole('SXD3', 0.09, -753.118527609963, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'fc5A7NOU6qqWLOn');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_13_2', 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444583, 'UUID', 'YlgroRvmwkPg5w0');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444583);... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF3_QCORROCT_101_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -440.259660850112], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'yCjAj985yA3bkF4');... + atdrift('L081', 0.06, 'EApertures', [0.006 0.006]);... + atsextupole('SXF3_HCOR', 0.12, 675.00095481734, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SMK1L6jPpupdMPf');... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444583, 'UUID', 'VJbcWqpefpjNBmu');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444583);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'AhK2z645wciuxHN');... + atsextupole('SXD3_VCOR', 0.09, -753.118527609963, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'LpB98xLwHXHRlxD');... + atdrift('L071', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'X5tLyNwCX1w6PFh');... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00766666666666667 0.00766666666666667]);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008], 'UUID', 'g7iepB8tyuU4pkV');... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702353, -1.86297299994296, 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0342430714728858);... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702352, -1.86297299994296, 'EApertures', [0.008 0.008], 'ExitAngle', 0.0342430714728858);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008]);... + atmarker('GIRDEREND', 'EApertures', [0.00785 0.00785]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.0076 0.0076]);... + atmarker('GIRDERSTART', 'EApertures', [0.00735 0.00735]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00715 0.00715], 'UUID', 'OjAGpsax99WBgsn');... + atdrift('L071', 0.048, 'EApertures', [0.00665 0.00665]);... + atsextupole('SXD3', 0.09, -753.118527609963, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'CFjqYn8es9N2T7o');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_13_3', 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444582, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444582, 'UUID', 'j3J87Gr6FbGwpWh');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444582, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444582);... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF3_QCORROCT_102_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -440.259660850112], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'ZE4GEA0kdBONq4h');... + atdrift('L081', 0.06, 'EApertures', [0.006 0.006]);... + atsextupole('SXF33_HCOR', 0.12, 686.795497427942, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'GfZMsbNAdVY3LiS');... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsbend('BQ6HC7', 0.0689196396343699, -0.00144054604712974, 8.95984862959226, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00144054604712974, 'UUID', 'SUF8BakDHI5jpGF');... + atsbend('BQ6HC7', 0.0689196396343699, -0.00144054604712974, 8.95984862959226, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00144054604712974);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'dmdruSYIRfOKzhe');... + atsextupole('SXD33_VCOR', 0.09, -764.318658802759, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'Iby6tuoHsUcIZuC');... + atdrift('L071C', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'K5SO69paM5UUHih');... + atdrift('L073C', 0.0430773209057085, 'EApertures', [0.00714285714285714 0.00714285714285714]);... + atsbend('BD3HC7', 0.01, 0.000258818071001969, -1.37551837900507, 'EApertures', [0.008 0.00786363636363636], 'UUID', 'O4wNX3Usaidjghb');... + atsbend('BD4HC71', 0.03, 0.00188018240208164, -2.57765200910186, 'EApertures', [0.008 0.00769318181818182], 'EntranceAngle', 0.00982777557557598);... + atsbend('BD4HC7', 0.253621983633988, 0.0158951863469887, -2.57765200910186, 'EApertures', [0.008 0.00632954545454545]);... + atsbend('BD4HC71', 0.03, 0.00188018240208164, -2.57765200910186, 'EApertures', [0.008 0.005], 'ExitAngle', 0.00982777557557598);... + atsbend('BD5HC7', 0.0231155237960032, 0.00240516115877823, 0.0, 'EApertures', [0.008 0.005]);... + atsbend('BD6HC7', 0.0856857672699483, 0.0117810198825822, 0.0, 'EApertures', [0.008 0.00425]);... + atsbend('BD6HC7', 0.0856857672699483, 0.0117810198825822, 0.0, 'EApertures', [0.008 0.00457894736842105]);... + atsbend('BD5HC7', 0.0231155237960032, 0.00240516115877823, 0.0, 'EApertures', [0.008 0.005]);... + atsbend('BD4HC71', 0.03, 0.00188018240208164, -2.57765200910186, 'EApertures', [0.008 0.00518367346938775], 'EntranceAngle', 0.00982777557557598);... + atsbend('BD4HC7', 0.253621983633988, 0.0158951863469887, -2.57765200910186, 'EApertures', [0.008 0.00640816326530612]);... + atsbend('BD4HC71', 0.03, 0.00188018240208164, -2.57765200910186, 'EApertures', [0.008 0.00763265306122449], 'ExitAngle', 0.00982777557557598);... + atsbend('BD3HC7', 0.01, 0.000258818071001969, -1.37551837900507, 'EApertures', [0.008 0.00781632653061225]);... + atdrift('L073C', 0.0430773209057085, 'EApertures', [0.00793939393939394 0.00793939393939394]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00739393939393939 0.00739393939393939], 'UUID', 'HNvBNJcWNBkcZ5l');... + atdrift('L071C', 0.048, 'EApertures', [0.00678787878787879 0.00678787878787879]);... + atsextupole('SXD33', 0.09, -764.318658802759, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.007, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'xlIEVtMQU5HJHcR');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_13_4', 'EApertures', [0.006 0.006]);... + atsbend('BQ6HC7', 0.0689196396343699, -0.00144054604712974, 8.95984862959226, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00144054604712974, 'UUID', 'FfM358opdtPwHaB');... + atsbend('BQ6HC7', 0.0689196396343699, -0.00144054604712974, 8.95984862959226, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00144054604712974);... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsextupole('SXF33_HCOR', 0.12, 686.795497427942, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'co8lRNq7moMqOTz');... + atdrift('L081', 0.06, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF3_QCORROCT_103_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -440.259660850112], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'OmgygYUEmN5Yw8G');... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444582, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444582, 'UUID', 'DOQdon0ZATEu7Dm');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444582, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444582);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'bZT9L7aTqVF1zzL');... + atsextupole('SXD3_VCOR', 0.09, -753.118527609963, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'zKNylquD7Tmr5iq');... + atdrift('L071', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'l5TMCr31sHLvQdF');... + atmarker('GIRDEREND', 'EApertures', [0.006 0.006]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.008 0.008]);... + atmarker('GIRDERSTART', 'EApertures', [0.008 0.008]);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008], 'UUID', 'IwZQzN2ee0NJCvV');... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702352, -1.86297299994296, 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0342430714728858);... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702353, -1.86297299994296, 'EApertures', [0.008 0.008], 'ExitAngle', 0.0342430714728858);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00758974358974359 0.00758974358974359]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00717948717948718 0.00717948717948718], 'UUID', 'MymhJznUz8g7iZ5');... + atdrift('L071', 0.048, 'EApertures', [0.00661538461538461 0.00661538461538461]);... + atsextupole('SXD3', 0.09, -753.118527609963, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'lPE0AF8fQzCAPwH');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_13_5', 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444583, 'UUID', 'quszCPurIUOcdA0');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444583);... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsextupole('SXF3_HCOR', 0.12, 675.00095481734, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'z7AnodZWpuvjotv');... + atdrift('L081', 0.06, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF3_QCORROCT_104_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -440.259660850112], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'gvqmnn1rRZN0XbM');... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444583, 'UUID', 'yfYp6IkivatKE7Z');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444583);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'cfcDJHEZbqEj7hL');... + atsextupole('SXD3_VCOR', 0.09, -753.118527609963, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'VHWpEiqXjvKqhmE');... + atdrift('L071', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'hsIR1y8Th7EBSyM');... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.008 0.008]);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008], 'UUID', 'HQLZUxHDeP0v0xZ');... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702353, -1.86297299994296, 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0342430714728858);... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702353, -1.86297299994296, 'EApertures', [0.008 0.008], 'ExitAngle', 0.0342430714728858);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008]);... + atmarker('GIRDEREND', 'EApertures', [0.00784615384615385 0.00784615384615385]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00758974358974359 0.00758974358974359]);... + atmarker('GIRDERSTART', 'EApertures', [0.00733333333333333 0.00733333333333333]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00712820512820513 0.00712820512820513], 'UUID', 'YaSLGYZaWh3jiPy');... + atdrift('L071', 0.048, 'EApertures', [0.00661538461538461 0.00661538461538461]);... + atsextupole('SXD32', 0.09, -729.521731325636, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'kE45ZdNfKQ7m7ba');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444583, 'UUID', 'Fjwy0TueQRNujWQ');... + atmarker('CROTCH_13_6', 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444583);... + atdrift('L082', 0.0471064301693061, 'EApertures', [0.006 0.006]);... + atsextupole('SXF32_HCOR', 0.12, 782.043582880113, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'yd85yuEXw7RdsXU');... + atdrift('L084', 0.048820499745398, 'EApertures', [0.006 0.006]);... + atsbend('BQ4H7', 0.0577872115264688, -0.000403189428060739, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.000403189428060739, 'UUID', 'FzRsrx0fOaLrANG');... + atsbend('BQ4H7', 0.0577872115264688, -0.000403189428060739, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'ExitAngle', -0.000403189428060739);... + atdrift('L085', 0.100096014361354, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF3_QCORROCT_105_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -440.259660850112], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'GRqU7dLwyyTX7Ca');... + atdrift('L05', 0.06, 'EApertures', [0.006 0.006]);... + atsextupole('SXD32_VCOR', 0.09, -729.521731325636, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'fZtYIb6GoEgFncv');... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'xKF2hMLVCI41pK9');... + atdrift('L03', 0.176061846245862, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atsbend('BD27', 0.0284984341976272, 0.00225714925227511, -1.18160211440423, 'EApertures', [0.008 0.008], 'UUID', 'NHuU8pOjDnZlMVU');... + atsbend('BD17', 0.0959771205127194, 0.00913608259524057, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0205293144427562);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524057, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524057, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524057, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'ExitAngle', 0.0205293144427562);... + atsbend('BD27', 0.0284984341976272, 0.00225714925227511, -1.18160211440423, 'EApertures', [0.00755555555555556 0.00755555555555556]);... + atdrift('LBD1C', 0.0395472975018047, 'EApertures', [0.00644444444444444 0.00644444444444444]);... + atdrift('D05HC', 0.00499988833315879, 'EApertures', [0.006 0.006]);... + atquadrupole('Q11', 0.0789546761676337, -12.3862992113073, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.07, 'EApertures', [0.006 0.006], 'UUID', 'obUfSZ3c1Zey4lS');... + atdrift('D03HC', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH9_COR', 0.06, -668.536791100884, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'fSRKTfK5nkU7pAn');... + atdrift('D022HCQ', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'jn0TvGIXm3RoTen');... + atdrift('D041HCQ', 0.108, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_13_7', 'EApertures', [0.006 0.006]);... + atquadrupole('Q10', 0.0844113331477278, 13.6568508102765, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.076, 'EApertures', [0.006 0.006], 'UUID', 'pPmZx3ywO4HidYn');... + atdrift('D03HC', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH8', 0.06, -366.603155097304, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'UUID', 'bYG4Bn8u33v7JDV');... + atdrift('D022HCQ', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'FaBEohCl4bsqPMk');... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'JH5Mk95hhkB1bHA');... + atdrift('D06HCQ', 0.158, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atquadrupole('Q9', 0.106409911705093, 12.8349230947647, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.098, 'EApertures', [0.006 0.006], 'UUID', 'bqMIYCskvbdG9mE');... + atdrift('D032HC', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH7_COR', 0.06, 832.664084881681, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'ecOO9iqZZ2wfniF');... + atdrift('D022HC', 0.06, 'EApertures', [0.006 0.006]);... + atmultipole('OH7_QCORROCT_106_QT', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'MaxOrder', 3, 'UUID', 'LcJ8ki6N8Q3gqEe');... + atdrift('D031HC', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('Q8', 0.0786666675115942, -13.273182641893, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.07, 'EApertures', [0.006 0.006], 'UUID', 'm9zFxJfBDeA1jq6');... + atmarker('GIRDEREND', 'EApertures', [0.0064 0.0064]);... + atmarker('AN-C13END', 'EApertures', [0.0064 0.0064]);... + atmarker('SD14CSTART', 'EApertures', [0.0064 0.0064]);... + atmarker('VANNE_START', 'EApertures', [0.0064 0.0064]);... + atmarker('FCOR_14_1', 'UUID', 'j4XMUmOrkUFOcHe');... + atmonitor('BPM', 'EApertures', [0.0064 0.0064], 'UUID', 'j6NcgQ1qCzXmBlV');... + atdrift('SD1C_31', 0.322, 'Action', 'BPM', 'EApertures', [0.00854545454545455 0.00854545454545455]);... + atmarker('VANNE_END', 'EApertures', [0.01 0.01]);... + atdrift('SD1C_32', 0.0835458676300582, 'Action', 'BPM', 'EApertures', [0.01 0.01]);... + atmarker('ONDULEURMARK_START', 'EApertures', [0.042 0.0125]);... + atdrift('SD1C_33', 1.189, 'Action', 'BPM', 'EApertures', [0.0475 0.002 ]);... + atmarker('SD14CCENTER', 'EApertures', [0.0475 0.002 ]);... + atdrift('SD1C_34', 1.189, 'Action', 'BPM', 'EApertures', [0.0475 0.002 ]);... + atmarker('ONDULEURMARK_END', 'EApertures', [0.042 0.0125]);... + atdrift('SD1C_35', 0.0835458676300582, 'Action', 'BPM', 'EApertures', [0.01 0.01]);... + atmarker('VANNE_START', 'EApertures', [0.01 0.01]);... + atdrift('SD1C_36', 0.322, 'Action', 'BPM', 'EApertures', [0.00847619047619048 0.00847619047619048]);... + atmarker('FCOR_14_2', 'UUID', 'KCOgNwsCqWAnJ4q');... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'pFQGuI2mNMnSMeu');... + atmarker('VANNE_END', 'EApertures', [0.006 0.006]);... + atmarker('SD14CEND', 'EApertures', [0.006 0.006]);... + atmarker('AN-C14START', 'EApertures', [0.006 0.006]);... + atmarker('GIRDERSTART', 'EApertures', [0.006 0.006]);... + atquadrupole('Q8', 0.0786666675115942, -13.273182641893, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.07, 'EApertures', [0.006 0.006], 'UUID', 'UOGnlBYKa3jPVCd');... + atdrift('D031HC', 0.048, 'EApertures', [0.006 0.006]);... + atmultipole('OH7_QCORROCT_107_QT', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'MaxOrder', 3, 'UUID', 'ZUurJPhHrx2tsut');... + atdrift('D022HC', 0.06, 'EApertures', [0.006 0.006]);... + atsextupole('SH7_COR', 0.06, 832.664084881681, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'juWoqLPZWt6GI05');... + atdrift('D032HC', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('Q9', 0.106409911705093, 12.8349230947647, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.098, 'EApertures', [0.006 0.006], 'UUID', 'faCsS4y5WcKgXxF');... + atdrift('D06HCQ', 0.158, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'PBMfcean4xEavYn');... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'FdY19vMt5ITT0GN');... + atdrift('D022HCQ', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH8', 0.06, -366.603155097304, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'UUID', 'GqKdhasehUrby03');... + atdrift('D03HC', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('Q10', 0.0844113331477278, 13.6568508102765, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.076, 'EApertures', [0.006 0.006], 'UUID', 'kqJV9g5UKSrCmpi');... + atdrift('D041HCQ', 0.108, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'O8Lns6Dy6yZbQ6X');... + atdrift('D022HCQ', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH9_COR', 0.06, -668.536791100884, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'ooFIyWY4j2hPu5i');... + atdrift('D03HC', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('Q11', 0.0789546761676337, -12.3862992113073, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.07, 'EApertures', [0.006 0.006], 'UUID', 'x01LNl8rcmbH3fC');... + atdrift('D05HC', 0.00499988833315879, 'EApertures', [0.006 0.006]);... + atdrift('LBD1C', 0.0395472975018047, 'EApertures', [0.006 0.006]);... + atsbend('BD24', 0.0284984341976272, 0.00215787898333112, -1.18160211440423, 'EApertures', [0.00766666666666667 0.00766666666666667], 'UUID', 'u7XaFZzZMFdK2mk');... + atsbend('BD14', 0.0959771205127194, 0.00873427426315538, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0205293144427562);... + atsbend('BD14', 0.0959771205127194, 0.00873427426315538, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD14', 0.0959771205127194, 0.00873427426315538, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD14', 0.0959771205127194, 0.00873427426315538, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'ExitAngle', 0.0205293144427562);... + atsbend('BD24', 0.0284984341976272, 0.00215787898333112, -1.18160211440423, 'EApertures', [0.00786666666666667 0.00786666666666667]);... + atdrift('L03', 0.176061846245862, 'EApertures', [0.006 0.006]);... + atsextupole('SXD41', 0.09, -735.729130725313, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0075, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'oYwrIh66qlPbgUI');... + atdrift('L04', 0.111275514615956, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_14_1', 'EApertures', [0.006 0.006]);... + atmultipole('OCTF4_QCORROCT_108_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -183.939387091905], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'FZZME3CRQhJ5x7S');... + atdrift('L084', 0.048820499745398, 'EApertures', [0.006 0.006]);... + atsbend('BQ4H4', 0.0577872115264688, -0.000385457006104762, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.000385457006104762, 'UUID', 'RTZyN4szGa9hhuz');... + atsbend('BQ4H4', 0.0577872115264688, -0.000385457006104762, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'ExitAngle', -0.000385457006104762);... + atdrift('L084', 0.048820499745398, 'EApertures', [0.006 0.006]);... + atsextupole('SXF41_HCOR', 0.12, 846.26087738574, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'TM1gUa4dvKrfGXh');... + atdrift('L082', 0.0471064301693061, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H4', 0.0689196396343699, -0.00144531683192883, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00144531683192883, 'UUID', 'UtbUUoqzwkDdT5T');... + atsbend('BQ6H4', 0.0689196396343699, -0.00144531683192883, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00144531683192883);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'raG9pffBX3ZDAkA');... + atsextupole('SXD41_VCOR', 0.09, -735.729130725313, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'UPZwZ246zMHMKbh');... + atdrift('L071', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'wmgb4gfVXvR9CiJ');... + atmarker('GIRDEREND', 'EApertures', [0.006 0.006]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00666666666666667 0.00666666666666667]);... + atmarker('GIRDERSTART', 'EApertures', [0.008 0.008]);... + atsbend('BD4H4', 0.0393049032024916, 0.00234342379845867, -1.11997137375817, 'EApertures', [0.008 0.008], 'UUID', 'gPh5H41fJW9SlEj');... + atsbend('BD5H4', 0.398927492296932, 0.0303936245742024, -1.86297299994296, 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0342430714728858);... + atsbend('BD5H4', 0.398927492296932, 0.0303936245742024, -1.86297299994296, 'EApertures', [0.008 0.008], 'ExitAngle', 0.0342430714728858);... + atsbend('BD4H4', 0.0393049032024916, 0.00234342379845867, -1.11997137375817, 'EApertures', [0.008 0.008]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00775 0.00775]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.0073 0.0073], 'UUID', 'xo6LJ9Ea5JGZZvJ');... + atdrift('L071', 0.048, 'EApertures', [0.0068 0.0068]);... + atsextupole('SXD4', 0.09, -748.397964225485, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'BUL20FQzeyrHwcx');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_14_2', 'EApertures', [0.006 0.006]);... + atsbend('BQ6H4', 0.0689196396343699, -0.00144531683192883, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00144531683192883, 'UUID', 'j6U4NPohs42tAoj');... + atsbend('BQ6H4', 0.0689196396343699, -0.00144531683192883, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00144531683192883);... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsextupole('SXF4_HCOR', 0.12, 811.758492840009, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'PvzTf9OTGZ0B7KH');... + atdrift('L081', 0.06, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF4_QCORROCT_109_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -183.939387091905], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'BxWhjhyQ2h0xdcs');... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H4', 0.0689196396343699, -0.00144531683192883, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00144531683192883, 'UUID', 'eefnj2xqeOvbf2N');... + atsbend('BQ6H4', 0.0689196396343699, -0.00144531683192883, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00144531683192883);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'Z70pqHiUdL1XQ7q');... + atsextupole('SXD4_VCOR', 0.09, -748.397964225485, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'vldAs4EQNVsBY7i');... + atdrift('L071', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'tsvj5jnA6ODyFMf');... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.0068 0.0068]);... + atsbend('BD4H4', 0.0393049032024916, 0.00234342379845867, -1.11997137375817, 'EApertures', [0.008 0.008], 'UUID', 'jmnpbWYMmWVFTeJ');... + atsbend('BD5H4', 0.398927492296932, 0.0303936245742024, -1.86297299994296, 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0342430714728858);... + atsbend('BD5H4', 0.398927492296932, 0.0303936245742024, -1.86297299994296, 'EApertures', [0.008 0.008], 'ExitAngle', 0.0342430714728858);... + atsbend('BD4H4', 0.0393049032024916, 0.00234342379845867, -1.11997137375817, 'EApertures', [0.008 0.008]);... + atmarker('GIRDEREND', 'EApertures', [0.008 0.008]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00774358974358974 0.00774358974358974]);... + atmarker('GIRDERSTART', 'EApertures', [0.00748717948717949 0.00748717948717949]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00733333333333333 0.00733333333333333], 'UUID', 'wL5krLgp2kxkKIC');... + atdrift('L071', 0.048, 'EApertures', [0.00682051282051282 0.00682051282051282]);... + atsextupole('SXD42', 0.09, -652.433055715131, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'JyMMFWowtrLnE8R');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_14_3', 'EApertures', [0.006 0.006]);... + atsbend('BQ6H4', 0.0689196396343699, -0.00144531683192883, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00144531683192883, 'UUID', 'A4RON6ijHBbXyJf');... + atsbend('BQ6H4', 0.0689196396343699, -0.00144531683192883, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00144531683192883);... + atdrift('L082', 0.0471064301693061, 'EApertures', [0.006 0.006]);... + atsextupole('SXF42_HCOR', 0.12, 832.798385062542, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'mARm8jvW4HGoF2h');... + atdrift('L084', 0.048820499745398, 'EApertures', [0.006 0.006]);... + atsbend('BQ4H4', 0.0577872115264688, -0.000385457006104762, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.000385457006104762, 'UUID', 'kYBiCT8xFr2BPaG');... + atsbend('BQ4H4', 0.0577872115264688, -0.000385457006104762, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'ExitAngle', -0.000385457006104762);... + atdrift('L085', 0.100096014361354, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF4_QCORROCT_110_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -183.939387091905], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'HxkL1wp7JudXi5m');... + atdrift('L05', 0.06, 'EApertures', [0.008 0.008]);... + atsextupole('SXD42_VCOR', 0.09, -652.433055715131, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.0068 0.0068], 'KickAngle', [0. 0.], 'UUID', 'skVE5sdheod2Cra');... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'aLTTGPoKk6ITtbF');... + atdrift('L03', 0.176061846245862, 'Action', 'BPM', 'EApertures', [0.006 0.006]);... + atsbend('BD24', 0.0284984341976272, 0.00215787898333112, -1.18160211440423, 'EApertures', [0.008 0.008], 'UUID', 'mMlLj5lRmSro3sb');... + atsbend('BD14', 0.0959771205127194, 0.00873427426315538, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0205293144427562);... + atsbend('BD14', 0.0959771205127194, 0.00873427426315538, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD14', 0.0959771205127194, 0.00873427426315538, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD14', 0.0959771205127194, 0.00873427426315538, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'ExitAngle', 0.0205293144427562);... + atsbend('BD24', 0.0284984341976272, 0.00215787898333112, -1.18160211440423, 'EApertures', [0.00715789473684211 0.00715789473684211]);... + atdrift('LBD1M', 0.0395472975018047, 'EApertures', [0.00610526315789474 0.00610526315789474]);... + atdrift('D05HM', 0.0250000000000106, 'EApertures', [0.006 0.006]);... + atquadrupole('Q15', 0.0669665183225528, -13.0158117569202, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.058, 'EApertures', [0.006 0.006], 'UUID', 'xKj6eRPKxbqSp7F');... + atdrift('D03HM', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH12_COR', 0.06, -549.693929899786, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'iGyyDBtOJzC1d0E');... + atdrift('D022HMQ', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'jPcNrqZo2R3qVJO');... + atdrift('D040HMQ', 0.108, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_14_4', 'EApertures', [0.006 0.006]);... + atquadrupole('Q14', 0.0669654375650683, 13.020316581933, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.058, 'EApertures', [0.006 0.006], 'UUID', 'QTB7x1pocsX3aJG');... + atdrift('D03HM', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH11', 0.06, -342.377584906705, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'UUID', 'OpZivFOociTOGgS');... + atdrift('D022HM', 0.06, 'EApertures', [0.006 0.006]);... + atmultipole('OH11_QCORROCT_111', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.0068 0.0068], 'MaxOrder', 3, 'UUID', 'ZTLTvcGPnKCMnQA');... + atmonitor('BPM', 'EApertures', [0.008 0.008], 'UUID', 'fVbvTf7RGHawXIv');... + atdrift('D06HM', 0.13, 'Action', 'BPM', 'EApertures', [0.0076 0.0076]);... + atquadrupole('Q13', 0.105549024737856, 14.4734284467452, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.098, 'EApertures', [0.006 0.006], 'UUID', 'fUCu5CSEqFHJQ8t');... + atdrift('D032HM', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH10_COR', 0.06, 767.610099578133, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'xMBhVfJTovzLJOp');... + atdrift('D022HM', 0.06, 'EApertures', [0.006 0.006]);... + atmultipole('OH10_QCORROCT_112_QT', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'MaxOrder', 3, 'UUID', 'ewCD99RrkqWtw2B');... + atdrift('D031HM', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('Q12', 0.0785288819736742, -13.6759084023114, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.07, 'EApertures', [0.006 0.006], 'UUID', 'BWJezAoVd19KYKq');... + atmarker('GIRDEREND', 'EApertures', [0.006 0.006]);... + atmarker('AN-C14END', 'EApertures', [0.006 0.006]);... + atmarker('SD15MCSTART', 'EApertures', [0.006 0.006]);... + atmarker('VANNE_START', 'EApertures', [0.006 0.006]);... + atmarker('FCOR_15_1', 'UUID', 'IGsfPoUG387PHZc');... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'UI81zvjwEouBlit');... + atdrift('SD1M_13', 0.322, 'Action', 'BPM', 'EApertures', [0.006 0.006]);... + atmarker('VANNE_END', 'EApertures', [0.01 0.01]);... + atdrift('SD1M_14', 0.287381847814076, 'Action', 'BPM', 'RApertures', [-0.0045 0.004 -0.0035 0.0035]);... + atmarker('ONDULEURMARK_START', 'EApertures', [0.0045 0.0035]);... + atdrift('SD1M_15', 1.29, 'Action', 'BPM', 'EApertures', [0.0045 0.0035]);... + atmarker('SD15MCCENTER', 'EApertures', [0.0045 0.0035]);... + atdrift('SD1M_16', 1.29, 'Action', 'BPM', 'EApertures', [0.0045 0.0035]);... + atmarker('ONDULEURMARK_END', 'EApertures', [0.0045 0.0035]);... + atdrift('SD1M_17', 0.287381847814076, 'Action', 'BPM', 'EApertures', [0.00660294117647059 0.00598529411764706]);... + atmarker('VANNE_START', 'EApertures', [0.01 0.01]);... + atdrift('SD1M_18', 0.322, 'Action', 'BPM', 'EApertures', [0.00838095238095238 0.00838095238095238]);... + atmarker('FCOR_15_2', 'UUID', 'izVoiLoy7ytiFyi');... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'yXnw1lqTCrXN37Q');... + atmarker('VANNE_END', 'EApertures', [0.006 0.006]);... + atmarker('SD15MCEND', 'EApertures', [0.006 0.006]);... + atmarker('AN-C15START', 'EApertures', [0.006 0.006]);... + atmarker('GIRDERSTART', 'EApertures', [0.006 0.006]);... + atquadrupole('Q12', 0.0785288819736742, -13.6759084023114, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.07, 'EApertures', [0.006 0.006], 'UUID', 'n8OfauRnBcsQc65');... + atdrift('D031HM', 0.048, 'EApertures', [0.006 0.006]);... + atmultipole('OH10_QCORROCT_113_QT', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'MaxOrder', 3, 'UUID', 'AfpdsVIsA6Z3Cac');... + atdrift('D022HM', 0.06, 'EApertures', [0.006 0.006]);... + atsextupole('SH10_COR', 0.06, 767.610099578133, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'WKM3C8nKwLQsCnF');... + atdrift('D032HM', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('Q13', 0.105549024737856, 14.4734284467452, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.098, 'EApertures', [0.006 0.006], 'UUID', 'c1fngAxk9DEeGKB');... + atdrift('D06HM', 0.13, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.0064 0.0064], 'UUID', 'DE2aLtHDy4nNI7B');... + atmultipole('OH11_QCORROCT_114', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'MaxOrder', 3, 'UUID', 'XC9OTQmS4GqwBaN');... + atdrift('D022HM', 0.06, 'EApertures', [0.006 0.006]);... + atsextupole('SH11', 0.06, -342.377584906705, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'UUID', 'WJIiwmv4zP4JIC2');... + atdrift('D03HM', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('Q14', 0.0669654375650683, 13.020316581933, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.058, 'EApertures', [0.006 0.006], 'UUID', 'wV6gKIBDqn9QvmI');... + atdrift('D040HMQ', 0.108, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'wuk0G2WEjyRQHZy');... + atdrift('D022HMQ', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH12_COR', 0.06, -549.693929899786, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'FZSbWLznCfLlKxK');... + atdrift('D03HM', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('Q15', 0.0669665183225528, -13.0158117569202, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.058, 'EApertures', [0.006 0.006], 'UUID', 'KMCqg5DZ517zkqK');... + atdrift('D05HM', 0.0250000000000106, 'EApertures', [0.006 0.006]);... + atdrift('LBD1M', 0.0395472975018047, 'EApertures', [0.006 0.006]);... + atsbend('BD27', 0.0284984341976272, 0.00225714925227518, -1.18160211440423, 'EApertures', [0.008 0.008], 'UUID', 'to0A3OZBBaP9EC8');... + atsbend('BD17', 0.0959771205127194, 0.00913608259524086, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0205293144427562);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524086, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524086, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524086, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'ExitAngle', 0.0205293144427562);... + atsbend('BD27', 0.0284984341976272, 0.00225714925227518, -1.18160211440423, 'EApertures', [0.00766666666666667 0.00766666666666667]);... + atdrift('L03', 0.176061846245862, 'EApertures', [0.006 0.006]);... + atsextupole('SXD51', 0.09, -647.766469752565, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0075, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'hZrwRczSF85F2oe');... + atmarker('CROTCH_15_1', 'EApertures', [0.006 0.006]);... + atdrift('L04', 0.111275514615956, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF5_QCORROCT_115_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. 353.486738211295], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'hnXUV6myKbEC5Le');... + atdrift('L084', 0.048820499745398, 'EApertures', [0.006 0.006]);... + atsbend('BQ4H7', 0.0577872115264688, -0.000403189428060752, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.000403189428060752, 'UUID', 'FDkKVC9mRLvmRTe');... + atsbend('BQ4H7', 0.0577872115264688, -0.000403189428060752, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'ExitAngle', -0.000403189428060752);... + atdrift('L084', 0.048820499745398, 'EApertures', [0.006 0.006]);... + atsextupole('SXF51_HCOR', 0.12, 840.822202380127, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'lo23mq0X610fQmP');... + atdrift('L082', 0.0471064301693061, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444587, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444587, 'UUID', 'Akcxaubk3JejS8c');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444587, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444587);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'WGcy7jsNGHcDb8n');... + atsextupole('SXD51_VCOR', 0.09, -647.766469752565, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'Guw2t67tOfDFg6M');... + atdrift('L071', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'JV3GUvxRYQSgt5k');... + atmarker('GIRDEREND', 'EApertures', [0.006 0.006]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.0076 0.0076]);... + atmarker('GIRDERSTART', 'EApertures', [0.008 0.008]);... + atsbend('BD4H7', 0.0393049032024916, 0.0024512298026507, -1.11997137375817, 'EApertures', [0.008 0.008], 'UUID', 'Nzo0uPUg0lqCLnN');... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702363, -1.86297299994296, 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0342430714728858);... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702363, -1.86297299994296, 'EApertures', [0.008 0.008], 'ExitAngle', 0.0342430714728858);... + atsbend('BD4H7', 0.0393049032024916, 0.0024512298026507, -1.11997137375817, 'EApertures', [0.008 0.008]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00758974358974359 0.00758974358974359]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00717948717948718 0.00717948717948718], 'UUID', 'gt2lS78SREGuiKO');... + atdrift('L071', 0.048, 'EApertures', [0.00666666666666667 0.00666666666666667]);... + atsextupole('SXD5', 0.09, -673.701263957563, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'kqB4hRSHexsVjRB');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_15_2', 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444587, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444587, 'UUID', 'pCwvbnw9pW9ABD4');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444587, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444587);... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF5_QCORROCT_116_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. 353.486738211295], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'k0nZhgGG6r7K9iY');... + atdrift('L081', 0.06, 'EApertures', [0.006 0.006]);... + atsextupole('SXF5_HCOR', 0.12, 715.553794609745, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'dvJdbEl7NlnLI3n');... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444587, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444587, 'UUID', 'R3veD55cBQCKQNX');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444587, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444587);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'osrddddesB47ijf');... + atsextupole('SXD5_VCOR', 0.09, -673.701263957563, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'zE1gZZGVJMXG7hQ');... + atdrift('L071', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'B0mv77qxcqMxwr3');... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.008 0.008]);... + atsbend('BD4H7', 0.0393049032024916, 0.0024512298026507, -1.11997137375817, 'EApertures', [0.008 0.008], 'UUID', 'r8ke1Cz6MksYLWK');... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702363, -1.86297299994296, 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0342430714728858);... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702352, -1.86297299994296, 'EApertures', [0.008 0.008], 'ExitAngle', 0.0342430714728858);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008]);... + atmarker('GIRDEREND', 'EApertures', [0.00784615384615385 0.00784615384615385]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00758974358974359 0.00758974358974359]);... + atmarker('GIRDERSTART', 'EApertures', [0.00733333333333333 0.00733333333333333]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00712820512820513 0.00712820512820513], 'UUID', 'MadG3hacwjhgNCc');... + atdrift('L071', 0.048, 'EApertures', [0.00661538461538461 0.00661538461538461]);... + atsextupole('SXD5', 0.09, -673.701263957563, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'rkPRZFPV9MEJwaJ');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_15_3', 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444582, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444582, 'UUID', 'ZnadMrmKn0uyogU');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444582, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444582);... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF5_QCORROCT_117_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. 353.486738211295], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'pyVI2pju0uZiwX5');... + atdrift('L081', 0.06, 'EApertures', [0.006 0.006]);... + atsextupole('SXF53_HCOR', 0.12, 711.229968977946, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'CWIWe4zbvWpNk6e');... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsbend('BQ6HC7', 0.0689196396343699, -0.00144054604712974, 8.95984862959226, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00144054604712974, 'UUID', 'UlOwXoIcVAkMY19');... + atsbend('BQ6HC7', 0.0689196396343699, -0.00144054604712974, 8.95984862959226, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00144054604712974);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'yIsINGqu1E8M4TW');... + atsextupole('SXD53_VCOR', 0.09, -625.758067765939, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'kb1VYeuTsSUdoVd');... + atdrift('L071C', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'oqCdkbalqxuzstw');... + atdrift('L073C', 0.0430773209057085, 'EApertures', [0.00725 0.00725]);... + atsbend('BD3HC7', 0.01, 0.000258818071001969, -1.37551837900507, 'EApertures', [0.008 0.00789655172413793], 'UUID', 'coINBTmhYAREVYi');... + atsbend('BD4HC71', 0.03, 0.00188018240208164, -2.57765200910186, 'EApertures', [0.008 0.00768965517241379], 'EntranceAngle', 0.00982777557557598);... + atsbend('BD4HC7', 0.253621983633988, 0.0158951863469887, -2.57765200910186, 'EApertures', [0.008 0.00631034482758621]);... + atsbend('BD4HC71', 0.03, 0.00188018240208164, -2.57765200910186, 'EApertures', [0.008 0.005], 'ExitAngle', 0.00982777557557598);... + atsbend('BD5HC7', 0.0231155237960032, 0.00240516115877823, 0.0, 'EApertures', [0.008 0.005]);... + atsbend('BD6HC7', 0.0856857672699483, 0.0117810198825822, 0.0, 'EApertures', [0.008 0.00425]);... + atsbend('BD6HC7', 0.0856857672699483, 0.0117810198825822, 0.0, 'EApertures', [0.008 0.0046]);... + atsbend('BD5HC7', 0.0231155237960032, 0.00240516115877823, 0.0, 'EApertures', [0.008 0.005]);... + atsbend('BD4HC71', 0.03, 0.00188018240208164, -2.57765200910186, 'EApertures', [0.008 0.00518367346938775], 'EntranceAngle', 0.00982777557557598);... + atsbend('BD4HC7', 0.253621983633988, 0.0158951863469887, -2.57765200910186, 'EApertures', [0.008 0.00640816326530612]);... + atsbend('BD4HC71', 0.03, 0.00188018240208164, -2.57765200910186, 'EApertures', [0.008 0.00763265306122449], 'ExitAngle', 0.00982777557557598);... + atsbend('BD3HC7', 0.01, 0.000258818071001969, -1.37551837900507, 'EApertures', [0.008 0.00781632653061225]);... + atdrift('L073C', 0.0430773209057085, 'EApertures', [0.008 0.008]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00739393939393939 0.00739393939393939], 'UUID', 'OvuSOnkxzJOTQEK');... + atdrift('L071C', 0.048, 'EApertures', [0.00678787878787879 0.00678787878787879]);... + atsextupole('SXD53', 0.09, -625.758067765939, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.007, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'mFSssdJto5f8TAq');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_15_4', 'EApertures', [0.006 0.006]);... + atsbend('BQ6HC7', 0.0689196396343699, -0.00144054604712974, 8.95984862959226, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00144054604712974, 'UUID', 'smBn2RVzgfHk7bQ');... + atsbend('BQ6HC7', 0.0689196396343699, -0.00144054604712974, 8.95984862959226, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00144054604712974);... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsextupole('SXF53_HCOR', 0.12, 711.229968977946, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'AwRPYrmfZUuzTL8');... + atdrift('L081', 0.06, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF5_QCORROCT_118_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. 353.486738211295], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'LBhdKZH5frDv4Vq');... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444582, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444582, 'UUID', 'cJPMi9VX10KERr7');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444582, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444582);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'w8HygZQX1LRgX0b');... + atsextupole('SXD5_VCOR', 0.09, -673.701263957563, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'ICmgRKynpF00edg');... + atdrift('L071', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'syE18okB1o9Fg8n');... + atmarker('GIRDEREND', 'EApertures', [0.006 0.006]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00766666666666667 0.00766666666666667]);... + atmarker('GIRDERSTART', 'EApertures', [0.008 0.008]);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008], 'UUID', 'yeeVKvLjZDog2zv');... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702352, -1.86297299994296, 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0342430714728858);... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702363, -1.86297299994296, 'EApertures', [0.008 0.008], 'ExitAngle', 0.0342430714728858);... + atsbend('BD4H7', 0.0393049032024916, 0.0024512298026507, -1.11997137375817, 'EApertures', [0.008 0.008]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00758974358974359 0.00758974358974359]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00717948717948718 0.00717948717948718], 'UUID', 'gPopd25zYxoWGsv');... + atdrift('L071', 0.048, 'EApertures', [0.00666666666666667 0.00666666666666667]);... + atsextupole('SXD5', 0.09, -673.701263957563, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'z4e5JEEDt638QYe');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_15_5', 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444587, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444587, 'UUID', 'NIW8DdACfkIJ0FK');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444587, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444587);... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsextupole('SXF5_HCOR', 0.12, 715.553794609745, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'caMRtbOsUqFo5ya');... + atdrift('L081', 0.06, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF5_QCORROCT_119_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. 353.486738211295], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'OxMDw8leZO2B0T6');... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444587, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444587, 'UUID', 'D8aQvN4xmAAzt9S');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444587, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444587);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'VJl19oIkpLLbfFy');... + atsextupole('SXD5_VCOR', 0.09, -673.701263957563, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'xvgVGXBGwUtkkjk');... + atdrift('L071', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'iPDFl502rzZ5dEn');... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.008 0.008]);... + atsbend('BD4H1', 0.0393049032024916, 0.00245617208465066, -1.11997137375817, 'EApertures', [0.008 0.008], 'UUID', 'qdRH7zznjTRPdfW');... + atsbend('BD5H1', 0.398927492296932, 0.0318559418401438, -1.86297299994296, 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0342430714728858);... + atsbend('BD5H1', 0.398927492296932, 0.0318559418401438, -1.86297299994296, 'EApertures', [0.008 0.008], 'ExitAngle', 0.0342430714728858);... + atsbend('BD4H1', 0.0393049032024916, 0.00245617208465066, -1.11997137375817, 'EApertures', [0.008 0.008]);... + atmarker('GIRDEREND', 'EApertures', [0.00784615384615385 0.00784615384615385]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00758974358974359 0.00758974358974359]);... + atmarker('GIRDERSTART', 'EApertures', [0.00733333333333333 0.00733333333333333]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00717948717948718 0.00717948717948718], 'UUID', 'ko3nuDeF3hxwk7U');... + atdrift('L071', 0.048, 'EApertures', [0.00661538461538461 0.00661538461538461]);... + atsextupole('SXD52', 0.09, -734.183150728341, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'WBjneDVk7VLGOxs');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H1', 0.0689196396343699, -0.00140236294993324, 8.79568061387988, 'Action', 'FocTune', 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444587, 'UUID', 'YiWqimBdj5VOeuH');... + atmarker('CROTCH_15_6', 'EApertures', [0.006 0.006]);... + atsbend('BQ6H1', 0.0689196396343699, -0.00140236294993324, 8.79568061387988, 'Action', 'FocTune', 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444587);... + atdrift('L082', 0.0471064301693061, 'EApertures', [0.006 0.006]);... + atsextupole('SXF52_HCOR', 0.12, 788.330339912278, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'fNVcnQDQ9fmdh4Z');... + atdrift('L084', 0.048820499745398, 'EApertures', [0.006 0.006]);... + atsbend('BQ4H7', 0.0577872115264688, -0.000403189428060752, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.000403189428060752, 'UUID', 'JZzF8giOzQbfJHp');... + atsbend('BQ4H7', 0.0577872115264688, -0.000403189428060752, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'ExitAngle', -0.000403189428060752);... + atdrift('L085', 0.100096014361354, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF5_QCORROCT_120_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. 353.486738211295], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'rvv3pmVklde1C3o');... + atdrift('L05', 0.06, 'EApertures', [0.006 0.006]);... + atsextupole('SXD52_VCOR', 0.09, -734.183150728341, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'emOpzfn4mA1Rwpf');... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'mFiBG1ueRKxCQiE');... + atdrift('L03', 0.176061846245862, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atsbend('BD21', 0.0284984341976272, 0.00221003821940246, -1.18160211440423, 'EApertures', [0.008 0.008], 'UUID', 'FlopfMnmqHCI41E');... + atsbend('BD11', 0.0959771205127194, 0.00894539503346868, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0205293144427562);... + atsbend('BD11', 0.0959771205127194, 0.00894539503346868, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD11', 0.0959771205127194, 0.00894539503346868, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD11', 0.0959771205127194, 0.00894539503346868, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'ExitAngle', 0.0205293144427562);... + atsbend('BD21', 0.0284984341976272, 0.00221003821940246, -1.18160211440423, 'EApertures', [0.0085 0.0085]);... + atdrift('LBD1T', 0.0395472975018047, 'EApertures', [0.0085 0.0085]);... + atdrift('D021HTQ', 0.0529998883331588, 'EApertures', [0.0085 0.0085]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.0085 0.0085], 'UUID', 'ekhtLacIEsvuyv4');... + atdrift('D022HTQ', 0.048, 'EApertures', [0.0085 0.0085]);... + atsextupole('SH15_VCOR', 0.075, -151.263624499999, 'Action', 'SxtHarm', 'BoDiameter', 0.021, 'BoGap', 0.01, 'BoLength', 0.075, 'EApertures', [0.0085 0.0085], 'KickAngle', [0. 0.], 'UUID', 'pFgRRCygsw5MRdp');... + atdrift('D05HT', 0.22, 'EApertures', [0.0085 0.0085]);... + atquadrupole('Q21', 0.118594861317721, -8.24976089349076, 'BoDiameter', 0.023, 'BoGap', 0.01, 'BoLength', 0.106, 'EApertures', [0.0085 0.0085], 'UUID', 'SrEjB0m3hHgCzjX');... + atmonitor('BPM', 'EApertures', [0.0085 0.0085], 'UUID', 'oAlmbsh6UeWHnvt');... + atdrift('D041HT', 0.18, 'Action', 'BPM', 'EApertures', [0.0085 0.0085]);... + atmarker('CROTCH_15_7', 'EApertures', [0.0085 0.0085]);... + atquadrupole('Q20', 0.122440853589187, 8.42972886822337, 'BoDiameter', 0.023, 'BoGap', 0.01, 'BoLength', 0.11, 'EApertures', [0.0085 0.0085], 'UUID', 'ta4aPfjB5KTSq2w');... + atdrift('D03HT', 0.048, 'EApertures', [0.0085 0.0085]);... + atsextupole('SH14_HCOR', 0.075, -335.348316276613, 'Action', 'SxtHarm', 'BoDiameter', 0.021, 'BoGap', 0.01, 'BoLength', 0.075, 'EApertures', [0.0085 0.0085], 'KickAngle', [0. 0.], 'UUID', 'NX6jPh7y7Ys8j6C');... + atdrift('D022HT', 0.06, 'EApertures', [0.0085 0.0085]);... + atmultipole('OH141_QCORROCT_121', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.0085 0.0085], 'MaxOrder', 3, 'UUID', 'w80CXeRmZCkyswV');... + atdrift('D03HT', 0.048, 'EApertures', [0.0085 0.0085]);... + atquadrupole('Q19', 0.118733643867383, 8.01541064610388, 'BoDiameter', 0.023, 'BoGap', 0.01, 'BoLength', 0.106, 'EApertures', [0.0085 0.0085], 'UUID', 'B7ouMPyvpxUVRYo');... + atdrift('D03HT', 0.048, 'EApertures', [0.0085 0.0085]);... + atsextupole('SH13_COR', 0.075, 476.313437796132, 'Action', 'SxtHarm', 'BoDiameter', 0.021, 'BoGap', 0.01, 'BoLength', 0.075, 'EApertures', [0.0085 0.0085], 'KickAngle', [0. 0.], 'UUID', 'I0g6IhZaxrz9YMj');... + atdrift('D022HT', 0.06, 'EApertures', [0.008 0.008]);... + atmultipole('OH131_QCORROCT_122', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.008 0.008], 'MaxOrder', 3, 'UUID', 'vwvgxHQoQN4mfnx');... + atdrift('D03HT', 0.048, 'EApertures', [0.008 0.008]);... + atquadrupole('Q18', 0.0932053766613153, -7.2301598888015, 'BoDiameter', 0.023, 'BoGap', 0.01, 'BoLength', 0.08, 'EApertures', [0.008 0.008], 'UUID', 'MYln1ZdMvE34BRh');... + atmarker('GIRDEREND', 'EApertures', [0.008 0.008]);... + atmarker('AN-C15END', 'EApertures', [0.008 0.008]);... + atmarker('SD16LSTART', 'EApertures', [0.008 0.008]);... + atmarker('VANNE_START', 'EApertures', [0.008 0.008]);... + atmarker('FCOR_16_1', 'UUID', 'MARp2WBx8NKjkTI');... + atmonitor('BPM', 'EApertures', [0.008 0.008], 'UUID', 'eGM6LKQb7Ho99pT');... + atdrift('SD12_1', 0.272, 'Action', 'BPM', 'EApertures', [0.0107619047619048 0.0107619047619048]);... + atmarker('VANNE_END', 'EApertures', [0.012 0.012]);... + atmarker('ANATOMIX_START', 'EApertures', [0.012 0.012]);... + atdrift('SD12_2', 0.396170347288528, 'Action', 'BPM', 'EApertures', [0.0408461538461539 0.0124807692307692]);... + atmarker('ONDULEURMARK_START', 'EApertures', [0.0475 0.0025]);... + atdrift('SD12_3', 1.0, 'Action', 'BPM', 'EApertures', [0.0475 0.0025]);... + atmarker('SD16LACENTER', 'EApertures', [0.0475 0.0025]);... + atdrift('SD12_4', 1.0, 'Action', 'BPM', 'EApertures', [0.0475 0.0025]);... + atmarker('ONDULEURMARK_END', 'EApertures', [0.0475 0.0025]);... + atdrift('SD12_5', 0.396170347288528, 'Action', 'BPM', 'EApertures', [0.027 0.01225]);... + atmarker('ANATOMIX_END', 'EApertures', [0.012 0.012]);... + atmarker('VANNE_START', 'EApertures', [0.012 0.012]);... + atdrift('SD12_6', 0.272, 'Action', 'BPM', 'EApertures', [0.01 0.01]);... + atmarker('FCOR_16_2', 'UUID', 'AsGpSogeBO7DgMs');... + atmonitor('BPM', 'EApertures', [0.01 0.01], 'UUID', 'XjhKKWFemAh12Jl');... + atmarker('VANNE_END', 'EApertures', [0.01 0.01]);... + atmarker('GIRDERSTART', 'EApertures', [0.008 0.008]);... + atsbend('CHIC2', 0.2, -0.0126637486005222, 0.0, 'EApertures', [0.01 0.01], 'EntranceAngle', -0.006, 'ExitAngle', -0.006, 'UUID', 'xOsX13sGZ3gBFdZ');... + atdrift('SD23T', 0.35011537936444, 'EApertures', [0.0085 0.0085]);... + atquadrupole('Q17', 0.0929982217794612, -7.83896314384854, 'BoDiameter', 0.023, 'BoGap', 0.01, 'BoLength', 0.08, 'EApertures', [0.0085 0.0085], 'UUID', 'VQCY0GmOixWYj2X');... + atdrift('D032HT', 0.048, 'EApertures', [0.0085 0.0085]);... + atmultipole('OH16_QCORROCT_123', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.021, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.0085 0.0085], 'MaxOrder', 3, 'UUID', 'tVw5dp7STtN1NiD');... + atdrift('D022HT', 0.06, 'EApertures', [0.0085 0.0085]);... + atsextupole('SH16_COR', 0.075, 0.0, 'Action', 'SxtHarm', 'BoDiameter', 0.021, 'BoGap', 0.01, 'BoLength', 0.075, 'EApertures', [0.0085 0.0085], 'KickAngle', [0. 0.], 'UUID', 'CDYCXJFcewStKOT');... + atdrift('D031HT', 0.048, 'EApertures', [0.0085 0.0085]);... + atquadrupole('Q16', 0.132220666360538, 8.59624027008373, 'BoDiameter', 0.023, 'BoGap', 0.01, 'BoLength', 0.12, 'EApertures', [0.0085 0.0085], 'UUID', 'HoHLN3GIoqvBalH');... + atdrift('D031HT', 0.048, 'EApertures', [0.0085 0.0085]);... + atsextupole('SH16_COR', 0.075, 0.0, 'Action', 'SxtHarm', 'BoDiameter', 0.021, 'BoGap', 0.01, 'BoLength', 0.075, 'EApertures', [0.0085 0.0085], 'KickAngle', [0. 0.], 'UUID', 'br60wNMReCRi1dj');... + atdrift('D022HT', 0.06, 'EApertures', [0.0085 0.0085]);... + atmultipole('OH16_QCORROCT_124', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.021, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.0085 0.0085], 'MaxOrder', 3, 'UUID', 'SV55kcq60G6AhCw');... + atdrift('D032HT', 0.048, 'EApertures', [0.0085 0.0085]);... + atquadrupole('Q17', 0.0929982217794612, -7.83896314384854, 'BoDiameter', 0.023, 'BoGap', 0.01, 'BoLength', 0.08, 'EApertures', [0.0085 0.0085], 'UUID', 'Azi2eHkFNMNEX2a');... + atdrift('SD23T', 0.35011537936444, 'EApertures', [0.00850340136054422 0.00850340136054422]);... + atsbend('CHIC3', 0.2, 0.0191637486005153, 0.0, 'EApertures', [0.00956462585034014 0.00956462585034014], 'EntranceAngle', 0.00925, 'ExitAngle', 0.00925, 'UUID', 'Brvnxi99i7GCP2t');... + atmarker('GIRDEREND', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.00994557823129252 0.00994557823129252], 'UUID', 'Pv85rZLYETartan');... + atmarker('VANNE_START', 'EApertures', [0.00994557823129252 0.00994557823129252]);... + atmarker('FCOR_16_3', 'UUID', 'EKOLyPpVmIRKvj6');... + atdrift('SD34_1', 0.272, 'Action', 'BPM', 'EApertures', [0.012 0.012]);... + atmarker('VANNE_END', 'EApertures', [0.012 0.012]);... + atmarker('NANOSCOPIUM_START', 'EApertures', [0.012 0.012]);... + atdrift('SD34_2', 0.396170347288528, 'Action', 'BPM', 'EApertures', [0.0205714285714286 0.0121428571428571]);... + atmarker('ONDULEURMARK_START', 'EApertures', [0.0475 0.0025]);... + atdrift('SD34_3', 1.0, 'Action', 'BPM', 'EApertures', [0.0475 0.0025]);... + atmarker('SD16LBCENTER', 'EApertures', [0.0475 0.0025]);... + atdrift('SD34_4', 1.0, 'Action', 'BPM', 'EApertures', [0.0475 0.0025]);... + atmarker('ONDULEURMARK_END', 'EApertures', [0.0475 0.0025]);... + atdrift('SD34_5', 0.396170347288528, 'Action', 'BPM', 'RApertures', [-0.0288157894736842 0.0176052631578947 -0.0101630434782609 0.0101630434782609]);... + atmarker('NANOSCOPIUM_END', 'EApertures', [0.012 0.012]);... + atmarker('VANNE_START', 'EApertures', [0.012 0.012]);... + atdrift('SD34_6', 0.272, 'Action', 'BPM', 'RApertures', [-0.01 0.0095 -0.01 0.01 ]);... + atmarker('FCOR_16_4', 'UUID', 'X68nFpi4HOPcnjF');... + atmarker('VANNE_END', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.008 0.008], 'UUID', 'd8UL65ixfJhBVMw');... + atmarker('SD16LEND', 'EApertures', [0.008 0.008]);... + atmarker('AN-C16START', 'EApertures', [0.008 0.008]);... + atmarker('GIRDERSTART', 'EApertures', [0.008 0.008]);... + atquadrupole('Q18', 0.0932053766613153, -7.2301598888015, 'BoDiameter', 0.023, 'BoGap', 0.01, 'BoLength', 0.08, 'EApertures', [0.008 0.008], 'UUID', 'eRn981gY5oCoohz');... + atdrift('D03HT', 0.048, 'EApertures', [0.008 0.008]);... + atmultipole('OH132_QCORROCT_125', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.008 0.008], 'MaxOrder', 3, 'UUID', 'ZZfHR5Dat9oAZCu');... + atdrift('D022HT', 0.06, 'EApertures', [0.008 0.008]);... + atsextupole('SH13_COR', 0.075, 476.313437796132, 'Action', 'SxtHarm', 'BoDiameter', 0.021, 'BoGap', 0.01, 'BoLength', 0.075, 'EApertures', [0.0085 0.0085], 'KickAngle', [0. 0.], 'UUID', 'q8aRllIZ5rsx6q5');... + atdrift('D03HT', 0.048, 'EApertures', [0.0085 0.0085]);... + atquadrupole('Q19', 0.118733643867383, 8.01541064610388, 'BoDiameter', 0.023, 'BoGap', 0.01, 'BoLength', 0.106, 'EApertures', [0.0085 0.0085], 'UUID', 'gdPBxgdap0WiRuw');... + atdrift('D03HT', 0.048, 'EApertures', [0.0085 0.0085]);... + atmultipole('OH142_QCORROCT_126', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.0085 0.0085], 'MaxOrder', 3, 'UUID', 'xVm0X7Nof3reUPP');... + atdrift('D022HT', 0.06, 'EApertures', [0.0085 0.0085]);... + atsextupole('SH14_HCOR', 0.075, -335.348316276613, 'Action', 'SxtHarm', 'BoDiameter', 0.021, 'BoGap', 0.01, 'BoLength', 0.075, 'EApertures', [0.0085 0.0085], 'KickAngle', [0. 0.], 'UUID', 'nlSCV2RCK67BqFB');... + atdrift('D03HT', 0.048, 'EApertures', [0.0085 0.0085]);... + atquadrupole('Q20', 0.122440853589187, 8.42972886822337, 'BoDiameter', 0.023, 'BoGap', 0.01, 'BoLength', 0.11, 'EApertures', [0.0085 0.0085], 'UUID', 'N7BKJRN5crqvxBZ');... + atdrift('D041HT', 0.18, 'Action', 'BPM', 'EApertures', [0.0085 0.0085]);... + atmonitor('BPM', 'EApertures', [0.0085 0.0085], 'UUID', 'VHtvh3zH8bS4Mke');... + atquadrupole('Q21', 0.118594861317721, -8.24976089349076, 'BoDiameter', 0.023, 'BoGap', 0.01, 'BoLength', 0.106, 'EApertures', [0.0085 0.0085], 'UUID', 'GzJv6SWFbv05IDh');... + atdrift('D05HTC', 0.06, 'EApertures', [0.0085 0.0085]);... + atsbend('CHIC4', 0.1, -0.0118434756989878, 0.0, 'EApertures', [0.0085 0.0085], 'EntranceAngle', -0.0029, 'ExitAngle', -0.0029, 'UUID', 'I3srlbxQtoyEmwP');... + atdrift('D022HT', 0.06, 'EApertures', [0.0085 0.0085]);... + atsextupole('SH15_VCOR', 0.075, -151.263624499999, 'Action', 'SxtHarm', 'BoDiameter', 0.021, 'BoGap', 0.01, 'BoLength', 0.075, 'EApertures', [0.0085 0.0085], 'KickAngle', [0. 0.], 'UUID', 'G1NE7XpqAmZS3tJ');... + atdrift('D022HTQ', 0.048, 'EApertures', [0.0085 0.0085]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.0085 0.0085], 'UUID', 'NC87YAIqeX1lltb');... + atdrift('D021HTQ', 0.0529998883331588, 'EApertures', [0.0085 0.0085]);... + atdrift('LBD1T', 0.0395472975018047, 'EApertures', [0.0085 0.0085]);... + atsbend('BD22', 0.0284984341976272, 0.00259580023151625, -1.18160211440423, 'EApertures', [0.008 0.008], 'UUID', 'CM2PRs9jqUdRxbS');... + atsbend('BD12', 0.0959771205127194, 0.0105068130926535, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0205293144427562);... + atsbend('BD12', 0.0959771205127194, 0.0105068130926535, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD12', 0.0959771205127194, 0.0105068130926535, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD12', 0.0959771205127194, 0.0105068130926535, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'ExitAngle', 0.0205293144427562);... + atsbend('BD22', 0.0284984341976272, 0.00259580023151625, -1.18160211440423, 'EApertures', [0.00766666666666667 0.00766666666666667]);... + atdrift('L03', 0.176061846245862, 'EApertures', [0.006 0.006]);... + atsextupole('SXD52', 0.09, -734.183150728341, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0075, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'vGzK8cOk2GRJuZG');... + atmarker('CROTCH_16_1', 'EApertures', [0.006 0.006]);... + atdrift('L04', 0.111275514615956, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF5_QCORROCT_127_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. 353.486738211295], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'Ku23BwhZuVoseEw');... + atdrift('L084', 0.048820499745398, 'EApertures', [0.006 0.006]);... + atsbend('BQ4H7', 0.0577872115264688, -0.000403189428060752, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.000403189428060752, 'UUID', 'EhbmUOlPoyhEDGV');... + atsbend('BQ4H7', 0.0577872115264688, -0.000403189428060752, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'ExitAngle', -0.000403189428060752);... + atdrift('L084', 0.048820499745398, 'EApertures', [0.006 0.006]);... + atsextupole('SXF52_HCOR', 0.12, 788.330339912278, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'A086ykLLbQQT6L2');... + atdrift('L082', 0.0471064301693061, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444587, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444587, 'UUID', 'TJ602uDtvgvt9CX');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444587, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444587);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'PuM8kVufdAXux9A');... + atsextupole('SXD52_VCOR', 0.09, -734.183150728341, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'p7RXCIIj0evaLfo');... + atdrift('L071', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'VEMQIPMZbCt7YGm');... + atmarker('GIRDEREND', 'EApertures', [0.006 0.006]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.008 0.008]);... + atmarker('GIRDERSTART', 'EApertures', [0.008 0.008]);... + atsbend('BD4H2', 0.0393049032024916, 0.00243989287061025, -1.11997137375817, 'EApertures', [0.008 0.008], 'UUID', 'S8O9UutAfpOsT7s');... + atsbend('BD5H2', 0.398927492296932, 0.0316448044776945, -1.86297299994296, 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0342430714728858);... + atsbend('BD5H2', 0.398927492296932, 0.0316448044776945, -1.86297299994296, 'EApertures', [0.008 0.008], 'ExitAngle', 0.0342430714728858);... + atsbend('BD4H2', 0.0393049032024916, 0.00243989287061025, -1.11997137375817, 'EApertures', [0.008 0.008]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00758974358974359 0.00758974358974359]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00717948717948718 0.00717948717948718], 'UUID', 'zRQeur40Lo9LwcZ');... + atdrift('L071', 0.048, 'EApertures', [0.00661538461538461 0.00661538461538461]);... + atsextupole('SXD5', 0.09, -673.701263957563, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'ekPI3q1gQTLvgJj');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_16_2', 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444587, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444587, 'UUID', 'GOBVMz9uhQmokRN');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444587, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444587);... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF5_QCORROCT_128_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. 353.486738211295], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'dV3RBRhlozjjgAO');... + atdrift('L081', 0.06, 'EApertures', [0.006 0.006]);... + atsextupole('SXF5_HCOR', 0.12, 715.553794609745, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'X4ojpnPSq3ZrJTf');... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444587, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444587, 'UUID', 'wAcGJEtcptX4vKX');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444587, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444587);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'pZAYCW3qvYJPQOT');... + atsextupole('SXD5_VCOR', 0.09, -673.701263957563, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'KIskSDNye84LxdX');... + atdrift('L071', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'qrhcIxFmArp8vw8');... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00766666666666667 0.00766666666666667]);... + atsbend('BD4H7', 0.0393049032024916, 0.0024512298026507, -1.11997137375817, 'EApertures', [0.008 0.008], 'UUID', 'QFYKYplxeXpZ4jW');... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702363, -1.86297299994296, 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0342430714728858);... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702352, -1.86297299994296, 'EApertures', [0.008 0.008], 'ExitAngle', 0.0342430714728858);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008]);... + atmarker('GIRDEREND', 'EApertures', [0.00785 0.00785]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.0076 0.0076]);... + atmarker('GIRDERSTART', 'EApertures', [0.00735 0.00735]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00715 0.00715], 'UUID', 'ilRWTfqIQoJED7Z');... + atdrift('L071', 0.048, 'EApertures', [0.00665 0.00665]);... + atsextupole('SXD5', 0.09, -673.701263957563, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'bqOnx7ODgdBCsmo');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_16_3', 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444582, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444582, 'UUID', 'qCEsDwrprcCOVPQ');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444582, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444582);... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF5_QCORROCT_129_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. 353.486738211295], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'px1H2bHgu3GFSqr');... + atdrift('L081', 0.06, 'EApertures', [0.006 0.006]);... + atsextupole('SXF53_HCOR', 0.12, 711.229968977946, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'jfZNdNoaWSgOJzh');... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsbend('BQ6HC7', 0.0689196396343699, -0.00144054604712974, 8.95984862959226, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00144054604712974, 'UUID', 'A5i2SN6AS5qtizP');... + atsbend('BQ6HC7', 0.0689196396343699, -0.00144054604712974, 8.95984862959226, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00144054604712974);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'o27LiOfkthSVjRs');... + atsextupole('SXD53_VCOR', 0.09, -625.758067765939, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'Z636VaGpckqDoP6');... + atdrift('L071C', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'y032fCS7V5ZZroM');... + atdrift('L073C', 0.0430773209057085, 'EApertures', [0.00714285714285714 0.00714285714285714]);... + atsbend('BD3HC7', 0.01, 0.000258818071001969, -1.37551837900507, 'EApertures', [0.008 0.00786363636363636], 'UUID', 'QvyZLsYTYZE3hVG');... + atsbend('BD4HC71', 0.03, 0.00188018240208164, -2.57765200910186, 'EApertures', [0.008 0.00769318181818182], 'EntranceAngle', 0.00982777557557598);... + atsbend('BD4HC7', 0.253621983633988, 0.0158951863469887, -2.57765200910186, 'EApertures', [0.008 0.00632954545454545]);... + atsbend('BD4HC71', 0.03, 0.00188018240208164, -2.57765200910186, 'EApertures', [0.008 0.005], 'ExitAngle', 0.00982777557557598);... + atsbend('BD5HC7', 0.0231155237960032, 0.00240516115877823, 0.0, 'EApertures', [0.008 0.005]);... + atsbend('BD6HC7', 0.0856857672699483, 0.0117810198825822, 0.0, 'EApertures', [0.008 0.00425]);... + atsbend('BD6HC7', 0.0856857672699483, 0.0117810198825822, 0.0, 'EApertures', [0.008 0.00457894736842105]);... + atsbend('BD5HC7', 0.0231155237960032, 0.00240516115877823, 0.0, 'EApertures', [0.008 0.005]);... + atsbend('BD4HC71', 0.03, 0.00188018240208164, -2.57765200910186, 'EApertures', [0.008 0.00518367346938775], 'EntranceAngle', 0.00982777557557598);... + atsbend('BD4HC7', 0.253621983633988, 0.0158951863469887, -2.57765200910186, 'EApertures', [0.008 0.00640816326530612]);... + atsbend('BD4HC71', 0.03, 0.00188018240208164, -2.57765200910186, 'EApertures', [0.008 0.00763265306122449], 'ExitAngle', 0.00982777557557598);... + atsbend('BD3HC7', 0.01, 0.000258818071001969, -1.37551837900507, 'EApertures', [0.008 0.00781632653061225]);... + atdrift('L073C', 0.0430773209057085, 'EApertures', [0.00793939393939394 0.00793939393939394]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00739393939393939 0.00739393939393939], 'UUID', 'bFhZaOOmmYVwphu');... + atdrift('L071C', 0.048, 'EApertures', [0.00678787878787879 0.00678787878787879]);... + atsextupole('SXD53', 0.09, -625.758067765939, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.007, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'B0FN5qrW0z5o00w');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_16_4', 'EApertures', [0.006 0.006]);... + atsbend('BQ6HC7', 0.0689196396343699, -0.00144054604712974, 8.95984862959226, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00144054604712974, 'UUID', 'zhKD68Ov5TN6X7K');... + atsbend('BQ6HC7', 0.0689196396343699, -0.00144054604712974, 8.95984862959226, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00144054604712974);... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsextupole('SXF53_HCOR', 0.12, 711.229968977946, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'qIjRVrSbfKRVmIK');... + atdrift('L081', 0.06, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF5_QCORROCT_130_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. 353.486738211295], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'CbhhOsbSLkbCiUu');... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444582, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444582, 'UUID', 'wBffWaZjLQsWKNY');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444582, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444582);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'jFX6k7Cn0SeqNZi');... + atsextupole('SXD5_VCOR', 0.09, -673.701263957563, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'zHYyRcduJ0kZlxq');... + atdrift('L071', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'N4SjloPj2YtCsuR');... + atmarker('GIRDEREND', 'EApertures', [0.006 0.006]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.008 0.008]);... + atmarker('GIRDERSTART', 'EApertures', [0.008 0.008]);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008], 'UUID', 'fsmTHZCkZaD1qYY');... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702352, -1.86297299994296, 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0342430714728858);... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702363, -1.86297299994296, 'EApertures', [0.008 0.008], 'ExitAngle', 0.0342430714728858);... + atsbend('BD4H7', 0.0393049032024916, 0.0024512298026507, -1.11997137375817, 'EApertures', [0.008 0.008]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00758974358974359 0.00758974358974359]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00717948717948718 0.00717948717948718], 'UUID', 'LVDVCuG3QzBpE9i');... + atdrift('L071', 0.048, 'EApertures', [0.00661538461538461 0.00661538461538461]);... + atsextupole('SXD5', 0.09, -673.701263957563, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'y0oNu9QbVL49Csd');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_16_5', 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444587, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444587, 'UUID', 'eSYx8vTP4TMaXBX');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444587, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444587);... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsextupole('SXF5_HCOR', 0.12, 715.553794609745, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'yJ5xnt3QcTwl3ZX');... + atdrift('L081', 0.06, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF5_QCORROCT_131_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. 353.486738211295], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'z1IaLOMkdqZPACy');... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444587, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444587, 'UUID', 'rUbISSWlcYvkEMd');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444587, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444587);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'xfVQbKFv7EKjZpH');... + atsextupole('SXD5_VCOR', 0.09, -673.701263957563, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'hVV0I97EeKfzAMz');... + atdrift('L071', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'DuLcafiLzh8uwV7');... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.008 0.008]);... + atsbend('BD4H7', 0.0393049032024916, 0.0024512298026507, -1.11997137375817, 'EApertures', [0.008 0.008], 'UUID', 'HWd1zCsEJznVwCP');... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702363, -1.86297299994296, 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0342430714728858);... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702363, -1.86297299994296, 'EApertures', [0.008 0.008], 'ExitAngle', 0.0342430714728858);... + atsbend('BD4H7', 0.0393049032024916, 0.0024512298026507, -1.11997137375817, 'EApertures', [0.008 0.008]);... + atmarker('GIRDEREND', 'EApertures', [0.00784615384615385 0.00784615384615385]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00758974358974359 0.00758974358974359]);... + atmarker('GIRDERSTART', 'EApertures', [0.00733333333333333 0.00733333333333333]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00712820512820513 0.00712820512820513], 'UUID', 'KWdsOPw38EyhxFx');... + atdrift('L071', 0.048, 'EApertures', [0.00661538461538461 0.00661538461538461]);... + atsextupole('SXD51', 0.09, -647.766469752565, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'i0y4K1pg3OUt0gM');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444587, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444587, 'UUID', 'NgMo9ZjDDS7hZkN');... + atmarker('CROTCH_16_6', 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444587, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444587);... + atdrift('L082', 0.0471064301693061, 'EApertures', [0.006 0.006]);... + atsextupole('SXF51_HCOR', 0.12, 840.822202380127, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'YhI2LpoOPW2GEYy');... + atdrift('L084', 0.048820499745398, 'EApertures', [0.006 0.006]);... + atsbend('BQ4H7', 0.0577872115264688, -0.000403189428060752, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.000403189428060752, 'UUID', 'Pc2E4fsMoo1DL7y');... + atsbend('BQ4H7', 0.0577872115264688, -0.000403189428060752, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'ExitAngle', -0.000403189428060752);... + atdrift('L085', 0.100096014361354, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF5_QCORROCT_132_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. 353.486738211295], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'jjtfOPNLAU06mVd');... + atdrift('L05', 0.06, 'EApertures', [0.006 0.006]);... + atsextupole('SXD51_VCOR', 0.09, -647.766469752565, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'JbUiagivs77V0bj');... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'Vu1jXdwVgoQ5jUQ');... + atdrift('L03', 0.176061846245862, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atsbend('BD27', 0.0284984341976272, 0.00225714925227518, -1.18160211440423, 'EApertures', [0.008 0.008], 'UUID', 'Kh2OT31f4t89Wcn');... + atsbend('BD17', 0.0959771205127194, 0.00913608259524086, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0205293144427562);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524086, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524086, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524086, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'ExitAngle', 0.0205293144427562);... + atsbend('BD27', 0.0284984341976272, 0.00225714925227518, -1.18160211440423, 'EApertures', [0.00755555555555556 0.00755555555555556]);... + atdrift('LBD1M', 0.0395472975018047, 'EApertures', [0.00644444444444444 0.00644444444444444]);... + atdrift('D05HM', 0.0250000000000106, 'EApertures', [0.006 0.006]);... + atquadrupole('Q15', 0.0669665183225528, -13.0158117569202, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.058, 'EApertures', [0.006 0.006], 'UUID', 'Hz741xEEty29NBK');... + atdrift('D03HM', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH12_COR', 0.06, -549.693929899786, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'KOk66UeKhWqDhIR');... + atdrift('D022HMQ', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'eUsQEGeU8yvgyuV');... + atdrift('D040HMQ', 0.108, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_16_7', 'EApertures', [0.006 0.006]);... + atquadrupole('Q14', 0.0669654375650683, 13.020316581933, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.058, 'EApertures', [0.006 0.006], 'UUID', 'wDqSL3o4LBjc4TZ');... + atdrift('D03HM', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH11', 0.06, -342.377584906705, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'UUID', 'UYV0gsuv8NnjwNU');... + atdrift('D022HM', 0.06, 'EApertures', [0.006 0.006]);... + atmultipole('OH11_QCORROCT_133', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'MaxOrder', 3, 'UUID', 'eViSO6pxLkNNsg0');... + atmonitor('BPM', 'EApertures', [0.008 0.008], 'UUID', 'ztL40iZhgNc7zQ9');... + atdrift('D06HM', 0.13, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atquadrupole('Q13', 0.105549024737856, 14.4734284467452, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.098, 'EApertures', [0.006 0.006], 'UUID', 'WGiLK493ihRqsXh');... + atdrift('D032HM', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH10_COR', 0.06, 767.610099578133, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'UNq74adoAZaUIVE');... + atdrift('D022HM', 0.06, 'EApertures', [0.006 0.006]);... + atmultipole('OH10_QCORROCT_134_QT', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'MaxOrder', 3, 'UUID', 'myORYXyys6ALHr9');... + atdrift('D031HM', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('Q12', 0.0785288819736742, -13.6759084023114, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.07, 'EApertures', [0.006 0.006], 'UUID', 'dnngwM9K0OK97nO');... + atmarker('GIRDEREND', 'EApertures', [0.0076 0.0076]);... + atmarker('AN-C16END', 'EApertures', [0.0076 0.0076]);... + atmarker('SD17MCSTART', 'EApertures', [0.0076 0.0076]);... + atmarker('VANNE_START', 'EApertures', [0.0076 0.0076]);... + atmarker('FCOR_17_1', 'UUID', 'aQdbFdDLbn0Z1vB');... + atmonitor('BPM', 'EApertures', [0.0076 0.0076], 'UUID', 'lWEeZ6FjZUAiRfe');... + atdrift('SD1M_19', 0.322, 'Action', 'BPM', 'EApertures', [0.006 0.006]);... + atmarker('VANNE_END', 'EApertures', [0.01 0.01]);... + atdrift('SD1M_20', 0.287381847814076, 'Action', 'BPM', 'RApertures', [-0.0045 0.004 -0.0035 0.0035]);... + atmarker('ONDULEURMARK_START', 'EApertures', [0.0045 0.0035]);... + atdrift('SD1M_21', 1.29, 'Action', 'BPM', 'EApertures', [0.0045 0.0035]);... + atmarker('SD17MCCENTER', 'EApertures', [0.0045 0.0035]);... + atdrift('SD1M_22', 1.29, 'Action', 'BPM', 'EApertures', [0.0045 0.0035]);... + atmarker('ONDULEURMARK_END', 'EApertures', [0.0045 0.0035]);... + atdrift('SD1M_23', 0.287381847814076, 'Action', 'BPM', 'EApertures', [0.00644117647058823 0.00579411764705882]);... + atmarker('VANNE_START', 'EApertures', [0.01 0.01]);... + atdrift('SD1M_24', 0.322, 'Action', 'BPM', 'EApertures', [0.00836363636363636 0.00836363636363636]);... + atmarker('FCOR_17_2', 'UUID', 'lfFkYX13vkhOn5C');... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'cxhu22O4rqlQdeM');... + atmarker('VANNE_END', 'EApertures', [0.006 0.006]);... + atmarker('SD17MCEND', 'EApertures', [0.006 0.006]);... + atmarker('AN-C17START', 'EApertures', [0.006 0.006]);... + atmarker('GIRDERSTART', 'EApertures', [0.006 0.006]);... + atquadrupole('Q12', 0.0785288819736742, -13.6759084023114, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.07, 'EApertures', [0.006 0.006], 'UUID', 'voA9qQ8wiO7m26D');... + atdrift('D031HM', 0.048, 'EApertures', [0.006 0.006]);... + atmultipole('OH10_QCORROCT_135_QT', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'MaxOrder', 3, 'UUID', 'I4fl1EakbfIXCFh');... + atdrift('D022HM', 0.06, 'EApertures', [0.006 0.006]);... + atsextupole('SH10_COR', 0.06, 767.610099578133, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SSnyQ4aGX38s3iu');... + atdrift('D032HM', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('Q13', 0.105549024737856, 14.4734284467452, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.098, 'EApertures', [0.006 0.006], 'UUID', 'Ypo7fpuvXjXNgmw');... + atdrift('D06HM', 0.13, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.0072 0.0072], 'UUID', 'eDrtsaD1wmDsgAW');... + atmultipole('OH11_QCORROCT_136', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'MaxOrder', 3, 'UUID', 'UGjl7fhokr0WvEr');... + atdrift('D022HM', 0.06, 'EApertures', [0.006 0.006]);... + atsextupole('SH11', 0.06, -342.377584906705, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'UUID', 'yn3E9y1VcwcSHLs');... + atdrift('D03HM', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('Q14', 0.0669654375650683, 13.020316581933, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.058, 'EApertures', [0.006 0.006], 'UUID', 'VAi1RJ1u6EEmQFW');... + atdrift('D040HMQ', 0.108, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'FeX9hyEqgF5llhY');... + atdrift('D022HMQ', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH12_COR', 0.06, -549.693929899786, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'xdqzEfyKHYpyF8R');... + atdrift('D03HM', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('Q15', 0.0669665183225528, -13.0158117569202, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.058, 'EApertures', [0.006 0.006], 'UUID', 'iM5jmziTEDUR1eT');... + atdrift('D05HM', 0.0250000000000106, 'EApertures', [0.006 0.006]);... + atdrift('LBD1M', 0.0395472975018047, 'EApertures', [0.006 0.006]);... + atsbend('BD24', 0.0284984341976272, 0.00215787898333112, -1.18160211440423, 'EApertures', [0.008 0.008], 'UUID', 'fQM3KDvqNb4dJHs');... + atsbend('BD14', 0.0959771205127194, 0.00873427426315538, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0205293144427562);... + atsbend('BD14', 0.0959771205127194, 0.00873427426315538, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD14', 0.0959771205127194, 0.00873427426315538, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD14', 0.0959771205127194, 0.00873427426315538, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'ExitAngle', 0.0205293144427562);... + atsbend('BD24', 0.0284984341976272, 0.00215787898333112, -1.18160211440423, 'EApertures', [0.00786666666666667 0.00786666666666667]);... + atdrift('L03', 0.176061846245862, 'EApertures', [0.006 0.006]);... + atsextupole('SXD42', 0.09, -652.433055715131, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0075, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'Pt4f5frF8dOV1da');... + atdrift('L04', 0.111275514615956, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_17_1', 'EApertures', [0.006 0.006]);... + atmultipole('OCTF4_QCORROCT_137_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -183.939387091905], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'RWqlH29a8OmCn7s');... + atdrift('L084', 0.048820499745398, 'EApertures', [0.006 0.006]);... + atsbend('BQ4H4', 0.0577872115264688, -0.000385457006104762, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.000385457006104762, 'UUID', 'TuKpbbrz1qjYf4a');... + atsbend('BQ4H4', 0.0577872115264688, -0.000385457006104762, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'ExitAngle', -0.000385457006104762);... + atdrift('L084', 0.048820499745398, 'EApertures', [0.006 0.006]);... + atsextupole('SXF42_HCOR', 0.12, 832.798385062542, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'pmwTvcb9ZSXU0gR');... + atdrift('L082', 0.0471064301693061, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H4', 0.0689196396343699, -0.00144531683192883, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00144531683192883, 'UUID', 'H1UZwAJ0EINVvWp');... + atsbend('BQ6H4', 0.0689196396343699, -0.00144531683192883, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00144531683192883);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'vs3ZdJznNAkCZAa');... + atsextupole('SXD42_VCOR', 0.09, -652.433055715131, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'TUwgeZU4gvgHtSZ');... + atdrift('L071', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'v40iswKoDxyUM6l');... + atmarker('GIRDEREND', 'EApertures', [0.006 0.006]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.0068 0.0068]);... + atmarker('GIRDERSTART', 'EApertures', [0.008 0.008]);... + atsbend('BD4H4', 0.0393049032024916, 0.00234342379845867, -1.11997137375817, 'EApertures', [0.008 0.008], 'UUID', 'AfuQionHTobfYWO');... + atsbend('BD5H4', 0.398927492296932, 0.0303936245742024, -1.86297299994296, 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0342430714728858);... + atsbend('BD5H4', 0.398927492296932, 0.0303936245742024, -1.86297299994296, 'EApertures', [0.008 0.008], 'ExitAngle', 0.0342430714728858);... + atsbend('BD4H4', 0.0393049032024916, 0.00234342379845867, -1.11997137375817, 'EApertures', [0.008 0.008]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00774358974358974 0.00774358974358974]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00728205128205128 0.00728205128205128], 'UUID', 'lzTEfb3VWk4jsAr');... + atdrift('L071', 0.048, 'EApertures', [0.00676923076923077 0.00676923076923077]);... + atsextupole('SXD4', 0.09, -748.397964225485, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'Yo0iQBzn3DIm4ei');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_17_2', 'EApertures', [0.006 0.006]);... + atsbend('BQ6H4', 0.0689196396343699, -0.00144531683192883, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00144531683192883, 'UUID', 'CmnqwKilyvSa8HX');... + atsbend('BQ6H4', 0.0689196396343699, -0.00144531683192883, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00144531683192883);... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF4_QCORROCT_138_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -183.939387091905], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'Q40DUlfmSoXszSJ');... + atdrift('L081', 0.06, 'EApertures', [0.006 0.006]);... + atsextupole('SXF4_HCOR', 0.12, 811.758492840009, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'YfD5zypzOb0N1lG');... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H4', 0.0689196396343699, -0.00144531683192883, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00144531683192883, 'UUID', 'q5khZn3IpmN5Dzx');... + atsbend('BQ6H4', 0.0689196396343699, -0.00144531683192883, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00144531683192883);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'CsWQ231UK32E9bF');... + atsextupole('SXD4_VCOR', 0.09, -748.397964225485, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'IpBGnelhShKmhnr');... + atdrift('L071', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'ec78mqFMxSLSLTf');... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00666666666666667 0.00666666666666667]);... + atsbend('BD4H4', 0.0393049032024916, 0.00234342379845867, -1.11997137375817, 'EApertures', [0.008 0.008], 'UUID', 'PtuHfucnfmvFKlf');... + atsbend('BD5H4', 0.398927492296932, 0.0303936245742024, -1.86297299994296, 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0342430714728858);... + atsbend('BD5H4', 0.398927492296932, 0.0303936245742024, -1.86297299994296, 'EApertures', [0.008 0.008], 'ExitAngle', 0.0342430714728858);... + atsbend('BD4H4', 0.0393049032024916, 0.00234342379845867, -1.11997137375817, 'EApertures', [0.008 0.008]);... + atmarker('GIRDEREND', 'EApertures', [0.008 0.008]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00775 0.00775]);... + atmarker('GIRDERSTART', 'EApertures', [0.00745 0.00745]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.0073 0.0073], 'UUID', 'TkvsXfhLJIFfABM');... + atdrift('L071', 0.048, 'EApertures', [0.0068 0.0068]);... + atsextupole('SXD41', 0.09, -735.729130725313, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'pTJJvHpQHuxPIxp');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_17_3', 'EApertures', [0.006 0.006]);... + atsbend('BQ6H4', 0.0689196396343699, -0.00144531683192883, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00144531683192883, 'UUID', 'IVZIfPzRP8mJgiL');... + atsbend('BQ6H4', 0.0689196396343699, -0.00144531683192883, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00144531683192883);... + atdrift('L082', 0.0471064301693061, 'EApertures', [0.006 0.006]);... + atsextupole('SXF41_HCOR', 0.12, 846.26087738574, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'TZ8usiDczydemub');... + atdrift('L084', 0.048820499745398, 'EApertures', [0.006 0.006]);... + atsbend('BQ4H4', 0.0577872115264688, -0.000385457006104762, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.000385457006104762, 'UUID', 'Vseu6pAIhl7EiZK');... + atsbend('BQ4H4', 0.0577872115264688, -0.000385457006104762, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'ExitAngle', -0.000385457006104762);... + atdrift('L085', 0.100096014361354, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF4_QCORROCT_139_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -183.939387091905], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'kT0OfewNU5cvjhK');... + atdrift('L05', 0.06, 'EApertures', [0.008 0.008]);... + atsextupole('SXD41_VCOR', 0.09, -735.729130725313, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.00666666666666667 0.00666666666666667], 'KickAngle', [0. 0.], 'UUID', 'KB64140GgWlwLNW');... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'pPZBmtoZoCQV210');... + atdrift('L03', 0.176061846245862, 'Action', 'BPM', 'EApertures', [0.006 0.006]);... + atsbend('BD24', 0.0284984341976272, 0.00215787898333112, -1.18160211440423, 'EApertures', [0.008 0.008], 'UUID', 'e3McR9VZOKLioBx');... + atsbend('BD14', 0.0959771205127194, 0.00873427426315538, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0205293144427562);... + atsbend('BD14', 0.0959771205127194, 0.00873427426315538, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD14', 0.0959771205127194, 0.00873427426315538, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD14', 0.0959771205127194, 0.00873427426315538, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'ExitAngle', 0.0205293144427562);... + atsbend('BD24', 0.0284984341976272, 0.00215787898333112, -1.18160211440423, 'EApertures', [0.00711111111111111 0.00711111111111111]);... + atdrift('LBD1C', 0.0395472975018047, 'EApertures', [0.00611111111111111 0.00611111111111111]);... + atdrift('D05HC', 0.00499988833315879, 'EApertures', [0.006 0.006]);... + atquadrupole('Q11', 0.0789546761676337, -12.3862992113073, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.07, 'EApertures', [0.006 0.006], 'UUID', 'Yu8smQ8xQuYYp4R');... + atdrift('D03HC', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH9_COR', 0.06, -668.536791100884, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'emaMkGTmuGv6rL2');... + atdrift('D022HCQ', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'LV3MuajMtYXPYgS');... + atdrift('D041HCQ', 0.108, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_17_4', 'EApertures', [0.006 0.006]);... + atquadrupole('Q10', 0.0844113331477278, 13.6568508102765, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.076, 'EApertures', [0.006 0.006], 'UUID', 'N9Pv2M9B73U0yhO');... + atdrift('D03HC', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH8', 0.06, -366.603155097304, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'UUID', 'WFrDKwTeiPXXBon');... + atdrift('D022HCQ', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'vgYGC0CROj3pH9K');... + atmonitor('BPM', 'EApertures', [0.00633333333333333 0.00633333333333333], 'UUID', 'SFkVgLEATUnN6QF');... + atdrift('D06HCQ', 0.158, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atquadrupole('Q9', 0.106409911705093, 12.8349230947647, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.098, 'EApertures', [0.006 0.006], 'UUID', 'bqcdyAFZHabj3ot');... + atdrift('D032HC', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH7_COR', 0.06, 832.664084881681, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'pA1ucYqoawf59s1');... + atdrift('D022HC', 0.06, 'EApertures', [0.006 0.006]);... + atmultipole('OH7_QCORROCT_140_QT', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'MaxOrder', 3, 'UUID', 'oGYDCsPEhrjS0d1');... + atdrift('D031HC', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('Q8', 0.0786666675115942, -13.273182641893, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.07, 'EApertures', [0.006 0.006], 'UUID', 'BLQvMEgYHfsU4Fo');... + atmarker('GIRDEREND', 'EApertures', [0.00733333333333333 0.00733333333333333]);... + atmarker('AN-C17END', 'EApertures', [0.00733333333333333 0.00733333333333333]);... + atmarker('SD18CSTART', 'EApertures', [0.00733333333333333 0.00733333333333333]);... + atmarker('VANNE_START', 'EApertures', [0.00733333333333333 0.00733333333333333]);... + atmarker('FCOR_18_1', 'UUID', 'SONxjHpiQcoK7PC');... + atmonitor('BPM', 'EApertures', [0.00733333333333333 0.00733333333333333], 'UUID', 'BwhET6izmX1TJNR');... + atdrift('SD1C_37', 0.322, 'Action', 'BPM', 'EApertures', [0.00847619047619048 0.00847619047619048]);... + atmarker('VANNE_END', 'EApertures', [0.01 0.01]);... + atdrift('SD1C_38', 0.0835458676300582, 'Action', 'BPM', 'EApertures', [0.01 0.01]);... + atmarker('ONDULEURMARK_START', 'EApertures', [0.042 0.0125]);... + atdrift('SD1C_39', 1.189, 'Action', 'BPM', 'EApertures', [0.0475 0.002 ]);... + atmarker('SD18CCENTER', 'EApertures', [0.0475 0.002 ]);... + atdrift('SD1C_40', 1.189, 'Action', 'BPM', 'EApertures', [0.0475 0.002 ]);... + atmarker('ONDULEURMARK_END', 'EApertures', [0.042 0.0125]);... + atdrift('SD1C_41', 0.0835458676300582, 'Action', 'BPM', 'EApertures', [0.01 0.01]);... + atmarker('VANNE_START', 'EApertures', [0.01 0.01]);... + atdrift('SD1C_42', 0.322, 'Action', 'BPM', 'EApertures', [0.00847619047619048 0.00847619047619048]);... + atmarker('FCOR_18_2', 'UUID', 'qbQdLCOdYOXssQL');... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'nKmvUMGD8cBizs6');... + atmarker('VANNE_END', 'EApertures', [0.006 0.006]);... + atmarker('SD18CEND', 'EApertures', [0.006 0.006]);... + atmarker('AN-C18START', 'EApertures', [0.006 0.006]);... + atmarker('GIRDERSTART', 'EApertures', [0.006 0.006]);... + atquadrupole('Q8', 0.0786666675115942, -13.273182641893, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.07, 'EApertures', [0.006 0.006], 'UUID', 'XrmpRCUXlvEq9kG');... + atdrift('D031HC', 0.048, 'EApertures', [0.006 0.006]);... + atmultipole('OH7_QCORROCT_141_QT', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'MaxOrder', 3, 'UUID', 'odNAB4WIaMh0bfk');... + atdrift('D022HC', 0.06, 'EApertures', [0.006 0.006]);... + atsextupole('SH7_COR', 0.06, 832.664084881681, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'ZT4oLCYt1Zd9kX6');... + atdrift('D032HC', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('Q9', 0.106409911705093, 12.8349230947647, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.098, 'EApertures', [0.006 0.006], 'UUID', 'UmKffUsqEkKBzgo');... + atdrift('D06HCQ', 0.158, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'RxnVqwMn70CYNuM');... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'zTMvAYBa61OATdL');... + atdrift('D022HCQ', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH8', 0.06, -366.603155097304, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'UUID', 'GVdbApJdPoWOxCY');... + atdrift('D03HC', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('Q10', 0.0844113331477278, 13.6568508102765, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.076, 'EApertures', [0.006 0.006], 'UUID', 'dpyCmy5IDFwEFHX');... + atdrift('D041HCQ', 0.108, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'yoJGY8iufxIjfuV');... + atdrift('D022HCQ', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH9_COR', 0.06, -668.536791100884, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'l1lZb6es7hykeJb');... + atdrift('D03HC', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('Q11', 0.0789546761676337, -12.3862992113073, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.07, 'EApertures', [0.006 0.006], 'UUID', 'fEmk2B9P7yt4UwV');... + atdrift('D05HC', 0.00499988833315879, 'EApertures', [0.006 0.006]);... + atdrift('LBD1C', 0.0395472975018047, 'EApertures', [0.006 0.006]);... + atsbend('BD27', 0.0284984341976272, 0.00225714925227511, -1.18160211440423, 'EApertures', [0.008 0.008], 'UUID', 'pUDV1TsPMPRQdpg');... + atsbend('BD17', 0.0959771205127194, 0.00913608259524057, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0205293144427562);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524057, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524057, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524057, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'ExitAngle', 0.0205293144427562);... + atsbend('BD27', 0.0284984341976272, 0.00225714925227511, -1.18160211440423, 'EApertures', [0.00766666666666667 0.00766666666666667]);... + atdrift('L03', 0.176061846245862, 'EApertures', [0.006 0.006]);... + atsextupole('SXD32', 0.09, -729.521731325636, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0075, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'oFRkZAEJYVCV4vO');... + atmarker('CROTCH_18_1', 'EApertures', [0.006 0.006]);... + atdrift('L04', 0.111275514615956, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF3_QCORROCT_142_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -440.259660850112], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'OndtG1uJFrF7b7A');... + atdrift('L084', 0.048820499745398, 'EApertures', [0.006 0.006]);... + atsbend('BQ4H7', 0.0577872115264688, -0.000403189428060739, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.000403189428060739, 'UUID', 'htBx8A1j2JU9Zkg');... + atsbend('BQ4H7', 0.0577872115264688, -0.000403189428060739, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'ExitAngle', -0.000403189428060739);... + atdrift('L084', 0.048820499745398, 'EApertures', [0.006 0.006]);... + atsextupole('SXF32_HCOR', 0.12, 782.043582880113, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'ooHEikFF9BPKm5H');... + atdrift('L082', 0.0471064301693061, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444583, 'UUID', 'EeB2O3uIhNuB49C');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444583);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'ogoWcGIvHY5fLKi');... + atsextupole('SXD32_VCOR', 0.09, -729.521731325636, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'gunmM2jDJkiJJeJ');... + atdrift('L071', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'cmYZtpqdcu7lG7v');... + atmarker('GIRDEREND', 'EApertures', [0.006 0.006]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.0076 0.0076]);... + atmarker('GIRDERSTART', 'EApertures', [0.008 0.008]);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008], 'UUID', 'f7SVbEjWCScDLK7');... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702353, -1.86297299994296, 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0342430714728858);... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702353, -1.86297299994296, 'EApertures', [0.008 0.008], 'ExitAngle', 0.0342430714728858);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00758974358974359 0.00758974358974359]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00717948717948718 0.00717948717948718], 'UUID', 'sjldOIpbJz7Pd7I');... + atdrift('L071', 0.048, 'EApertures', [0.00666666666666667 0.00666666666666667]);... + atsextupole('SXD3', 0.09, -753.118527609963, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'ENKdn0PqFFK4Zon');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_18_2', 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444583, 'UUID', 'bL2VZXZ2BGzi8ar');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444583);... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF3_QCORROCT_143_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -440.259660850112], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'vRTP9f7PRG6wr1F');... + atdrift('L081', 0.06, 'EApertures', [0.006 0.006]);... + atsextupole('SXF3_HCOR', 0.12, 675.00095481734, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'mpkTEpz95QRjqFE');... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444583, 'UUID', 'ExuUvuTRjYRCtS9');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444583);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'VKTosMhkcj1wVML');... + atsextupole('SXD3_VCOR', 0.09, -753.118527609963, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'NB61fDvHJUMEnzv');... + atdrift('L071', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'eGHchyOTXeDlg1S');... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.008 0.008]);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008], 'UUID', 'ZYOH75n2SyiGvd3');... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702353, -1.86297299994296, 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0342430714728858);... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702352, -1.86297299994296, 'EApertures', [0.008 0.008], 'ExitAngle', 0.0342430714728858);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008]);... + atmarker('GIRDEREND', 'EApertures', [0.00784615384615385 0.00784615384615385]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00758974358974359 0.00758974358974359]);... + atmarker('GIRDERSTART', 'EApertures', [0.00733333333333333 0.00733333333333333]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00712820512820513 0.00712820512820513], 'UUID', 'Vnr5RagaoqrgP7d');... + atdrift('L071', 0.048, 'EApertures', [0.00661538461538461 0.00661538461538461]);... + atsextupole('SXD3', 0.09, -753.118527609963, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'YT8Ue2L4kT3mCyi');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_18_3', 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444582, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444582, 'UUID', 'ASKAeDByXD3eCnk');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444582, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444582);... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF3_QCORROCT_144_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -440.259660850112], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'cnaTTEY42gz5mQ0');... + atdrift('L081', 0.06, 'EApertures', [0.006 0.006]);... + atsextupole('SXF33_HCOR', 0.12, 686.795497427942, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'nTCeomWPAJrGaQN');... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsbend('BQ6HC7', 0.0689196396343699, -0.00144054604712974, 8.95984862959226, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00144054604712974, 'UUID', 'Xin2sMoSNMhBee9');... + atsbend('BQ6HC7', 0.0689196396343699, -0.00144054604712974, 8.95984862959226, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00144054604712974);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'wsAzV8nFPI8aKE0');... + atsextupole('SXD33_VCOR', 0.09, -764.318658802759, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'y2hRz0Q3zAAku3R');... + atdrift('L071C', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'fapVJ3ERgSfR0nZ');... + atdrift('L073C', 0.0430773209057085, 'EApertures', [0.00725 0.00725]);... + atsbend('BD3HC7', 0.01, 0.000258818071001969, -1.37551837900507, 'EApertures', [0.008 0.00789655172413793], 'UUID', 'j5izIwpRz2fdLd7');... + atsbend('BD4HC71', 0.03, 0.00188018240208164, -2.57765200910186, 'EApertures', [0.008 0.00768965517241379], 'EntranceAngle', 0.00982777557557598);... + atsbend('BD4HC7', 0.253621983633988, 0.0158951863469887, -2.57765200910186, 'EApertures', [0.008 0.00631034482758621]);... + atsbend('BD4HC71', 0.03, 0.00188018240208164, -2.57765200910186, 'EApertures', [0.008 0.005], 'ExitAngle', 0.00982777557557598);... + atsbend('BD5HC7', 0.0231155237960032, 0.00240516115877823, 0.0, 'EApertures', [0.008 0.005]);... + atsbend('BD6HC7', 0.0856857672699483, 0.0117810198825822, 0.0, 'EApertures', [0.008 0.00425]);... + atsbend('BD6HC7', 0.0856857672699483, 0.0117810198825822, 0.0, 'EApertures', [0.008 0.0046]);... + atsbend('BD5HC7', 0.0231155237960032, 0.00240516115877823, 0.0, 'EApertures', [0.008 0.005]);... + atsbend('BD4HC71', 0.03, 0.00188018240208164, -2.57765200910186, 'EApertures', [0.008 0.00518367346938775], 'EntranceAngle', 0.00982777557557598);... + atsbend('BD4HC7', 0.253621983633988, 0.0158951863469887, -2.57765200910186, 'EApertures', [0.008 0.00640816326530612]);... + atsbend('BD4HC71', 0.03, 0.00188018240208164, -2.57765200910186, 'EApertures', [0.008 0.00763265306122449], 'ExitAngle', 0.00982777557557598);... + atsbend('BD3HC7', 0.01, 0.000258818071001969, -1.37551837900507, 'EApertures', [0.008 0.00781632653061225]);... + atdrift('L073C', 0.0430773209057085, 'EApertures', [0.008 0.008]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00739393939393939 0.00739393939393939], 'UUID', 'jkhmIZIdBM3Dtdu');... + atdrift('L071C', 0.048, 'EApertures', [0.00678787878787879 0.00678787878787879]);... + atsextupole('SXD33', 0.09, -764.318658802759, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.007, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'ZtWDVgICQkWJPLV');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_18_4', 'EApertures', [0.006 0.006]);... + atsbend('BQ6HC7', 0.0689196396343699, -0.00144054604712974, 8.95984862959226, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00144054604712974, 'UUID', 'r6topuPkmrtoeyi');... + atsbend('BQ6HC7', 0.0689196396343699, -0.00144054604712974, 8.95984862959226, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00144054604712974);... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsextupole('SXF33_HCOR', 0.12, 686.795497427942, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'I0eu98esyJLYOW2');... + atdrift('L081', 0.06, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF3_QCORROCT_145_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -440.259660850112], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'REEosZm4tw9I6th');... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444582, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444582, 'UUID', 'TDmx2h7Jy8CVmKK');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444582, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444582);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'twbfXQ05tzphUIV');... + atsextupole('SXD3_VCOR', 0.09, -753.118527609963, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'PQ0zsAgNjW8in3O');... + atdrift('L071', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'PmJZM2T6SwTZ375');... + atmarker('GIRDEREND', 'EApertures', [0.006 0.006]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00766666666666667 0.00766666666666667]);... + atmarker('GIRDERSTART', 'EApertures', [0.008 0.008]);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008], 'UUID', 'mTC2XoVKDr76XuE');... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702352, -1.86297299994296, 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0342430714728858);... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702353, -1.86297299994296, 'EApertures', [0.008 0.008], 'ExitAngle', 0.0342430714728858);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00758974358974359 0.00758974358974359]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00717948717948718 0.00717948717948718], 'UUID', 'A4tun126wuuFW6B');... + atdrift('L071', 0.048, 'EApertures', [0.00666666666666667 0.00666666666666667]);... + atsextupole('SXD3', 0.09, -753.118527609963, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'eWzK0drvSjgKBHb');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_18_5', 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444583, 'UUID', 'O291rEZAQy7bLOr');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444583);... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsextupole('SXF3_HCOR', 0.12, 675.00095481734, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'CwwPGuo8mntFGIQ');... + atdrift('L081', 0.06, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF3_QCORROCT_146_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -440.259660850112], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'nhRqewz8vJ2E1zC');... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444583, 'UUID', 'whfiX2IRKdnkVRZ');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444583);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'PM05t3RNNzfEP33');... + atsextupole('SXD3_VCOR', 0.09, -753.118527609963, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'fH2ixh22UBANYPm');... + atdrift('L071', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'PUvsLvFaHfxFhAs');... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.008 0.008]);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008], 'UUID', 'j1Fo2ru0E4XO8uk');... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702353, -1.86297299994296, 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0342430714728858);... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702353, -1.86297299994296, 'EApertures', [0.008 0.008], 'ExitAngle', 0.0342430714728858);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008]);... + atmarker('GIRDEREND', 'EApertures', [0.00784615384615385 0.00784615384615385]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00758974358974359 0.00758974358974359]);... + atmarker('GIRDERSTART', 'EApertures', [0.00733333333333333 0.00733333333333333]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00717948717948718 0.00717948717948718], 'UUID', 'MYYbYLxDzHDJYwj');... + atdrift('L071', 0.048, 'EApertures', [0.00661538461538461 0.00661538461538461]);... + atsextupole('SXD31', 0.09, -681.129428046866, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'AlkYpqxacajIqNO');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_18_6', 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444583, 'UUID', 'nmOdvRFqpqtaFLm');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444583);... + atdrift('L082', 0.0471064301693061, 'EApertures', [0.006 0.006]);... + atsextupole('SXF31_HCOR', 0.12, 734.143510940683, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'qzFuyCVODz6mSTg');... + atdrift('L084', 0.048820499745398, 'EApertures', [0.006 0.006]);... + atsbend('BQ4H7', 0.0577872115264688, -0.000403189428060739, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.000403189428060739, 'UUID', 'y83Rf0myitM8Waa');... + atsbend('BQ4H7', 0.0577872115264688, -0.000403189428060739, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'ExitAngle', -0.000403189428060739);... + atdrift('L085', 0.100096014361354, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF3_QCORROCT_147_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -440.259660850112], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'f4TaIhp1nlic4Y7');... + atdrift('L05', 0.06, 'EApertures', [0.006 0.006]);... + atsextupole('SXD31_VCOR', 0.09, -681.129428046866, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'q5IvlzX32D0uYQA');... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'mJzw33ptOAwtoKO');... + atdrift('L03', 0.176061846245862, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atsbend('BD27', 0.0284984341976272, 0.00225714925227511, -1.18160211440423, 'EApertures', [0.008 0.008], 'UUID', 'DYk8RTmJInxM1ns');... + atsbend('BD17', 0.0959771205127194, 0.00913608259524057, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0205293144427562);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524057, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524057, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524057, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'ExitAngle', 0.0205293144427562);... + atsbend('BD27', 0.0284984341976272, 0.00225714925227511, -1.18160211440423, 'EApertures', [0.00747368421052632 0.00747368421052632]);... + atdrift('LBD1C', 0.0395472975018047, 'EApertures', [0.00642105263157895 0.00642105263157895]);... + atdrift('D05HC', 0.00499988833315879, 'EApertures', [0.006 0.006]);... + atquadrupole('Q11', 0.0789546761676337, -12.3862992113073, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.07, 'EApertures', [0.006 0.006], 'UUID', 'FSHG2FNcT25Ui54');... + atdrift('D03HC', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH9_COR', 0.06, -668.536791100884, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'fFGEjJfBbV1qaNc');... + atdrift('D022HCQ', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'IaF6LApWYNw7RC6');... + atdrift('D041HCQ', 0.108, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_18_7', 'EApertures', [0.006 0.006]);... + atquadrupole('Q10', 0.0844113331477278, 13.6568508102765, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.076, 'EApertures', [0.006 0.006], 'UUID', 'GEExtKpaGu1jFUn');... + atdrift('D03HC', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH8', 0.06, -366.603155097304, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'UUID', 'h1Upx27BFwLGwBI');... + atdrift('D022HCQ', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'nAV7Efpa1kUVQ3H');... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'ZscyvXhvvCri9BL');... + atdrift('D06HCQ', 0.158, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atquadrupole('Q9', 0.106409911705093, 12.8349230947647, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.098, 'EApertures', [0.006 0.006], 'UUID', 'XXobmlH22XP4HfW');... + atdrift('D032HC', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH7_COR', 0.06, 832.664084881681, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'vcmbYb5ehtnBP1y');... + atdrift('D022HC', 0.06, 'EApertures', [0.006 0.006]);... + atmultipole('OH7_QCORROCT_148_QT', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'MaxOrder', 3, 'UUID', 'GVSLEzvRE9rZivm');... + atdrift('D031HC', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('Q8', 0.0786666675115942, -13.273182641893, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.07, 'EApertures', [0.006 0.006], 'UUID', 'nHyOeAkyxmk93Ie');... + atmarker('GIRDEREND', 'EApertures', [0.0064 0.0064]);... + atmarker('AN-C18END', 'EApertures', [0.0064 0.0064]);... + atmarker('SD19CSTART', 'EApertures', [0.0064 0.0064]);... + atmarker('VANNE_START', 'EApertures', [0.0064 0.0064]);... + atmarker('FCOR_19_1', 'UUID', 'fMyPJEmWJ5wyC8I');... + atmonitor('BPM', 'EApertures', [0.0064 0.0064], 'UUID', 'PnuyQL4aLdWZw4a');... + atdrift('SD1C_43', 0.322, 'Action', 'BPM', 'EApertures', [0.00847619047619048 0.00847619047619048]);... + atmarker('VANNE_END', 'EApertures', [0.01 0.01]);... + atdrift('SD1C_44', 0.0835458676300582, 'Action', 'BPM', 'RApertures', [-0.00903809523809524 0.00857142857142857 -0.00903809523809524 0.00903809523809524]);... + atmarker('ONDULEURMARK_START', 'RApertures', [-0.00884571428571429 0.00828571428571429 -0.00884571428571429 0.00884571428571429]);... + atdrift('SD1C_45', 1.189, 'Action', 'BPM', 'RApertures', [-0.0045 0.004 -0.0035 0.0035]);... + atmarker('SD19CCENTER', 'EApertures', [0.0045 0.0035]);... + atdrift('SD1C_46', 1.189, 'Action', 'BPM', 'EApertures', [0.0045 0.0035]);... + atmarker('ONDULEURMARK_END', 'EApertures', [0.00902941176470588 0.00885294117647059]);... + atdrift('SD1C_47', 0.0835458676300582, 'Action', 'BPM', 'EApertures', [0.01 0.01]);... + atmarker('VANNE_START', 'EApertures', [0.01 0.01]);... + atdrift('SD1C_48', 0.322, 'Action', 'BPM', 'EApertures', [0.00854545454545455 0.00854545454545455]);... + atmarker('FCOR_19_2', 'UUID', 'UTC35J40gByrBIh');... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'Y7G3120LZb4a4Nl');... + atmarker('VANNE_END', 'EApertures', [0.006 0.006]);... + atmarker('SD19CEND', 'EApertures', [0.006 0.006]);... + atmarker('AN-C19START', 'EApertures', [0.006 0.006]);... + atmarker('GIRDERSTART', 'EApertures', [0.006 0.006]);... + atquadrupole('Q8', 0.0786666675115942, -13.273182641893, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.07, 'EApertures', [0.006 0.006], 'UUID', 'Z0lI3nYCBdhztr6');... + atdrift('D031HC', 0.048, 'EApertures', [0.006 0.006]);... + atmultipole('OH7_QCORROCT_149_QT', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'MaxOrder', 3, 'UUID', 'x25PcJJz5zTf7ie');... + atdrift('D022HC', 0.06, 'EApertures', [0.006 0.006]);... + atsextupole('SH7_COR', 0.06, 832.664084881681, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'vueMlrgHlbOTynr');... + atdrift('D032HC', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('Q9', 0.106409911705093, 12.8349230947647, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.098, 'EApertures', [0.006 0.006], 'UUID', 'BjHNZrYmvm4v7ha');... + atdrift('D06HCQ', 0.158, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'IDKTI3kuRtqUOSr');... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'Zs2mV8YsIwN1H4v');... + atdrift('D022HCQ', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH8', 0.06, -366.603155097304, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'UUID', 'J25XJvMN9cMLGxG');... + atdrift('D03HC', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('Q10', 0.0844113331477278, 13.6568508102765, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.076, 'EApertures', [0.006 0.006], 'UUID', 'btB5tSYGgiUjgCv');... + atdrift('D041HCQ', 0.108, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'rIVFVkVyRW5dixG');... + atdrift('D022HCQ', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH9_COR', 0.06, -668.536791100884, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'z1q14vO734eaT5Y');... + atdrift('D03HC', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('Q11', 0.0789546761676337, -12.3862992113073, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.07, 'EApertures', [0.006 0.006], 'UUID', 'BPNgEDjjZaKhRB1');... + atdrift('D05HC', 0.00499988833315879, 'EApertures', [0.006 0.006]);... + atdrift('LBD1C', 0.0395472975018047, 'EApertures', [0.006 0.006]);... + atsbend('BD24', 0.0284984341976272, 0.00215787898333112, -1.18160211440423, 'EApertures', [0.00766666666666667 0.00766666666666667], 'UUID', 'L7ZFz18CZxDflPV');... + atsbend('BD14', 0.0959771205127194, 0.00873427426315538, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0205293144427562);... + atsbend('BD14', 0.0959771205127194, 0.00873427426315538, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD14', 0.0959771205127194, 0.00873427426315538, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD14', 0.0959771205127194, 0.00873427426315538, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'ExitAngle', 0.0205293144427562);... + atsbend('BD24', 0.0284984341976272, 0.00215787898333112, -1.18160211440423, 'EApertures', [0.00786666666666667 0.00786666666666667]);... + atdrift('L03', 0.176061846245862, 'EApertures', [0.006 0.006]);... + atsextupole('SXD22', 0.09, -636.039531358256, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0075, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'LGAU8cbj5n6Y7j8');... + atdrift('L04', 0.111275514615956, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_19_1', 'EApertures', [0.006 0.006]);... + atmultipole('OCTF2_QCORROCT_150_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -262.360558705412], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'NeSaa0C9CiDEXHd');... + atdrift('L084', 0.048820499745398, 'EApertures', [0.006 0.006]);... + atsbend('BQ4H4', 0.0577872115264688, -0.000385457006104762, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.000385457006104762, 'UUID', 'NPZ6GVOC6I60cQ1');... + atsbend('BQ4H4', 0.0577872115264688, -0.000385457006104762, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'ExitAngle', -0.000385457006104762);... + atdrift('L084', 0.048820499745398, 'EApertures', [0.006 0.006]);... + atsextupole('SXF22_HCOR', 0.12, 843.464304725645, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'txsp2V7qhNEYVaQ');... + atdrift('L082', 0.0471064301693061, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H4', 0.0689196396343699, -0.00144531683192883, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00144531683192883, 'UUID', 'TalKeBTVfrm8dbq');... + atsbend('BQ6H4', 0.0689196396343699, -0.00144531683192883, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00144531683192883);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'tOfJn0DB90cj8ET');... + atsextupole('SXD22_VCOR', 0.09, -636.039531358256, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'pePAGl1ox3rdBtc');... + atdrift('L071', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'wM3RPLD2TTDu9ko');... + atmarker('GIRDEREND', 'EApertures', [0.006 0.006]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00666666666666667 0.00666666666666667]);... + atmarker('GIRDERSTART', 'EApertures', [0.008 0.008]);... + atsbend('BD4H4', 0.0393049032024916, 0.00234342379845867, -1.11997137375817, 'EApertures', [0.008 0.008], 'UUID', 'riwtItBXdhNJzaA');... + atsbend('BD5H4', 0.398927492296932, 0.0303936245742024, -1.86297299994296, 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0342430714728858);... + atsbend('BD5H4', 0.398927492296932, 0.0303936245742024, -1.86297299994296, 'EApertures', [0.008 0.008], 'ExitAngle', 0.0342430714728858);... + atsbend('BD4H4', 0.0393049032024916, 0.00234342379845867, -1.11997137375817, 'EApertures', [0.008 0.008]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00775 0.00775]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.0073 0.0073], 'UUID', 'spnUZWGaQvpScxT');... + atdrift('L071', 0.048, 'EApertures', [0.0068 0.0068]);... + atsextupole('SXD2', 0.09, -617.904418360321, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'Hp6aOQTMckAcrsW');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_19_2', 'EApertures', [0.006 0.006]);... + atsbend('BQ6H4', 0.0689196396343699, -0.00144531683192883, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00144531683192883, 'UUID', 'CGIdLCp7JRkiis6');... + atsbend('BQ6H4', 0.0689196396343699, -0.00144531683192883, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00144531683192883);... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsextupole('SXF2_HCOR', 0.12, 741.112250869933, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'BASzM3dHxgRIvTw');... + atdrift('L081', 0.06, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF2_QCORROCT_151_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -262.360558705412], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'wgBOMR7nevSzk7v');... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H4', 0.0689196396343699, -0.00144531683192883, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00144531683192883, 'UUID', 'kKKeEGTyW0SaoLw');... + atsbend('BQ6H4', 0.0689196396343699, -0.00144531683192883, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00144531683192883);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'oMMWUbqayZl6TfJ');... + atsextupole('SXD2_VCOR', 0.09, -617.904418360321, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'oEyIdZ6SavCymdU');... + atdrift('L071', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'tKK9uIHui1Clvs2');... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00666666666666667 0.00666666666666667]);... + atsbend('BD4H4', 0.0393049032024916, 0.00234342379845867, -1.11997137375817, 'EApertures', [0.008 0.008], 'UUID', 'Z03GNsCyqmm9QKY');... + atsbend('BD5H4', 0.398927492296932, 0.0303936245742024, -1.86297299994296, 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0342430714728858);... + atsbend('BD5H4', 0.398927492296932, 0.0303936245742024, -1.86297299994296, 'EApertures', [0.008 0.008], 'ExitAngle', 0.0342430714728858);... + atsbend('BD4H4', 0.0393049032024916, 0.00234342379845867, -1.11997137375817, 'EApertures', [0.008 0.008]);... + atmarker('GIRDEREND', 'EApertures', [0.008 0.008]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00775 0.00775]);... + atmarker('GIRDERSTART', 'EApertures', [0.00745 0.00745]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.0073 0.0073], 'UUID', 'zyPnJG4cGsMvPX6');... + atdrift('L071', 0.048, 'EApertures', [0.0068 0.0068]);... + atsextupole('SXD21', 0.09, -655.116114720116, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'wlQQmcEjC9aCMa7');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_19_3', 'EApertures', [0.006 0.006]);... + atsbend('BQ6H4', 0.0689196396343699, -0.00144531683192883, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00144531683192883, 'UUID', 'w2nbrPZun1Dz6wm');... + atsbend('BQ6H4', 0.0689196396343699, -0.00144531683192883, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00144531683192883);... + atdrift('L082', 0.0471064301693061, 'EApertures', [0.006 0.006]);... + atsextupole('SXF21_HCOR', 0.12, 719.09699842571, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'G4knoteyfcX2Kzs');... + atdrift('L084', 0.048820499745398, 'EApertures', [0.006 0.006]);... + atsbend('BQ4H4', 0.0577872115264688, -0.000385457006104762, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.000385457006104762, 'UUID', 'NWTOFGWSTUHHNLi');... + atsbend('BQ4H4', 0.0577872115264688, -0.000385457006104762, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'ExitAngle', -0.000385457006104762);... + atdrift('L085', 0.100096014361354, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF2_QCORROCT_152_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -262.360558705412], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'USWmg6o05VrSSLj');... + atdrift('L05', 0.06, 'EApertures', [0.008 0.008]);... + atsextupole('SXD21_VCOR', 0.09, -655.116114720116, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.00666666666666667 0.00666666666666667], 'KickAngle', [0. 0.], 'UUID', 'X82Qfp4nQAulvxE');... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'dEHThwXtqsyXmop');... + atdrift('L03', 0.176061846245862, 'Action', 'BPM', 'EApertures', [0.006 0.006]);... + atsbend('BD24', 0.0284984341976272, 0.00215787898333112, -1.18160211440423, 'EApertures', [0.008 0.008], 'UUID', 'PUNYoOMNd3xlDre');... + atsbend('BD14', 0.0959771205127194, 0.00873427426315538, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0205293144427562);... + atsbend('BD14', 0.0959771205127194, 0.00873427426315538, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD14', 0.0959771205127194, 0.00873427426315538, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD14', 0.0959771205127194, 0.00873427426315538, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'ExitAngle', 0.0205293144427562);... + atsbend('BD24', 0.0284984341976272, 0.00215787898333112, -1.18160211440423, 'EApertures', [0.00715789473684211 0.00715789473684211]);... + atdrift('LBD1M1', 0.0395472975018047, 'EApertures', [0.00621052631578947 0.00621052631578947]);... + atdrift('D05HM1', 0.05, 'EApertures', [0.006 0.006]);... + atquadrupole('Q7', 0.0672457254622836, -11.8140171585779, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.058, 'EApertures', [0.006 0.006], 'UUID', 'sYmwW8xbhItB9Pc');... + atdrift('D03HM1', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH6_COR', 0.06, -324.475203415205, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'bLsbvOynecY6JBa');... + atdrift('D022HM1Q', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'MDFR0bVD8c3Cfnp');... + atdrift('D040HM1Q', 0.128, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_19_4', 'EApertures', [0.006 0.006]);... + atquadrupole('Q6', 0.067209291601852, 11.9784555023184, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.058, 'EApertures', [0.006 0.006], 'UUID', 'xboJuDWAkFZ0gyx');... + atdrift('D03HM1', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH5', 0.06, -514.413524183539, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'UUID', 'ufI0XAhRqBTcuom');... + atdrift('D022HM1', 0.06, 'EApertures', [0.006 0.006]);... + atmultipole('OH5_QCORROCT_153', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.008 0.008], 'MaxOrder', 3, 'UUID', 'oYm3av3egKvAf3i');... + atmonitor('BPM', 'EApertures', [0.008 0.008], 'UUID', 'HMKAYEtATKE9oXo');... + atdrift('D06HM1', 0.13, 'Action', 'BPM', 'EApertures', [0.006 0.006]);... + atquadrupole('Q5', 0.105773394525209, 14.0793630884634, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.098, 'EApertures', [0.006 0.006], 'UUID', 'qdA8QQHW6hJ3Grd');... + atdrift('D032HM1', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH4_COR', 0.06, 682.544409709839, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'e2kv7G9OPQnhqlF');... + atdrift('D022HM1', 0.06, 'EApertures', [0.006 0.006]);... + atmultipole('OH4_QCORROCT_154_QT', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'MaxOrder', 3, 'UUID', 'QTZOilDm3187Xx5');... + atdrift('D031HM1', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('Q4', 0.0785476107439048, -13.6216098775293, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.07, 'EApertures', [0.006 0.006], 'UUID', 'aTzhNVLnrgXBg7S');... + atmarker('GIRDEREND', 'EApertures', [0.006 0.006]);... + atmarker('AN-C19END', 'EApertures', [0.006 0.006]);... + atmarker('SD20MLSTART', 'EApertures', [0.006 0.006]);... + atmarker('VANNE_START', 'EApertures', [0.006 0.006]);... + atmarker('FCOR_20_1', 'UUID', 'AqKSFfJ38w94Sfy');... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'Bq7j1gw5uNBinzR');... + atdrift('SD1M1_33', 0.322, 'Action', 'BPM', 'EApertures', [0.00881818181818182 0.00881818181818182]);... + atmarker('VANNE_END', 'EApertures', [0.01 0.01]);... + atdrift('SD1M1_34', 0.519986392245071, 'Action', 'BPM', 'RApertures', [-0.00895714285714286 0.00828571428571429 -0.00895714285714286 0.00895714285714286]);... + atmarker('ONDULEURMARK_START', 'RApertures', [-0.00895714285714286 0.00828571428571429 -0.00895714285714286 0.00895714285714286]);... + atdrift('SD1M1_35', 1.29, 'Action', 'BPM', 'RApertures', [-0.0045 0.004 -0.0035 0.0035]);... + atmarker('SD20MLCENTER', 'EApertures', [0.0045 0.0035]);... + atdrift('SD1M1_36', 1.29, 'Action', 'BPM', 'EApertures', [0.0045 0.0035]);... + atmarker('ONDULEURMARK_END', 'EApertures', [0.00902941176470588 0.00885294117647059]);... + atdrift('SD1M1_37', 0.519986392245071, 'Action', 'BPM', 'EApertures', [0.01 0.01]);... + atmarker('VANNE_START', 'EApertures', [0.01 0.01]);... + atdrift('SD1M1_38', 0.322, 'Action', 'BPM', 'EApertures', [0.00876190476190476 0.00876190476190476]);... + atmarker('FCOR_20_2', 'UUID', 'zachHqxwjvw6wnm');... + atmonitor('BPM', 'EApertures', [0.008 0.008], 'UUID', 'Q9Ao6m17VzQgn3S');... + atmarker('VANNE_END', 'EApertures', [0.008 0.008]);... + atmarker('SD20MLEND', 'EApertures', [0.008 0.008]);... + atmarker('AN-C20START', 'EApertures', [0.008 0.008]);... + atmarker('GIRDERSTART', 'EApertures', [0.008 0.008]);... + atquadrupole('Q4', 0.0785476107439048, -13.6216098775293, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.07, 'EApertures', [0.006 0.006], 'UUID', 'VkLiG7VAsHJOo63');... + atdrift('D031HM1', 0.048, 'EApertures', [0.006 0.006]);... + atmultipole('OH4_QCORROCT_155_QT', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'MaxOrder', 3, 'UUID', 'qk132wKa5bKZShO');... + atdrift('D022HM1', 0.06, 'EApertures', [0.006 0.006]);... + atsextupole('SH4_COR', 0.06, 682.544409709839, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'fZb7pwVck98y7hI');... + atdrift('D032HM1', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('Q5', 0.105773394525209, 14.0793630884634, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.098, 'EApertures', [0.006 0.006], 'UUID', 'nfHOPB7WaJ8Fhga');... + atdrift('D06HM1', 0.13, 'Action', 'BPM', 'EApertures', [0.0064 0.0064]);... + atmonitor('BPM', 'EApertures', [0.008 0.008], 'UUID', 'dMr06o1aiIx009E');... + atmultipole('OH5_QCORROCT_156', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.008 0.008], 'MaxOrder', 3, 'UUID', 'Qx8vzidqOYkSZhj');... + atdrift('D022HM1', 0.06, 'EApertures', [0.006 0.006]);... + atsextupole('SH5', 0.06, -514.413524183539, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'UUID', 'pw7fZ9gXlZ2JZtj');... + atdrift('D03HM1', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('Q6', 0.067209291601852, 11.9784555023184, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.058, 'EApertures', [0.006 0.006], 'UUID', 'nz1HuAJacRfVxah');... + atdrift('D040HM1Q', 0.128, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'rQoFmGYzhWFWB53');... + atdrift('D022HM1Q', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH6_COR', 0.06, -324.475203415205, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'VhfxMIOxPCrTeZI');... + atdrift('D03HM1', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('Q7', 0.0672457254622836, -11.8140171585779, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.058, 'EApertures', [0.006 0.006], 'UUID', 'mjf3qdP3i3b1oUZ');... + atdrift('D05HM1', 0.05, 'EApertures', [0.006 0.006]);... + atdrift('LBD1M1', 0.0395472975018047, 'EApertures', [0.006 0.006]);... + atsbend('BD27', 0.0284984341976272, 0.00225714925227511, -1.18160211440423, 'EApertures', [0.008 0.008], 'UUID', 'kb5cpnZUEnyIhlW');... + atsbend('BD17', 0.0959771205127194, 0.00913608259524057, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0205293144427562);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524057, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524057, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524057, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'ExitAngle', 0.0205293144427562);... + atsbend('BD27', 0.0284984341976272, 0.00225714925227511, -1.18160211440423, 'EApertures', [0.00766666666666667 0.00766666666666667]);... + atdrift('L03', 0.176061846245862, 'EApertures', [0.006 0.006]);... + atsextupole('SXD12', 0.09, -749.191327132338, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0075, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'OYFzqVUDBsvNAT0');... + atdrift('L04', 0.111275514615956, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_20_1', 'EApertures', [0.006 0.006]);... + atmultipole('OCTF1_QCORROCT_157_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -800.842486671932], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'KnHxkgAtVumr1k9');... + atdrift('L084', 0.048820499745398, 'EApertures', [0.006 0.006]);... + atsbend('BQ4H7', 0.0577872115264688, -0.000403189428060739, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.000403189428060739, 'UUID', 'lXryYb0Wj1zz7Z1');... + atsbend('BQ4H7', 0.0577872115264688, -0.000403189428060739, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'ExitAngle', -0.000403189428060739);... + atdrift('L084', 0.048820499745398, 'EApertures', [0.006 0.006]);... + atsextupole('SXF12_HCOR', 0.12, 860.065976124029, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'rbHffhDPOjWqXys');... + atdrift('L082', 0.0471064301693061, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444583, 'UUID', 'saBqTYGXCkxKcEC');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444583);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'Z29ivEy8lBhOQgM');... + atsextupole('SXD12_VCOR', 0.09, -749.191327132338, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'DSBRD09WHeqbFtv');... + atdrift('L071', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'uCvFyvJgakOBToC');... + atmarker('GIRDEREND', 'EApertures', [0.006 0.006]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.008 0.008]);... + atmarker('GIRDERSTART', 'EApertures', [0.008 0.008]);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008], 'UUID', 'Z4uQoTXOenwbnEQ');... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702353, -1.86297299994296, 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0342430714728858);... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702353, -1.86297299994296, 'EApertures', [0.008 0.008], 'ExitAngle', 0.0342430714728858);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00758974358974359 0.00758974358974359]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00717948717948718 0.00717948717948718], 'UUID', 'MmTpYeIeyscsM3t');... + atdrift('L071', 0.048, 'EApertures', [0.00666666666666667 0.00666666666666667]);... + atsextupole('SXD1', 0.09, -688.075994596801, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'N2ZLM9dMhEatF0I');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_20_2', 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444583, 'UUID', 'eDI8tRf5wT2a5Wa');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444583);... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF1_QCORROCT_158_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -800.842486671932], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'WLqPpsU8fDzhyg1');... + atdrift('L081', 0.06, 'EApertures', [0.006 0.006]);... + atsextupole('SXF1_HCOR', 0.12, 781.382308964691, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'ZoDamNK4oa9LvSl');... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444583, 'UUID', 'kTT7I0Anrru819W');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444583);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'bGAZmLGFB8hKgzb');... + atsextupole('SXD1_VCOR', 0.09, -688.075994596801, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'VQ5sOs5GIiBgiSc');... + atdrift('L071', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'eo8fNipLiyMkOuw');... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.008 0.008]);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008], 'UUID', 'S9XZfq2a92kR0du');... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702353, -1.86297299994296, 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0342430714728858);... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702352, -1.86297299994296, 'EApertures', [0.008 0.008], 'ExitAngle', 0.0342430714728858);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008]);... + atmarker('GIRDEREND', 'EApertures', [0.00785 0.00785]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.0076 0.0076]);... + atmarker('GIRDERSTART', 'EApertures', [0.00735 0.00735]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00715 0.00715], 'UUID', 'Ojhl2IuszpU7tWW');... + atdrift('L071', 0.048, 'EApertures', [0.00665 0.00665]);... + atsextupole('SXD1', 0.09, -688.075994596801, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'JFfYWwjVNUUfcGU');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_20_3', 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444582, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444582, 'UUID', 'sxzxN3CxdICnJZs');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444582, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444582);... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF1_QCORROCT_159_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -800.842486671932], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'sTEzbpTI1d7KPuM');... + atdrift('L081', 0.06, 'EApertures', [0.006 0.006]);... + atsextupole('SXF13_HCOR', 0.12, 750.901805779491, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'aj1dkJs3wWXGJPF');... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsbend('BQ6HC7', 0.0689196396343699, -0.00144054604712974, 8.95984862959226, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00144054604712974, 'UUID', 'VVxNnpyiiciUheX');... + atsbend('BQ6HC7', 0.0689196396343699, -0.00144054604712974, 8.95984862959226, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00144054604712974);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'bsUxUBAYZmrUWnO');... + atsextupole('SXD13_VCOR', 0.09, -689.724579569546, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'GrPbM0Zs00spWSG');... + atdrift('L071C', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'uo1sfk7h2rRDlAT');... + atdrift('L073C', 0.0430773209057085, 'EApertures', [0.00714285714285714 0.00714285714285714]);... + atsbend('BD3HC7', 0.01, 0.000258818071001969, -1.37551837900507, 'EApertures', [0.008 0.00789772727272727], 'UUID', 'RwnpEJB6cLATOz3');... + atsbend('BD4HC71', 0.03, 0.00188018240208164, -2.57765200910186, 'EApertures', [0.008 0.00769318181818182], 'EntranceAngle', 0.00982777557557598);... + atsbend('BD4HC7', 0.253621983633988, 0.0158951863469887, -2.57765200910186, 'EApertures', [0.008 0.00632954545454545]);... + atsbend('BD4HC71', 0.03, 0.00188018240208164, -2.57765200910186, 'EApertures', [0.008 0.005], 'ExitAngle', 0.00982777557557598);... + atsbend('BD5HC7', 0.0231155237960032, 0.00240516115877823, 0.0, 'EApertures', [0.008 0.005]);... + atsbend('BD6HC7', 0.0856857672699483, 0.0117810198825822, 0.0, 'EApertures', [0.008 0.005]);... + atsbend('BD6HC7', 0.0856857672699483, 0.0117810198825822, 0.0, 'EApertures', [0.008 0.005]);... + atsbend('BD5HC7', 0.0231155237960032, 0.00240516115877823, 0.0, 'EApertures', [0.008 0.005]);... + atsbend('BD4HC71', 0.03, 0.00188018240208164, -2.57765200910186, 'EApertures', [0.008 0.00518367346938775], 'EntranceAngle', 0.00982777557557598);... + atsbend('BD4HC7', 0.253621983633988, 0.0158951863469887, -2.57765200910186, 'EApertures', [0.008 0.00640816326530612]);... + atsbend('BD4HC71', 0.03, 0.00188018240208164, -2.57765200910186, 'EApertures', [0.008 0.00763265306122449], 'ExitAngle', 0.00982777557557598);... + atsbend('BD3HC7', 0.01, 0.000258818071001969, -1.37551837900507, 'EApertures', [0.008 0.00781632653061225]);... + atdrift('L073C', 0.0430773209057085, 'EApertures', [0.008 0.008]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00739393939393939 0.00739393939393939], 'UUID', 'iBVRlShfwSvcWGO');... + atdrift('L071C', 0.048, 'EApertures', [0.00678787878787879 0.00678787878787879]);... + atsextupole('SXD13', 0.09, -689.724579569546, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.007, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'hoK4WKiAyCC6HcI');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_20_4', 'EApertures', [0.006 0.006]);... + atsbend('BQ6HC7', 0.0689196396343699, -0.00144054604712974, 8.95984862959226, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00144054604712974, 'UUID', 'KtsCZaMDWCRUjNI');... + atsbend('BQ6HC7', 0.0689196396343699, -0.00144054604712974, 8.95984862959226, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00144054604712974);... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsextupole('SXF13_HCOR', 0.12, 750.901805779491, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'hea85zyEJsiKPqL');... + atdrift('L081', 0.06, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF1_QCORROCT_160_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -800.842486671932], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'J9ORU0xHCzNjjst');... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444582, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444582, 'UUID', 'PQzR4CSXZF6TtTQ');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444582, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444582);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'YHY7K9oT2ICtCyN');... + atsextupole('SXD1_VCOR', 0.09, -688.075994596801, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'BSyxMxJfxZwVcyY');... + atdrift('L071', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'uMgiDjOK3nT4s0g');... + atmarker('GIRDEREND', 'EApertures', [0.006 0.006]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.0076 0.0076]);... + atmarker('GIRDERSTART', 'EApertures', [0.008 0.008]);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008], 'UUID', 'ro0mzqJT9itOJWL');... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702352, -1.86297299994296, 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0342430714728858);... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702353, -1.86297299994296, 'EApertures', [0.008 0.008], 'ExitAngle', 0.0342430714728858);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00758974358974359 0.00758974358974359]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00717948717948718 0.00717948717948718], 'UUID', 'o5p07N7sNRFd02P');... + atdrift('L071', 0.048, 'EApertures', [0.00666666666666667 0.00666666666666667]);... + atsextupole('SXD1', 0.09, -688.075994596801, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'Vebx2B2Y3YxInze');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444583, 'UUID', 'c1ZZIREcLTJrXc5');... + atmarker('CROTCH_20_5', 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444583);... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsextupole('SXF1_HCOR', 0.12, 781.382308964691, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'ujQiSXqQ18bIkuQ');... + atdrift('L081', 0.06, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF1_QCORROCT_161_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -800.842486671932], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'G4sVx6wVUQe26Rl');... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444583, 'UUID', 'AQ8UWNnP5ti3lDC');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444583);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'iTYHBkk5stYNYlV');... + atsextupole('SXD1_VCOR', 0.09, -688.075994596801, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'I8NHw2uLHnMeVsp');... + atdrift('L071', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'SHTP9QXxOblGbio');... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.008 0.008]);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008], 'UUID', 'Jl09JJXnl48gSPC');... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702353, -1.86297299994296, 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0342430714728858);... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702353, -1.86297299994296, 'EApertures', [0.008 0.008], 'ExitAngle', 0.0342430714728858);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'RApertures', [-0.008 0.0045 -0.008 0.008 ]);... + atmarker('MIR_AILES', 'RApertures', [-0.00784615384615385 0.0045 -0.00784615384615385 0.00784615384615385]);... + atmarker('GIRDEREND', 'RApertures', [-0.00784615384615385 0.0045 -0.00784615384615385 0.00784615384615385]);... + atdrift('L073', 0.0372677805661953, 'RApertures', [-0.00758974358974359 0.0045 -0.00758974358974359 0.00758974358974359]);... + atmarker('GIRDERSTART', 'EApertures', [0.00733333333333333 0.00733333333333333]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00712820512820513 0.00712820512820513], 'UUID', 'weu7nuTl0pyNBCf');... + atdrift('L071', 0.048, 'EApertures', [0.00661538461538461 0.00661538461538461]);... + atsextupole('SXD11', 0.09, -701.568414672357, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'Ov2Carfp7fdn6BI');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444583, 'UUID', 'DzC6YxD7LQxFtTo');... + atmarker('CROTCH_20_6', 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444583);... + atdrift('L082', 0.0471064301693061, 'EApertures', [0.006 0.006]);... + atsextupole('SXF11_HCOR', 0.12, 831.660252988522, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'DQnVAPH7up0fL06');... + atdrift('L084', 0.048820499745398, 'EApertures', [0.006 0.006]);... + atsbend('BQ4H7', 0.0577872115264688, -0.000403189428060739, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.000403189428060739, 'UUID', 'zVxnceXz4ZyLP0b');... + atsbend('BQ4H7', 0.0577872115264688, -0.000403189428060739, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'ExitAngle', -0.000403189428060739);... + atdrift('L085', 0.100096014361354, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF1_QCORROCT_162_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -800.842486671932], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'CYTVrdYUwKhPIQe');... + atdrift('L05', 0.06, 'EApertures', [0.006 0.006]);... + atsextupole('SXD11_VCOR', 0.09, -701.568414672357, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'AgjTPv2JF6IEc3E');... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BCa3Ing8w6Ng9ZI');... + atdrift('L03', 0.176061846245862, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atsbend('BD27', 0.0284984341976272, 0.00225714925227511, -1.18160211440423, 'EApertures', [0.008 0.008], 'UUID', 'a0RS6N78p0SfNgH');... + atsbend('BD17', 0.0959771205127194, 0.00913608259524057, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0205293144427562);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524057, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524057, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524057, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'ExitAngle', 0.0205293144427562);... + atsbend('BD27', 0.0284984341976272, 0.00225714925227511, -1.18160211440423, 'EApertures', [0.0085 0.0085]);... + atdrift('LBD1I', 0.0395472975018047, 'EApertures', [0.0085 0.0085]);... + atdrift('D05HI', 0.00499988833315879, 'EApertures', [0.0085 0.0085]);... + atquadrupole('Q3', 0.19168495937003, 8.41314022851464, 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.18, 'EApertures', [0.0085 0.0085], 'UUID', 'kykngw0t5feEkRR');... + atdrift('D03HIQ', 0.1, 'EApertures', [0.0085 0.0085]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.0085 0.0085], 'UUID', 'ad5AhG1Szpogedd');... + atdrift('D022HIQ', 0.048, 'EApertures', [0.0085 0.0085]);... + atsextupole('SH3_VCOR', 0.075, -319.26546309512, 'Action', 'SxtHarm', 'BoDiameter', 0.021, 'BoGap', 0.0062, 'BoLength', 0.075, 'EApertures', [0.0085 0.0085], 'KickAngle', [0. 0.], 'UUID', 'bbFYic0laS2uQuB');... + atmonitor('BPM', 'EApertures', [0.0085 0.0085], 'UUID', 'Ns7gM6AC1TYzzaZ');... + atdrift('D041HI', 0.118040964330437, 'Action', 'BPM', 'EApertures', [0.0085 0.0085]);... + atmarker('CROTCH_20_7', 'EApertures', [0.0085 0.0085]);... + atquadrupole('Q2', 0.190595998125992, -9.58185915782871, 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.18, 'EApertures', [0.0085 0.0085], 'UUID', 'dgVlnn4k4nJAPNV');... + atdrift('D03HI', 0.052, 'EApertures', [0.0085 0.0085]);... + atmultipole('OH2_QCORROCT_163', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.021, 'BoGap', 0.00718, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.0085 0.0085], 'MaxOrder', 3, 'UUID', 'SR8OxYoX0K5Bdmg');... + atdrift('D022HI', 0.06, 'EApertures', [0.0085 0.0085]);... + atsextupole('SH2_HCOR', 0.075, -0.0179339928448087, 'Action', 'SxtHarm', 'BoDiameter', 0.021, 'BoGap', 0.0062, 'BoLength', 0.075, 'EApertures', [0.0085 0.0085], 'KickAngle', [0. 0.], 'UUID', 'jRc0Ac6bgI0kAEW');... + atdrift('D03HI', 0.052, 'EApertures', [0.0085 0.0085]);... + atquadrupole('Q1', 0.137671036897098, 9.06658187296726, 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.0085 0.0085], 'UUID', 'NBDkSXw811iGpbp');... + atdrift('D031HI', 0.052, 'EApertures', [0.0085 0.0085]);... + atmultipole('OH1_QCORROCT_164_QT', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.021, 'BoGap', 0.00718, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.0085 0.0085], 'MaxOrder', 3, 'UUID', 'z35zCEuVjs1EjX1');... + atdrift('D022HI', 0.06, 'EApertures', [0.0085 0.0085]);... + atsextupole('SH1_COR', 0.075, 180.531158381771, 'Action', 'SxtHarm', 'BoDiameter', 0.021, 'BoGap', 0.0062, 'BoLength', 0.075, 'EApertures', [0.008 0.008], 'KickAngle', [0. 0.], 'UUID', 'f4skuhB8iEgKY8l');... + atmarker('GIRDEREND', 'EApertures', [0.008 0.008]);... + atmarker('AN-C20END', 'EApertures', [0.008 0.008]);... + atmarker('SD01ISTART', 'EApertures', [0.008 0.008]);... + atmarker('VANNE_START', 'EApertures', [0.008 0.008]);... + atmarker('FCOR_1_1', 'UUID', 'SfeWFXLm429zQKj');... + atmonitor('BPM', 'EApertures', [0.008 0.008], 'UUID', 'IAgGAY1sGtr3nk6');... + atdrift('SD1I_22', 0.322, 'Action', 'BPM', 'EApertures', [0.012 0.012]);... + atmarker('VANNE_END', 'EApertures', [0.012 0.012]);... + atdrift('SD1I_23', 0.166164763423493, 'Action', 'BPM', 'EApertures', [0.0137777777777778 0.00933333333333333]);... + atmultipole('SD01IKICKER1', 0.3, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Class', 'Octupole', 'EApertures', [0.015 0.0075]);... + atdrift('SD1I_24', 0.3433, 'Action', 'BPM', 'RApertures', [-0.0146797153024911 0.008 -0.0075 0.0075 ]);... + atmarker('THICKSEPTUMSTART', 'RApertures', [-0.014653024911032 0.015 -0.0075 0.0075 ]);... + atmultipole('THICKSEPTUM', 0.8973, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Class', 'Octupole', 'RApertures', [-0.0112900355871886 0.015 -0.0075 0.0075 ]);... + atmarker('THICKSEPTUMEND', 'RApertures', [-0.00790035587188612 0.015 -0.0075 0.0075 ]);... + atdrift('SD1I_25', 0.236459999999998, 'Action', 'BPM', 'RApertures', [-0.005 0.0153654822335025 -0.0075 0.0075 ]);... + atmarker('THINSEPTUMSTART', 'RApertures', [-0.005 0.0160355329949239 -0.0075 0.0075 ]);... + atmultipole('THINSEPTUM', 0.4, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Class', 'Octupole', 'RApertures', [-0.005 0.0160355329949239 -0.0075 0.0075 ]);... + atmarker('THINSEPTUMEND', 'RApertures', [-0.005 0.0183299492385787 -0.0075 0.0075 ]);... + atdrift('SD1I_26', 0.225, 'Action', 'BPM', 'RApertures', [-0.005 0.00990909090909091 -0.0075 0.0075 ]);... + atmultipole('SD01IKICKER2', 0.3, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Class', 'Octupole', 'EApertures', [0.015 0.0075]);... + atdrift('SD1I_27', 0.1, 'Action', 'BPM', 'EApertures', [0.015 0.0075]);... + atmultipole('SD01IKICKER3', 0.3, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Class', 'Octupole', 'EApertures', [0.015 0.0075]);... + atdrift('SD1I_28', 0.43100440243653, 'Action', 'BPM', 'EApertures', [0.015 0.0075]);... +}; + function v=False() + v=false; + end + function v=True() + v=true; + end +end diff --git a/examples/SOLEIL_examples/SOLEIL_II_V3631_sym1_V001_database_rf.m b/examples/SOLEIL_examples/SOLEIL_II_V3631_sym1_V001_database_rf.m new file mode 100644 index 0000000..3600e59 --- /dev/null +++ b/examples/SOLEIL_examples/SOLEIL_II_V3631_sym1_V001_database_rf.m @@ -0,0 +1,4249 @@ +function ring = SOLEIL_II_V3631_sym1_V001_database() +ring = {... + atringparam('SOLEIL_II_V3631_sym1_V001_nomenclature_V1_close', 2750000000.0, 1, 'HarmNumber', 416, 'M_File', '/home/habet/Downloads/SOLEIL_II_V3631_sym1_pipe_mult2_V001.m', 'Particle', struct('name', 'relativistic', 'rest_energy', 0.0, 'charge', -1.0), 'RApertures', [-0.015 0.015 -0.0075 0.0075], 'beam_current', 0.0, 'cell_harmnumber', 416.0);... + atmarker('SD01ICENTER', 'RApertures', [-0.015 0.015 -0.0075 0.0075]);... + atdrift('SD1I_1', 1.54332916586002, 'Action', 'BPM', 'RApertures', [-0.015 0.008 -0.0075 0.0075]);... + atmultipole('SD01IKICKER4', 0.3, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Class', 'Octupole', 'RApertures', [-0.015 0.008 -0.0035 0.0035]);... + atdrift('SD1I_2', 0.265, 'Action', 'BPM', 'EApertures', [0.015 0.0035]);... + atmarker('MIKSTART', 'EApertures', [0.015 0.0035]);... + atmultipole('MIK', 0.15, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Class', 'Octupole', 'EApertures', [0.015 0.0035]);... + atdrift('SD1I_3', 0.0500000000000001, 'Action', 'BPM', 'EApertures', [0.015 0.0035]);... + atmultipole('MIK', 0.15, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Class', 'Octupole', 'EApertures', [0.015 0.0035]);... + atdrift('SD1I_4', 0.0500000000000002, 'Action', 'BPM', 'EApertures', [0.015 0.0035]);... + atmultipole('MIK', 0.15, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Class', 'Octupole', 'EApertures', [0.015 0.0035]);... + atdrift('SD1I_5', 0.0499999999999999, 'Action', 'BPM', 'EApertures', [0.015 0.0035]);... + atmultipole('MIK', 0.15, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Class', 'Octupole', 'EApertures', [0.015 0.0035]);... + atdrift('SD1I_6', 0.0500000000000001, 'Action', 'BPM', 'EApertures', [0.015 0.00572222222222222]);... + atmultipole('MIK', 0.15, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Class', 'Octupole', 'EApertures', [0.015 0.0075]);... + atmarker('MIKEND', 'EApertures', [0.015 0.0075]);... + atdrift('SD1I_7', 0.070533215851725, 'Action', 'BPM', 'EApertures', [0.015 0.0075]);... + atmarker('SD01ICOLLIMATORSTART', 'EApertures', [0.015 0.0075]);... + atdrift('SD01ICOLLIMATOR', 0.5, 'RApertures', [-0.015 0.008 -0.0075 0.0075]);... + atmarker('SD01ICOLLIMATOREND', 'EApertures', [0.015 0.0075]);... + atdrift('SD1I_8', 0.0703667841482742, 'Action', 'BPM', 'EApertures', [0.012 0.012]);... + atmarker('VANNE_START', 'EApertures', [0.012 0.012]);... + atdrift('SD1I_9', 0.322, 'Action', 'BPM', 'EApertures', [0.012 0.012]);... + atmarker('FCOR_1_2', 'UUID', 'FCOR_1_2_001');... + atmonitor('BPM', 'EApertures', [0.008 0.008], 'UUID', 'BPM_001');... + atmarker('VANNE_END', 'EApertures', [0.008 0.008]);... + atmarker('SD01IEND', 'EApertures', [0.008 0.008]);... + atmarker('AN-C01START', 'EApertures', [0.008 0.008]);... + atmarker('GIRDERSTART', 'EApertures', [0.008 0.008]);... + atsextupole('SH1_COR', 0.075, 180.531158381771, 'Action', 'SxtHarm', 'BoDiameter', 0.021, 'BoGap', 0.0062, 'BoLength', 0.075, 'EApertures', [0.008 0.008], 'KickAngle', [0. 0.], 'UUID', 'SH1_COR_001');... + atdrift('D022HI', 0.06, 'EApertures', [0.0085 0.0085]);... + atmultipole('OH1_QCORROCT_1_QT', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.021, 'BoGap', 0.00718, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.0085 0.0085], 'MaxOrder', 3, 'UUID', 'OH1_QCORROCT_1_QT_001');... + atdrift('D031HI', 0.052, 'EApertures', [0.0085 0.0085]);... + atquadrupole('Q1', 0.137671036897098, 9.06658187296726, 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.0085 0.0085], 'UUID', 'Q1_001');... + atdrift('D03HI', 0.052, 'EApertures', [0.0085 0.0085]);... + atsextupole('SH2_HCOR', 0.075, -0.0179339928448087, 'Action', 'SxtHarm', 'BoDiameter', 0.021, 'BoGap', 0.0062, 'BoLength', 0.075, 'EApertures', [0.0085 0.0085], 'KickAngle', [0. 0.], 'UUID', 'SH2_HCOR_001');... + atdrift('D022HI', 0.06, 'EApertures', [0.0085 0.0085]);... + atmultipole('OH2_QCORROCT_2', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.021, 'BoGap', 0.00718, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.0085 0.0085], 'MaxOrder', 3, 'UUID', 'OH2_QCORROCT_2_001');... + atdrift('D03HI', 0.052, 'EApertures', [0.0085 0.0085]);... + atquadrupole('Q2', 0.190595998125992, -9.58185915782871, 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.18, 'EApertures', [0.0085 0.0085], 'UUID', 'Q2_001');... + atdrift('D041HI', 0.118040964330437, 'Action', 'BPM', 'EApertures', [0.0085 0.0085]);... + atmonitor('BPM', 'EApertures', [0.0085 0.0085], 'UUID', 'BPM_002');... + atsextupole('SH3_VCOR', 0.075, -319.26546309512, 'Action', 'SxtHarm', 'BoDiameter', 0.021, 'BoGap', 0.0062, 'BoLength', 0.075, 'EApertures', [0.0085 0.0085], 'KickAngle', [0. 0.], 'UUID', 'SH3_VCOR_001');... + atdrift('D022HIQ', 0.048, 'EApertures', [0.0085 0.0085]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.0085 0.0085], 'UUID', 'QCORR_001');... + atdrift('D03HIQ', 0.1, 'EApertures', [0.0085 0.0085]);... + atquadrupole('Q3', 0.19168495937003, 8.41314022851464, 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.18, 'EApertures', [0.0085 0.0085], 'UUID', 'Q3_001');... + atdrift('D05HI', 0.00499988833315879, 'EApertures', [0.0085 0.0085]);... + atdrift('LBD1I', 0.0395472975018047, 'EApertures', [0.0085 0.0085]);... + atsbend('BD27', 0.0284984341976272, 0.00225714925227511, -1.18160211440423, 'EApertures', [0.008 0.008], 'UUID', 'BD27_001');... + atsbend('BD17', 0.0959771205127194, 0.00913608259524057, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0205293144427562);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524057, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524057, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524057, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'ExitAngle', 0.0205293144427562);... + atsbend('BD27', 0.0284984341976272, 0.00225714925227511, -1.18160211440423, 'EApertures', [0.00772413793103448 0.00772413793103448]);... + atdrift('L03', 0.176061846245862, 'EApertures', [0.006 0.006]);... + atsextupole('SXD11', 0.09, -701.568414672357, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0075, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'SXD11_001');... + atmarker('CROTCH_01_1', 'EApertures', [0.006 0.006]);... + atdrift('L04', 0.111275514615956, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF1_QCORROCT_3_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -800.842486671932], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'OCTF1_QCORROCT_3_QT_001');... + atdrift('L084', 0.048820499745398, 'EApertures', [0.006 0.006]);... + atsbend('BQ4H7', 0.0577872115264688, -0.000403189428060739, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.000403189428060739, 'UUID', 'BQ4H7_001');... + atsbend('BQ4H7', 0.0577872115264688, -0.000403189428060739, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'ExitAngle', -0.000403189428060739);... + atdrift('L084', 0.048820499745398, 'EApertures', [0.006 0.006]);... + atsextupole('SXF11_HCOR', 0.12, 831.660252988522, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXF11_HCOR_001');... + atdrift('L082', 0.0471064301693061, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444583, 'UUID', 'BQ6H7_001');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444583);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BPM_003');... + atsextupole('SXD11_VCOR', 0.09, -701.568414672357, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXD11_VCOR_001');... + atdrift('L071', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'QCORR_002');... + atmarker('GIRDEREND', 'EApertures', [0.006 0.006]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00766666666666667 0.00766666666666667]);... + atmarker('GIRDERSTART', 'EApertures', [0.008 0.008]);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008], 'UUID', 'BD4H7_001');... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702353, -1.86297299994296, 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0342430714728858);... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702353, -1.86297299994296, 'EApertures', [0.008 0.008], 'ExitAngle', 0.0342430714728858);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008]);... + atmarker('MRSV', 'EApertures', [0.00785 0.00785]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.0076 0.0076]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00715 0.00715], 'UUID', 'QCORR_003');... + atdrift('L071', 0.048, 'EApertures', [0.00665 0.00665]);... + atsextupole('SXD1', 0.09, -688.075994596801, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'SXD1_001');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_01_2', 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444583, 'UUID', 'BQ6H7_003');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444583);... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF1_QCORROCT_4_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -800.842486671932], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'OCTF1_QCORROCT_4_QT_001');... + atdrift('L081', 0.06, 'EApertures', [0.006 0.006]);... + atsextupole('SXF1_HCOR', 0.12, 781.382308964691, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXF1_HCOR_001');... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444583, 'UUID', 'BQ6H7_005');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444583);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BPM_004');... + atsextupole('SXD1_VCOR', 0.09, -688.075994596801, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXD1_VCOR_001');... + atdrift('L071', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'QCORR_004');... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.0076 0.0076]);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008], 'UUID', 'BD4H7_003');... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702353, -1.86297299994296, 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0342430714728858);... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702352, -1.86297299994296, 'EApertures', [0.008 0.008], 'ExitAngle', 0.0342430714728858);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008]);... + atmarker('GIRDEREND', 'EApertures', [0.0078974358974359 0.0078974358974359]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00758974358974359 0.00758974358974359]);... + atmarker('GIRDERSTART', 'EApertures', [0.00733333333333333 0.00733333333333333]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00717948717948718 0.00717948717948718], 'UUID', 'QCORR_005');... + atdrift('L071', 0.048, 'EApertures', [0.00666666666666667 0.00666666666666667]);... + atsextupole('SXD1', 0.09, -688.075994596801, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'SXD1_002');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_01_3', 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444582, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444582, 'UUID', 'BQ6H7_007');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444582, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444582);... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF1_QCORROCT_5_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -800.842486671932], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'OCTF1_QCORROCT_5_QT_001');... + atdrift('L081', 0.06, 'EApertures', [0.006 0.006]);... + atsextupole('SXF13_HCOR', 0.12, 750.901805779491, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXF13_HCOR_001');... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsbend('BQ6HC7', 0.0689196396343699, -0.00144054604712974, 8.95984862959226, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00144054604712974, 'UUID', 'BQ6HC7_001');... + atsbend('BQ6HC7', 0.0689196396343699, -0.00144054604712974, 8.95984862959226, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00144054604712974);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BPM_005');... + atsextupole('SXD13_VCOR', 0.09, -689.724579569546, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXD13_VCOR_001');... + atdrift('L071C', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'QCORR_006');... + atdrift('L073C', 0.0430773209057085, 'EApertures', [0.00742857142857143 0.00742857142857143]);... + atsbend('BD3HC7', 0.01, 0.000258818071001969, -1.37551837900507, 'EApertures', [0.008 0.00786363636363636], 'UUID', 'BD3HC7_001');... + atsbend('BD4HC71', 0.03, 0.00188018240208164, -2.57765200910186, 'EApertures', [0.008 0.00765909090909091], 'EntranceAngle', 0.00982777557557598);... + atsbend('BD4HC7', 0.253621983633988, 0.0158951863469887, -2.57765200910186, 'EApertures', [0.008 0.00629545454545455]);... + atsbend('BD4HC71', 0.03, 0.00188018240208164, -2.57765200910186, 'EApertures', [0.008 0.005], 'ExitAngle', 0.00982777557557598);... + atsbend('BD5HC7', 0.0231155237960032, 0.00240516115877823, 0.0, 'EApertures', [0.008 0.005]);... + atsbend('BD6HC7', 0.0856857672699483, 0.0117810198825822, 0.0, 'EApertures', [0.008 0.005]);... + atsbend('BD6HC7', 0.0856857672699483, 0.0117810198825822, 0.0, 'EApertures', [0.008 0.005]);... + atsbend('BD5HC7', 0.0231155237960032, 0.00240516115877823, 0.0, 'EApertures', [0.008 0.005]);... + atsbend('BD4HC71', 0.03, 0.00188018240208164, -2.57765200910186, 'EApertures', [0.008 0.00518367346938775], 'EntranceAngle', 0.00982777557557598);... + atsbend('BD4HC7', 0.253621983633988, 0.0158951863469887, -2.57765200910186, 'EApertures', [0.008 0.00640816326530612]);... + atsbend('BD4HC71', 0.03, 0.00188018240208164, -2.57765200910186, 'EApertures', [0.008 0.00763265306122449], 'ExitAngle', 0.00982777557557598);... + atsbend('BD3HC7', 0.01, 0.000258818071001969, -1.37551837900507, 'EApertures', [0.008 0.00781632653061225]);... + atdrift('L073C', 0.0430773209057085, 'EApertures', [0.008 0.008]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00739393939393939 0.00739393939393939], 'UUID', 'QCORR_007');... + atdrift('L071C', 0.048, 'EApertures', [0.00678787878787879 0.00678787878787879]);... + atsextupole('SXD13', 0.09, -689.724579569546, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.007, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'SXD13_001');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_01_4', 'EApertures', [0.006 0.006]);... + atsbend('BQ6HC7', 0.0689196396343699, -0.00144054604712974, 8.95984862959226, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00144054604712974, 'UUID', 'BQ6HC7_003');... + atsbend('BQ6HC7', 0.0689196396343699, -0.00144054604712974, 8.95984862959226, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00144054604712974);... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsextupole('SXF13_HCOR', 0.12, 750.901805779491, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXF13_HCOR_002');... + atdrift('L081', 0.06, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF1_QCORROCT_6_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -800.842486671932], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'OCTF1_QCORROCT_6_QT_001');... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444582, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444582, 'UUID', 'BQ6H7_009');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444582, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444582);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BPM_006');... + atsextupole('SXD1_VCOR', 0.09, -688.075994596801, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXD1_VCOR_002');... + atdrift('L071', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'QCORR_008');... + atmarker('GIRDEREND', 'EApertures', [0.006 0.006]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00766666666666667 0.00766666666666667]);... + atmarker('GIRDERSTART', 'EApertures', [0.008 0.008]);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008], 'UUID', 'BD4H7_005');... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702352, -1.86297299994296, 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0342430714728858);... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702353, -1.86297299994296, 'EApertures', [0.008 0.008], 'ExitAngle', 0.0342430714728858);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.0076 0.0076]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00715 0.00715], 'UUID', 'QCORR_009');... + atdrift('L071', 0.048, 'EApertures', [0.00665 0.00665]);... + atsextupole('SXD1', 0.09, -688.075994596801, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'SXD1_003');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_01_5', 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444583, 'UUID', 'BQ6H7_011');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444583);... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsextupole('SXF1_HCOR', 0.12, 781.382308964691, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXF1_HCOR_002');... + atdrift('L081', 0.06, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF1_QCORROCT_7_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -800.842486671932], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'OCTF1_QCORROCT_7_QT_001');... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444583, 'UUID', 'BQ6H7_013');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444583);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BPM_007');... + atsextupole('SXD1_VCOR', 0.09, -688.075994596801, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXD1_VCOR_003');... + atdrift('L071', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'QCORR_010');... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00766666666666667 0.00766666666666667]);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008], 'UUID', 'BD4H7_007');... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702353, -1.86297299994296, 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0342430714728858);... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702353, -1.86297299994296, 'EApertures', [0.008 0.008], 'ExitAngle', 0.0342430714728858);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008]);... + atmarker('GIRDEREND', 'EApertures', [0.00785 0.00785]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.0076 0.0076]);... + atmarker('GIRDERSTART', 'EApertures', [0.0073 0.0073]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00715 0.00715], 'UUID', 'QCORR_011');... + atdrift('L071', 0.048, 'EApertures', [0.00665 0.00665]);... + atsextupole('SXD12', 0.09, -749.191327132338, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'SXD12_001');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_01_6', 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444583, 'UUID', 'BQ6H7_015');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444583);... + atdrift('L082', 0.0471064301693061, 'EApertures', [0.006 0.006]);... + atsextupole('SXF12_HCOR', 0.12, 860.065976124029, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXF12_HCOR_001');... + atdrift('L084', 0.048820499745398, 'EApertures', [0.006 0.006]);... + atsbend('BQ4H7', 0.0577872115264688, -0.000403189428060739, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.000403189428060739, 'UUID', 'BQ4H7_003');... + atsbend('BQ4H7', 0.0577872115264688, -0.000403189428060739, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'ExitAngle', -0.000403189428060739);... + atdrift('L085', 0.100096014361354, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF1_QCORROCT_8_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -800.842486671932], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'OCTF1_QCORROCT_8_QT_001');... + atdrift('L05', 0.06, 'EApertures', [0.006 0.006]);... + atsextupole('SXD12_VCOR', 0.09, -749.191327132338, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXD12_VCOR_001');... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BPM_008');... + atdrift('L03', 0.176061846245862, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atsbend('BD27', 0.0284984341976272, 0.00225714925227511, -1.18160211440423, 'EApertures', [0.008 0.008], 'UUID', 'BD27_003');... + atsbend('BD17', 0.0959771205127194, 0.00913608259524057, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0205293144427562);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524057, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524057, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524057, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'ExitAngle', 0.0205293144427562);... + atsbend('BD27', 0.0284984341976272, 0.00225714925227511, -1.18160211440423, 'EApertures', [0.00747368421052632 0.00747368421052632]);... + atdrift('LBD1M1', 0.0395472975018047, 'EApertures', [0.00652631578947368 0.00652631578947368]);... + atdrift('D05HM1', 0.05, 'EApertures', [0.006 0.006]);... + atquadrupole('Q7', 0.0672457254622836, -11.8140171585779, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.058, 'EApertures', [0.006 0.006], 'UUID', 'Q7_001');... + atdrift('D03HM1', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH6_COR', 0.06, -324.475203415205, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SH6_COR_001');... + atdrift('D022HM1Q', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'QCORR_012');... + atdrift('D040HM1Q', 0.128, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_01_7', 'EApertures', [0.006 0.006]);... + atquadrupole('Q6', 0.067209291601852, 11.9784555023184, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.058, 'EApertures', [0.006 0.006], 'UUID', 'Q6_001');... + atdrift('D03HM1', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH5', 0.06, -514.413524183539, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'UUID', 'SH5_001');... + atdrift('D022HM1', 0.06, 'EApertures', [0.006 0.006]);... + atmultipole('OH5_QCORROCT_9', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.008 0.008], 'MaxOrder', 3, 'UUID', 'OH5_QCORROCT_9_001');... + atmonitor('BPM', 'EApertures', [0.008 0.008], 'UUID', 'BPM_009');... + atdrift('D06HM1', 0.13, 'Action', 'BPM', 'EApertures', [0.006 0.006]);... + atquadrupole('Q5', 0.105773394525209, 14.0793630884634, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.098, 'EApertures', [0.006 0.006], 'UUID', 'Q5_001');... + atdrift('D032HM1', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH4_COR', 0.06, 682.544409709839, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SH4_COR_001');... + atdrift('D022HM1', 0.06, 'EApertures', [0.006 0.006]);... + atmultipole('OH4_QCORROCT_10_QT', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'MaxOrder', 3, 'UUID', 'OH4_QCORROCT_10_QT_001');... + atdrift('D031HM1', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('Q4', 0.0785476107439048, -13.6216098775293, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.07, 'EApertures', [0.008 0.008], 'UUID', 'Q4_001');... + atmarker('GIRDEREND', 'EApertures', [0.006 0.006]);... + atmarker('AN-C01END', 'EApertures', [0.006 0.006]);... + atmarker('SD02MLSTART', 'EApertures', [0.006 0.006]);... + atmarker('VANNE_START', 'EApertures', [0.006 0.006]);... + atmarker('FCOR_2_1', 'UUID', 'FCOR_2_1_001');... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BPM_010');... + atdrift('SD1M1_1', 0.272, 'Action', 'BPM', 'EApertures', [0.00818181818181818 0.00818181818181818]);... + atmarker('VANNE_END', 'EApertures', [0.01 0.01]);... + atdrift('SD1M1_2', 0.0819863922450714, 'Action', 'BPM', 'EApertures', [0.01 0.01]);... + atmarker('SYSTEME_RF_START', 'EApertures', [0.01 0.01]);... + atmarker('TRANSITION_AMONT_START', 'EApertures', [0.01 0.01]);... + atdrift('SD1M1_3', 0.33, 'Action', 'BPM', 'EApertures', [0.0332258064516129 0.0332258064516129]);... + atmarker('TRANSITION_AMONT_END', 'EApertures', [0.05 0.05]);... + atdrift('SD1M1_4', 0.5792, 'Action', 'BPM', 'EApertures', [0.05 0.05]);... + atmarker('RFCAV01', 'EApertures', [0.05 0.05]);... + atdrift('SD1M1_5', 0.5792, 'Action', 'BPM', 'EApertures', [0.05 0.05]);... + atmarker('RFCAV02', 'EApertures', [0.05 0.05]);... + atdrift('SD1M1_6', 0.2896, 'Action', 'BPM', 'EApertures', [0.05 0.05]);... + atmarker('SD02MLCENTER', 'EApertures', [0.05 0.05]);... + atrfcavity('RF', 0.0, 1700000.0, 352314252.10429, 416, 2750000000.0, 'EApertures', [0.05 0.05], 'UUID', 'RF_002');... + atdrift('SD1M1_7', 0.2896, 'Action', 'BPM', 'EApertures', [0.05 0.05]);... + atmarker('RFCAV03', 'EApertures', [0.05 0.05]);... + atdrift('SD1M1_8', 0.5792, 'Action', 'BPM', 'EApertures', [0.05 0.05]);... + atmarker('RFCAV04', 'EApertures', [0.05 0.05]);... + atdrift('SD1M1_9', 0.5792, 'Action', 'BPM', 'EApertures', [0.05 0.05]);... + atmarker('TRANSITION_AVALLE_START', 'EApertures', [0.05 0.05]);... + atdrift('SD1M1_10', 0.33, 'Action', 'BPM', 'RApertures', [-0.0326666666666667 0.0291428571428571 -0.0326666666666667 0.0326666666666667]);... + atmarker('TRANSITION_AVALLE_END', 'EApertures', [0.01 0.01]);... + atmarker('SYSTEME_RF_END', 'EApertures', [0.01 0.01]);... + atdrift('SD1M1_11', 0.0819863922450714, 'Action', 'BPM', 'EApertures', [0.01 0.01]);... + atmarker('VANNE_START', 'EApertures', [0.01 0.01]);... + atdrift('SD1M1_12', 0.272, 'Action', 'BPM', 'EApertures', [0.00818181818181818 0.00818181818181818]);... + atmarker('FCOR_2_2', 'UUID', 'FCOR_2_2_001');... + atmonitor('BPM', 'EApertures', [0.008 0.008], 'UUID', 'BPM_011');... + atmarker('VANNE_END', 'EApertures', [0.008 0.008]);... + atmarker('SD02MLEND', 'EApertures', [0.008 0.008]);... + atmarker('AN-C02START', 'EApertures', [0.008 0.008]);... + atmarker('GIRDERSTART', 'EApertures', [0.008 0.008]);... + atquadrupole('Q4', 0.0785476107439048, -13.6216098775293, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.07, 'EApertures', [0.00633333333333333 0.00633333333333333], 'UUID', 'Q4_002');... + atdrift('D031HM1', 0.048, 'EApertures', [0.006 0.006]);... + atmultipole('OH4_QCORROCT_11_QT', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'MaxOrder', 3, 'UUID', 'OH4_QCORROCT_11_QT_001');... + atdrift('D022HM1', 0.06, 'EApertures', [0.006 0.006]);... + atsextupole('SH4_COR', 0.06, 682.544409709839, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SH4_COR_002');... + atdrift('D032HM1', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('Q5', 0.105773394525209, 14.0793630884634, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.098, 'EApertures', [0.006 0.006], 'UUID', 'Q5_002');... + atdrift('D06HM1', 0.13, 'Action', 'BPM', 'EApertures', [0.006 0.006]);... + atmonitor('BPM', 'EApertures', [0.008 0.008], 'UUID', 'BPM_012');... + atmultipole('OH5_QCORROCT_12', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.008 0.008], 'MaxOrder', 3, 'UUID', 'OH5_QCORROCT_12_001');... + atdrift('D022HM1', 0.06, 'EApertures', [0.006 0.006]);... + atsextupole('SH5', 0.06, -514.413524183539, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'UUID', 'SH5_002');... + atdrift('D03HM1', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('Q6', 0.067209291601852, 11.9784555023184, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.058, 'EApertures', [0.006 0.006], 'UUID', 'Q6_002');... + atdrift('D040HM1Q', 0.128, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'QCORR_013');... + atdrift('D022HM1Q', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH6_COR', 0.06, -324.475203415205, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SH6_COR_002');... + atdrift('D03HM1', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('Q7', 0.0672457254622836, -11.8140171585779, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.058, 'EApertures', [0.006 0.006], 'UUID', 'Q7_002');... + atdrift('D05HM1', 0.05, 'EApertures', [0.006 0.006]);... + atdrift('LBD1M1', 0.0395472975018047, 'EApertures', [0.006 0.006]);... + atsbend('BD24', 0.0284984341976272, 0.00215787898333112, -1.18160211440423, 'EApertures', [0.0076 0.0076], 'UUID', 'BD24_001');... + atsbend('BD14', 0.0959771205127194, 0.00873427426315538, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0205293144427562);... + atsbend('BD14', 0.0959771205127194, 0.00873427426315538, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD14', 0.0959771205127194, 0.00873427426315538, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD14', 0.0959771205127194, 0.00873427426315538, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'ExitAngle', 0.0205293144427562);... + atsbend('BD24', 0.0284984341976272, 0.00215787898333112, -1.18160211440423, 'EApertures', [0.00786666666666667 0.00786666666666667]);... + atdrift('L03', 0.176061846245862, 'EApertures', [0.006 0.006]);... + atsextupole('SXD21', 0.09, -655.116114720116, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0075, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'SXD21_001');... + atdrift('L04', 0.111275514615956, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_02_1', 'EApertures', [0.006 0.006]);... + atmultipole('OCTF2_QCORROCT_13_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -262.360558705412], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'OCTF2_QCORROCT_13_QT_001');... + atdrift('L084', 0.048820499745398, 'EApertures', [0.006 0.006]);... + atsbend('BQ4H4', 0.0577872115264688, -0.000385457006104762, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.000385457006104762, 'UUID', 'BQ4H4_001');... + atsbend('BQ4H4', 0.0577872115264688, -0.000385457006104762, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'ExitAngle', -0.000385457006104762);... + atdrift('L084', 0.048820499745398, 'EApertures', [0.006 0.006]);... + atsextupole('SXF21_HCOR', 0.12, 719.09699842571, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXF21_HCOR_001');... + atdrift('L082', 0.0471064301693061, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H4', 0.0689196396343699, -0.00144531683192883, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00144531683192883, 'UUID', 'BQ6H4_001');... + atsbend('BQ6H4', 0.0689196396343699, -0.00144531683192883, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00144531683192883);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BPM_013');... + atsextupole('SXD21_VCOR', 0.09, -655.116114720116, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXD21_VCOR_001');... + atdrift('L071', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'QCORR_014');... + atmarker('GIRDEREND', 'EApertures', [0.006 0.006]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.0068 0.0068]);... + atmarker('GIRDERSTART', 'EApertures', [0.008 0.008]);... + atsbend('BD4H4', 0.0393049032024916, 0.00234342379845867, -1.11997137375817, 'EApertures', [0.008 0.008], 'UUID', 'BD4H4_001');... + atsbend('BD5H4', 0.398927492296932, 0.0303936245742024, -1.86297299994296, 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0342430714728858);... + atsbend('BD5H4', 0.398927492296932, 0.0303936245742024, -1.86297299994296, 'EApertures', [0.008 0.008], 'ExitAngle', 0.0342430714728858);... + atsbend('BD4H4', 0.0393049032024916, 0.00234342379845867, -1.11997137375817, 'EApertures', [0.008 0.008]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00774358974358974 0.00774358974358974]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00733333333333333 0.00733333333333333], 'UUID', 'QCORR_015');... + atdrift('L071', 0.048, 'EApertures', [0.00676923076923077 0.00676923076923077]);... + atsextupole('SXD2', 0.09, -617.904418360321, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'SXD2_001');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_02_2', 'EApertures', [0.006 0.006]);... + atsbend('BQ6H4', 0.0689196396343699, -0.00144531683192883, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00144531683192883, 'UUID', 'BQ6H4_003');... + atsbend('BQ6H4', 0.0689196396343699, -0.00144531683192883, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00144531683192883);... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF2_QCORROCT_14_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -262.360558705412], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'OCTF2_QCORROCT_14_QT_001');... + atdrift('L081', 0.06, 'EApertures', [0.006 0.006]);... + atsextupole('SXF2_HCOR', 0.12, 741.112250869933, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXF2_HCOR_001');... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H4', 0.0689196396343699, -0.00144531683192883, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00144531683192883, 'UUID', 'BQ6H4_005');... + atsbend('BQ6H4', 0.0689196396343699, -0.00144531683192883, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00144531683192883);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BPM_014');... + atsextupole('SXD2_VCOR', 0.09, -617.904418360321, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXD2_VCOR_001');... + atdrift('L071', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'QCORR_016');... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.0068 0.0068]);... + atsbend('BD4H4', 0.0393049032024916, 0.00234342379845867, -1.11997137375817, 'EApertures', [0.008 0.008], 'UUID', 'BD4H4_003');... + atsbend('BD5H4', 0.398927492296932, 0.0303936245742024, -1.86297299994296, 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0342430714728858);... + atsbend('BD5H4', 0.398927492296932, 0.0303936245742024, -1.86297299994296, 'EApertures', [0.008 0.008], 'ExitAngle', 0.0342430714728858);... + atsbend('BD4H4', 0.0393049032024916, 0.00234342379845867, -1.11997137375817, 'EApertures', [0.008 0.008]);... + atmarker('MIR_SMIS', 'RApertures', [-0.008 0.0045 -0.008 0.008 ]);... + atmarker('GIRDEREND', 'RApertures', [-0.008 0.0045 -0.008 0.008 ]);... + atdrift('L073', 0.0372677805661953, 'RApertures', [-0.00774358974358974 0.0045 -0.00774358974358974 0.00774358974358974]);... + atmarker('GIRDERSTART', 'EApertures', [0.00748717948717949 0.00748717948717949]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00728205128205128 0.00728205128205128], 'UUID', 'QCORR_017');... + atdrift('L071', 0.048, 'EApertures', [0.00676923076923077 0.00676923076923077]);... + atsextupole('SXD22', 0.09, -636.039531358256, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'SXD22_001');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_02_3', 'EApertures', [0.006 0.006]);... + atsbend('BQ6H4', 0.0689196396343699, -0.00144531683192883, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00144531683192883, 'UUID', 'BQ6H4_007');... + atsbend('BQ6H4', 0.0689196396343699, -0.00144531683192883, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00144531683192883);... + atdrift('L082', 0.0471064301693061, 'EApertures', [0.006 0.006]);... + atsextupole('SXF22_HCOR', 0.12, 843.464304725645, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXF22_HCOR_001');... + atdrift('L084', 0.048820499745398, 'EApertures', [0.006 0.006]);... + atsbend('BQ4H4', 0.0577872115264688, -0.000385457006104762, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.000385457006104762, 'UUID', 'BQ4H4_003');... + atsbend('BQ4H4', 0.0577872115264688, -0.000385457006104762, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'ExitAngle', -0.000385457006104762);... + atdrift('L085', 0.100096014361354, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF2_QCORROCT_15_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -262.360558705412], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'OCTF2_QCORROCT_15_QT_001');... + atdrift('L05', 0.06, 'EApertures', [0.008 0.008]);... + atsextupole('SXD22_VCOR', 0.09, -636.039531358256, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.0068 0.0068], 'KickAngle', [0. 0.], 'UUID', 'SXD22_VCOR_001');... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BPM_015');... + atdrift('L03', 0.176061846245862, 'Action', 'BPM', 'EApertures', [0.006 0.006]);... + atsbend('BD24', 0.0284984341976272, 0.00215787898333112, -1.18160211440423, 'EApertures', [0.008 0.008], 'UUID', 'BD24_003');... + atsbend('BD14', 0.0959771205127194, 0.00873427426315538, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0205293144427562);... + atsbend('BD14', 0.0959771205127194, 0.00873427426315538, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD14', 0.0959771205127194, 0.00873427426315538, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD14', 0.0959771205127194, 0.00873427426315538, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'ExitAngle', 0.0205293144427562);... + atsbend('BD24', 0.0284984341976272, 0.00215787898333112, -1.18160211440423, 'EApertures', [0.00722222222222222 0.00722222222222222]);... + atdrift('LBD1C', 0.0395472975018047, 'EApertures', [0.00611111111111111 0.00611111111111111]);... + atdrift('D05HC', 0.00499988833315879, 'EApertures', [0.006 0.006]);... + atquadrupole('Q11', 0.0789546761676337, -12.3862992113073, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.07, 'EApertures', [0.006 0.006], 'UUID', 'Q11_001');... + atdrift('D03HC', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH9_COR', 0.06, -668.536791100884, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SH9_COR_001');... + atdrift('D022HCQ', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'QCORR_018');... + atdrift('D041HCQ', 0.108, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_02_4', 'EApertures', [0.006 0.006]);... + atquadrupole('Q10', 0.0844113331477278, 13.6568508102765, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.076, 'EApertures', [0.006 0.006], 'UUID', 'Q10_001');... + atdrift('D03HC', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH8', 0.06, -366.603155097304, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'UUID', 'SH8_001');... + atdrift('D022HCQ', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'QCORR_019');... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BPM_016');... + atdrift('D06HCQ', 0.158, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atquadrupole('Q9', 0.106409911705093, 12.8349230947647, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.098, 'EApertures', [0.006 0.006], 'UUID', 'Q9_001');... + atdrift('D032HC', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH7_COR', 0.06, 832.664084881681, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SH7_COR_001');... + atdrift('D022HC', 0.06, 'EApertures', [0.006 0.006]);... + atmultipole('OH7_QCORROCT_16_QT', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'MaxOrder', 3, 'UUID', 'OH7_QCORROCT_16_QT_001');... + atdrift('D031HC', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('Q8', 0.0786666675115942, -13.273182641893, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.07, 'EApertures', [0.006 0.006], 'UUID', 'Q8_001');... + atmarker('GIRDEREND', 'EApertures', [0.0076 0.0076]);... + atmarker('AN-C02END', 'EApertures', [0.0076 0.0076]);... + atmarker('SD03CSTART', 'EApertures', [0.0076 0.0076]);... + atmarker('VANNE_START', 'EApertures', [0.0076 0.0076]);... + atmarker('FCOR_3_1', 'UUID', 'FCOR_3_1_001');... + atmonitor('BPM', 'EApertures', [0.0076 0.0076], 'UUID', 'BPM_017');... + atdrift('SD1C_1', 0.322, 'Action', 'BPM', 'EApertures', [0.00854545454545455 0.00854545454545455]);... + atmarker('VANNE_END', 'EApertures', [0.01 0.01]);... + atdrift('SD1C_2', 0.0835458676300582, 'Action', 'BPM', 'EApertures', [0.01 0.01]);... + atmarker('ONDULEURMARK_START', 'EApertures', [0.042 0.0125]);... + atdrift('SD1C_3', 1.189, 'Action', 'BPM', 'EApertures', [0.0475 0.002 ]);... + atmarker('SD03CCENTER', 'EApertures', [0.0475 0.002 ]);... + atdrift('SD1C_4', 1.189, 'Action', 'BPM', 'EApertures', [0.0475 0.002 ]);... + atmarker('ONDULEURMARK_END', 'EApertures', [0.042 0.0125]);... + atdrift('SD1C_5', 0.0835458676300582, 'Action', 'BPM', 'EApertures', [0.01 0.01]);... + atmarker('VANNE_START', 'EApertures', [0.01 0.01]);... + atdrift('SD1C_6', 0.322, 'Action', 'BPM', 'EApertures', [0.00847619047619048 0.00847619047619048]);... + atmarker('FCOR_3_2', 'UUID', 'FCOR_3_2_001');... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BPM_018');... + atmarker('VANNE_END', 'EApertures', [0.006 0.006]);... + atmarker('SD03CEND', 'EApertures', [0.006 0.006]);... + atmarker('AN-C03START', 'EApertures', [0.006 0.006]);... + atmarker('GIRDERSTART', 'EApertures', [0.006 0.006]);... + atquadrupole('Q8', 0.0786666675115942, -13.273182641893, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.07, 'EApertures', [0.006 0.006], 'UUID', 'Q8_002');... + atdrift('D031HC', 0.048, 'EApertures', [0.006 0.006]);... + atmultipole('OH7_QCORROCT_17_QT', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'MaxOrder', 3, 'UUID', 'OH7_QCORROCT_17_QT_001');... + atdrift('D022HC', 0.06, 'EApertures', [0.006 0.006]);... + atsextupole('SH7_COR', 0.06, 832.664084881681, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SH7_COR_002');... + atdrift('D032HC', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('Q9', 0.106409911705093, 12.8349230947647, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.098, 'EApertures', [0.006 0.006], 'UUID', 'Q9_002');... + atdrift('D06HCQ', 0.158, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BPM_019');... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'QCORR_020');... + atdrift('D022HCQ', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH8', 0.06, -366.603155097304, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'UUID', 'SH8_002');... + atdrift('D03HC', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('Q10', 0.0844113331477278, 13.6568508102765, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.076, 'EApertures', [0.006 0.006], 'UUID', 'Q10_002');... + atdrift('D041HCQ', 0.108, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'QCORR_021');... + atdrift('D022HCQ', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH9_COR', 0.06, -668.536791100884, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SH9_COR_002');... + atdrift('D03HC', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('Q11', 0.0789546761676337, -12.3862992113073, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.07, 'EApertures', [0.006 0.006], 'UUID', 'Q11_002');... + atdrift('D05HC', 0.00499988833315879, 'EApertures', [0.006 0.006]);... + atdrift('LBD1C', 0.0395472975018047, 'EApertures', [0.006 0.006]);... + atsbend('BD27', 0.0284984341976272, 0.00225714925227511, -1.18160211440423, 'EApertures', [0.008 0.008], 'UUID', 'BD27_005');... + atsbend('BD17', 0.0959771205127194, 0.00913608259524057, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0205293144427562);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524057, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524057, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524057, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'ExitAngle', 0.0205293144427562);... + atsbend('BD27', 0.0284984341976272, 0.00225714925227511, -1.18160211440423, 'EApertures', [0.00772413793103448 0.00772413793103448]);... + atdrift('L03', 0.176061846245862, 'EApertures', [0.006 0.006]);... + atsextupole('SXD31', 0.09, -681.129428046866, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0075, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'SXD31_001');... + atdrift('L04', 0.111275514615956, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_03_1', 'EApertures', [0.006 0.006]);... + atmultipole('OCTF3_QCORROCT_18_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -440.259660850112], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'OCTF3_QCORROCT_18_QT_001');... + atdrift('L084', 0.048820499745398, 'EApertures', [0.006 0.006]);... + atsbend('BQ4H7', 0.0577872115264688, -0.000403189428060739, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.000403189428060739, 'UUID', 'BQ4H7_005');... + atsbend('BQ4H7', 0.0577872115264688, -0.000403189428060739, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'ExitAngle', -0.000403189428060739);... + atdrift('L084', 0.048820499745398, 'EApertures', [0.006 0.006]);... + atsextupole('SXF31_HCOR', 0.12, 734.143510940683, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXF31_HCOR_001');... + atdrift('L082', 0.0471064301693061, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444583, 'UUID', 'BQ6H7_017');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444583);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BPM_020');... + atsextupole('SXD31_VCOR', 0.09, -681.129428046866, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXD31_VCOR_001');... + atdrift('L071', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'QCORR_022');... + atmarker('GIRDEREND', 'EApertures', [0.006 0.006]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00766666666666667 0.00766666666666667]);... + atmarker('GIRDERSTART', 'EApertures', [0.008 0.008]);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008], 'UUID', 'BD4H7_009');... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702353, -1.86297299994296, 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0342430714728858);... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702353, -1.86297299994296, 'EApertures', [0.008 0.008], 'ExitAngle', 0.0342430714728858);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.0076 0.0076]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00715 0.00715], 'UUID', 'QCORR_023');... + atdrift('L071', 0.048, 'EApertures', [0.00665 0.00665]);... + atsextupole('SXD3', 0.09, -753.118527609963, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'SXD3_001');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_03_2', 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444583, 'UUID', 'BQ6H7_019');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444583);... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF3_QCORROCT_19_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -440.259660850112], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'OCTF3_QCORROCT_19_QT_001');... + atdrift('L081', 0.06, 'EApertures', [0.006 0.006]);... + atsextupole('SXF3_HCOR', 0.12, 675.00095481734, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXF3_HCOR_001');... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444583, 'UUID', 'BQ6H7_021');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444583);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BPM_021');... + atsextupole('SXD3_VCOR', 0.09, -753.118527609963, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXD3_VCOR_001');... + atdrift('L071', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'QCORR_024');... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.0076 0.0076]);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008], 'UUID', 'BD4H7_011');... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702353, -1.86297299994296, 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0342430714728858);... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702352, -1.86297299994296, 'EApertures', [0.008 0.008], 'ExitAngle', 0.0342430714728858);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008]);... + atmarker('GIRDEREND', 'EApertures', [0.0078974358974359 0.0078974358974359]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00758974358974359 0.00758974358974359]);... + atmarker('GIRDERSTART', 'EApertures', [0.00733333333333333 0.00733333333333333]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00717948717948718 0.00717948717948718], 'UUID', 'QCORR_025');... + atdrift('L071', 0.048, 'EApertures', [0.00666666666666667 0.00666666666666667]);... + atsextupole('SXD3', 0.09, -753.118527609963, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'SXD3_002');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_03_3', 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444582, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444582, 'UUID', 'BQ6H7_023');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444582, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444582);... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF3_QCORROCT_20_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -440.259660850112], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'OCTF3_QCORROCT_20_QT_001');... + atdrift('L081', 0.06, 'EApertures', [0.006 0.006]);... + atsextupole('SXF33_HCOR', 0.12, 686.795497427942, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXF33_HCOR_001');... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsbend('BQ6HC7', 0.0689196396343699, -0.00144054604712974, 8.95984862959226, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00144054604712974, 'UUID', 'BQ6HC7_005');... + atsbend('BQ6HC7', 0.0689196396343699, -0.00144054604712974, 8.95984862959226, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00144054604712974);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BPM_022');... + atsextupole('SXD33_VCOR', 0.09, -764.318658802759, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXD33_VCOR_001');... + atdrift('L071C', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'QCORR_026');... + atdrift('L073C', 0.0430773209057085, 'EApertures', [0.00742857142857143 0.00742857142857143]);... + atsbend('BD3HC7', 0.01, 0.000258818071001969, -1.37551837900507, 'EApertures', [0.008 0.00786363636363636], 'UUID', 'BD3HC7_003');... + atsbend('BD4HC71', 0.03, 0.00188018240208164, -2.57765200910186, 'EApertures', [0.008 0.00765909090909091], 'EntranceAngle', 0.00982777557557598);... + atsbend('BD4HC7', 0.253621983633988, 0.0158951863469887, -2.57765200910186, 'EApertures', [0.008 0.00629545454545455]);... + atsbend('BD4HC71', 0.03, 0.00188018240208164, -2.57765200910186, 'EApertures', [0.008 0.005], 'ExitAngle', 0.00982777557557598);... + atsbend('BD5HC7', 0.0231155237960032, 0.00240516115877823, 0.0, 'EApertures', [0.008 0.005]);... + atsbend('BD6HC7', 0.0856857672699483, 0.0117810198825822, 0.0, 'EApertures', [0.008 0.005]);... + atsbend('BD6HC7', 0.0856857672699483, 0.0117810198825822, 0.0, 'EApertures', [0.008 0.005]);... + atsbend('BD5HC7', 0.0231155237960032, 0.00240516115877823, 0.0, 'EApertures', [0.008 0.005]);... + atsbend('BD4HC71', 0.03, 0.00188018240208164, -2.57765200910186, 'EApertures', [0.008 0.00518367346938775], 'EntranceAngle', 0.00982777557557598);... + atsbend('BD4HC7', 0.253621983633988, 0.0158951863469887, -2.57765200910186, 'EApertures', [0.008 0.00640816326530612]);... + atsbend('BD4HC71', 0.03, 0.00188018240208164, -2.57765200910186, 'EApertures', [0.008 0.00763265306122449], 'ExitAngle', 0.00982777557557598);... + atsbend('BD3HC7', 0.01, 0.000258818071001969, -1.37551837900507, 'EApertures', [0.008 0.00781632653061225]);... + atdrift('L073C', 0.0430773209057085, 'EApertures', [0.008 0.008]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00739393939393939 0.00739393939393939], 'UUID', 'QCORR_027');... + atdrift('L071C', 0.048, 'EApertures', [0.00678787878787879 0.00678787878787879]);... + atsextupole('SXD33', 0.09, -764.318658802759, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.007, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'SXD33_001');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_03_4', 'EApertures', [0.006 0.006]);... + atsbend('BQ6HC7', 0.0689196396343699, -0.00144054604712974, 8.95984862959226, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00144054604712974, 'UUID', 'BQ6HC7_007');... + atsbend('BQ6HC7', 0.0689196396343699, -0.00144054604712974, 8.95984862959226, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00144054604712974);... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsextupole('SXF33_HCOR', 0.12, 686.795497427942, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXF33_HCOR_002');... + atdrift('L081', 0.06, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF3_QCORROCT_21_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -440.259660850112], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'OCTF3_QCORROCT_21_QT_001');... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444582, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444582, 'UUID', 'BQ6H7_025');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444582, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444582);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BPM_023');... + atsextupole('SXD3_VCOR', 0.09, -753.118527609963, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXD3_VCOR_002');... + atdrift('L071', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'QCORR_028');... + atmarker('GIRDEREND', 'EApertures', [0.006 0.006]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00766666666666667 0.00766666666666667]);... + atmarker('GIRDERSTART', 'EApertures', [0.008 0.008]);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008], 'UUID', 'BD4H7_013');... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702352, -1.86297299994296, 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0342430714728858);... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702353, -1.86297299994296, 'EApertures', [0.008 0.008], 'ExitAngle', 0.0342430714728858);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.0076 0.0076]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00715 0.00715], 'UUID', 'QCORR_029');... + atdrift('L071', 0.048, 'EApertures', [0.00665 0.00665]);... + atsextupole('SXD3', 0.09, -753.118527609963, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'SXD3_003');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_03_5', 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444583, 'UUID', 'BQ6H7_027');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444583);... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsextupole('SXF3_HCOR', 0.12, 675.00095481734, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXF3_HCOR_002');... + atdrift('L081', 0.06, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF3_QCORROCT_22_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -440.259660850112], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'OCTF3_QCORROCT_22_QT_001');... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444583, 'UUID', 'BQ6H7_029');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444583);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BPM_024');... + atsextupole('SXD3_VCOR', 0.09, -753.118527609963, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXD3_VCOR_003');... + atdrift('L071', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'QCORR_030');... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00766666666666667 0.00766666666666667]);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008], 'UUID', 'BD4H7_015');... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702353, -1.86297299994296, 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0342430714728858);... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702353, -1.86297299994296, 'EApertures', [0.008 0.008], 'ExitAngle', 0.0342430714728858);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008]);... + atmarker('GIRDEREND', 'EApertures', [0.0078974358974359 0.0078974358974359]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00758974358974359 0.00758974358974359]);... + atmarker('GIRDERSTART', 'EApertures', [0.00733333333333333 0.00733333333333333]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00717948717948718 0.00717948717948718], 'UUID', 'QCORR_031');... + atdrift('L071', 0.048, 'EApertures', [0.00666666666666667 0.00666666666666667]);... + atsextupole('SXD32', 0.09, -729.521731325636, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'SXD32_001');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444583, 'UUID', 'BQ6H7_031');... + atmarker('CROTCH_03_6', 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444583);... + atdrift('L082', 0.0471064301693061, 'EApertures', [0.006 0.006]);... + atsextupole('SXF32_HCOR', 0.12, 782.043582880113, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXF32_HCOR_001');... + atdrift('L084', 0.048820499745398, 'EApertures', [0.006 0.006]);... + atsbend('BQ4H7', 0.0577872115264688, -0.000403189428060739, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.000403189428060739, 'UUID', 'BQ4H7_007');... + atsbend('BQ4H7', 0.0577872115264688, -0.000403189428060739, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'ExitAngle', -0.000403189428060739);... + atdrift('L085', 0.100096014361354, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF3_QCORROCT_23_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -440.259660850112], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'OCTF3_QCORROCT_23_QT_001');... + atdrift('L05', 0.06, 'EApertures', [0.006 0.006]);... + atsextupole('SXD32_VCOR', 0.09, -729.521731325636, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXD32_VCOR_001');... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BPM_025');... + atdrift('L03', 0.176061846245862, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atsbend('BD27', 0.0284984341976272, 0.00225714925227511, -1.18160211440423, 'EApertures', [0.008 0.008], 'UUID', 'BD27_007');... + atsbend('BD17', 0.0959771205127194, 0.00913608259524057, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0205293144427562);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524057, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524057, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524057, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'ExitAngle', 0.0205293144427562);... + atsbend('BD27', 0.0284984341976272, 0.00225714925227511, -1.18160211440423, 'EApertures', [0.00747368421052632 0.00747368421052632]);... + atdrift('LBD1C', 0.0395472975018047, 'EApertures', [0.00652631578947368 0.00652631578947368]);... + atdrift('D05HC', 0.00499988833315879, 'EApertures', [0.006 0.006]);... + atquadrupole('Q11', 0.0789546761676337, -12.3862992113073, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.07, 'EApertures', [0.006 0.006], 'UUID', 'Q11_003');... + atdrift('D03HC', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH9_COR', 0.06, -668.536791100884, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SH9_COR_003');... + atdrift('D022HCQ', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'QCORR_032');... + atdrift('D041HCQ', 0.108, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_03_7', 'EApertures', [0.006 0.006]);... + atquadrupole('Q10', 0.0844113331477278, 13.6568508102765, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.076, 'EApertures', [0.006 0.006], 'UUID', 'Q10_003');... + atdrift('D03HC', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH8', 0.06, -366.603155097304, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'UUID', 'SH8_003');... + atdrift('D022HCQ', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'QCORR_033');... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BPM_026');... + atdrift('D06HCQ', 0.158, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atquadrupole('Q9', 0.106409911705093, 12.8349230947647, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.098, 'EApertures', [0.006 0.006], 'UUID', 'Q9_003');... + atdrift('D032HC', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH7_COR', 0.06, 832.664084881681, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SH7_COR_003');... + atdrift('D022HC', 0.06, 'EApertures', [0.006 0.006]);... + atmultipole('OH7_QCORROCT_24_QT', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'MaxOrder', 3, 'UUID', 'OH7_QCORROCT_24_QT_001');... + atdrift('D031HC', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('Q8', 0.0786666675115942, -13.273182641893, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.07, 'EApertures', [0.006 0.006], 'UUID', 'Q8_003');... + atmarker('GIRDEREND', 'EApertures', [0.00666666666666667 0.00666666666666667]);... + atmarker('AN-C03END', 'EApertures', [0.00666666666666667 0.00666666666666667]);... + atmarker('SD04CSTART', 'EApertures', [0.00666666666666667 0.00666666666666667]);... + atmarker('VANNE_START', 'EApertures', [0.00666666666666667 0.00666666666666667]);... + atmarker('FCOR_4_1', 'UUID', 'FCOR_4_1_001');... + atmonitor('BPM', 'EApertures', [0.00666666666666667 0.00666666666666667], 'UUID', 'BPM_027');... + atdrift('SD1C_7', 0.322, 'Action', 'BPM', 'EApertures', [0.00847619047619048 0.00847619047619048]);... + atmarker('VANNE_END', 'EApertures', [0.01 0.01]);... + atdrift('SD1C_8', 0.0835458676300582, 'Action', 'BPM', 'EApertures', [0.01 0.01]);... + atmarker('ONDULEURMARK_START', 'EApertures', [0.042 0.0125]);... + atdrift('SD1C_9', 1.189, 'Action', 'BPM', 'EApertures', [0.0475 0.002 ]);... + atmarker('SD04CCENTER', 'EApertures', [0.0475 0.002 ]);... + atdrift('SD1C_10', 1.189, 'Action', 'BPM', 'EApertures', [0.0475 0.002 ]);... + atmarker('ONDULEURMARK_END', 'EApertures', [0.042 0.0125]);... + atdrift('SD1C_11', 0.0835458676300582, 'Action', 'BPM', 'EApertures', [0.01 0.01]);... + atmarker('VANNE_START', 'EApertures', [0.01 0.01]);... + atdrift('SD1C_12', 0.322, 'Action', 'BPM', 'EApertures', [0.00854545454545455 0.00854545454545455]);... + atmarker('FCOR_4_2', 'UUID', 'FCOR_4_2_001');... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BPM_028');... + atmarker('VANNE_END', 'EApertures', [0.006 0.006]);... + atmarker('SD04CEND', 'EApertures', [0.006 0.006]);... + atmarker('AN-C04START', 'EApertures', [0.006 0.006]);... + atmarker('GIRDERSTART', 'EApertures', [0.006 0.006]);... + atquadrupole('Q8', 0.0786666675115942, -13.273182641893, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.07, 'EApertures', [0.006 0.006], 'UUID', 'Q8_004');... + atdrift('D031HC', 0.048, 'EApertures', [0.006 0.006]);... + atmultipole('OH7_QCORROCT_25_QT', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'MaxOrder', 3, 'UUID', 'OH7_QCORROCT_25_QT_001');... + atdrift('D022HC', 0.06, 'EApertures', [0.006 0.006]);... + atsextupole('SH7_COR', 0.06, 832.664084881681, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SH7_COR_004');... + atdrift('D032HC', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('Q9', 0.106409911705093, 12.8349230947647, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.098, 'EApertures', [0.006 0.006], 'UUID', 'Q9_004');... + atdrift('D06HCQ', 0.158, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BPM_029');... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'QCORR_034');... + atdrift('D022HCQ', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH8', 0.06, -366.603155097304, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'UUID', 'SH8_004');... + atdrift('D03HC', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('Q10', 0.0844113331477278, 13.6568508102765, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.076, 'EApertures', [0.006 0.006], 'UUID', 'Q10_004');... + atdrift('D041HCQ', 0.108, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'QCORR_035');... + atdrift('D022HCQ', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH9_COR', 0.06, -668.536791100884, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SH9_COR_004');... + atdrift('D03HC', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('Q11', 0.0789546761676337, -12.3862992113073, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.07, 'EApertures', [0.006 0.006], 'UUID', 'Q11_004');... + atdrift('D05HC', 0.00499988833315879, 'EApertures', [0.006 0.006]);... + atdrift('LBD1C', 0.0395472975018047, 'EApertures', [0.006 0.006]);... + atsbend('BD24', 0.0284984341976272, 0.00215787898333112, -1.18160211440423, 'EApertures', [0.0076 0.0076], 'UUID', 'BD24_005');... + atsbend('BD14', 0.0959771205127194, 0.00873427426315538, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0205293144427562);... + atsbend('BD14', 0.0959771205127194, 0.00873427426315538, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD14', 0.0959771205127194, 0.00873427426315538, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD14', 0.0959771205127194, 0.00873427426315538, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'ExitAngle', 0.0205293144427562);... + atsbend('BD24', 0.0284984341976272, 0.00215787898333112, -1.18160211440423, 'EApertures', [0.00786666666666667 0.00786666666666667]);... + atdrift('L03', 0.176061846245862, 'EApertures', [0.006 0.006]);... + atsextupole('SXD41', 0.09, -735.729130725313, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0075, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'SXD41_001');... + atdrift('L04', 0.111275514615956, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_04_1', 'EApertures', [0.006 0.006]);... + atmultipole('OCTF4_QCORROCT_26_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -183.939387091905], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'OCTF4_QCORROCT_26_QT_001');... + atdrift('L084', 0.048820499745398, 'EApertures', [0.006 0.006]);... + atsbend('BQ4H4', 0.0577872115264688, -0.000385457006104762, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.000385457006104762, 'UUID', 'BQ4H4_005');... + atsbend('BQ4H4', 0.0577872115264688, -0.000385457006104762, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'ExitAngle', -0.000385457006104762);... + atdrift('L084', 0.048820499745398, 'EApertures', [0.006 0.006]);... + atsextupole('SXF41_HCOR', 0.12, 846.26087738574, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXF41_HCOR_001');... + atdrift('L082', 0.0471064301693061, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H4', 0.0689196396343699, -0.00144531683192883, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00144531683192883, 'UUID', 'BQ6H4_009');... + atsbend('BQ6H4', 0.0689196396343699, -0.00144531683192883, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00144531683192883);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BPM_030');... + atsextupole('SXD41_VCOR', 0.09, -735.729130725313, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXD41_VCOR_001');... + atdrift('L071', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'QCORR_036');... + atmarker('GIRDEREND', 'EApertures', [0.006 0.006]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.0068 0.0068]);... + atmarker('GIRDERSTART', 'EApertures', [0.008 0.008]);... + atsbend('BD4H4', 0.0393049032024916, 0.00234342379845867, -1.11997137375817, 'EApertures', [0.008 0.008], 'UUID', 'BD4H4_005');... + atsbend('BD5H4', 0.398927492296932, 0.0303936245742024, -1.86297299994296, 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0342430714728858);... + atsbend('BD5H4', 0.398927492296932, 0.0303936245742024, -1.86297299994296, 'EApertures', [0.008 0.008], 'ExitAngle', 0.0342430714728858);... + atsbend('BD4H4', 0.0393049032024916, 0.00234342379845867, -1.11997137375817, 'EApertures', [0.008 0.008]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00774358974358974 0.00774358974358974]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00728205128205128 0.00728205128205128], 'UUID', 'QCORR_037');... + atdrift('L071', 0.048, 'EApertures', [0.00676923076923077 0.00676923076923077]);... + atsextupole('SXD4', 0.09, -748.397964225485, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'SXD4_001');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_04_2', 'EApertures', [0.006 0.006]);... + atsbend('BQ6H4', 0.0689196396343699, -0.00144531683192883, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00144531683192883, 'UUID', 'BQ6H4_011');... + atsbend('BQ6H4', 0.0689196396343699, -0.00144531683192883, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00144531683192883);... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsextupole('SXF4_HCOR', 0.12, 811.758492840009, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXF4_HCOR_001');... + atdrift('L081', 0.06, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF4_QCORROCT_27_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -183.939387091905], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'OCTF4_QCORROCT_27_QT_001');... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H4', 0.0689196396343699, -0.00144531683192883, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00144531683192883, 'UUID', 'BQ6H4_013');... + atsbend('BQ6H4', 0.0689196396343699, -0.00144531683192883, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00144531683192883);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BPM_031');... + atsextupole('SXD4_VCOR', 0.09, -748.397964225485, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXD4_VCOR_001');... + atdrift('L071', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'QCORR_038');... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00666666666666667 0.00666666666666667]);... + atsbend('BD4H4', 0.0393049032024916, 0.00234342379845867, -1.11997137375817, 'EApertures', [0.008 0.008], 'UUID', 'BD4H4_007');... + atsbend('BD5H4', 0.398927492296932, 0.0303936245742024, -1.86297299994296, 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0342430714728858);... + atsbend('BD5H4', 0.398927492296932, 0.0303936245742024, -1.86297299994296, 'EApertures', [0.008 0.008], 'ExitAngle', 0.0342430714728858);... + atsbend('BD4H4', 0.0393049032024916, 0.00234342379845867, -1.11997137375817, 'EApertures', [0.008 0.008]);... + atmarker('GIRDEREND', 'EApertures', [0.008 0.008]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00775 0.00775]);... + atmarker('GIRDERSTART', 'EApertures', [0.0075 0.0075]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.0073 0.0073], 'UUID', 'QCORR_039');... + atdrift('L071', 0.048, 'EApertures', [0.0068 0.0068]);... + atsextupole('SXD42', 0.09, -652.433055715131, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'SXD42_001');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_04_3', 'EApertures', [0.006 0.006]);... + atsbend('BQ6H4', 0.0689196396343699, -0.00144531683192883, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00144531683192883, 'UUID', 'BQ6H4_015');... + atsbend('BQ6H4', 0.0689196396343699, -0.00144531683192883, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00144531683192883);... + atdrift('L082', 0.0471064301693061, 'EApertures', [0.006 0.006]);... + atsextupole('SXF42_HCOR', 0.12, 832.798385062542, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXF42_HCOR_001');... + atdrift('L084', 0.048820499745398, 'EApertures', [0.006 0.006]);... + atsbend('BQ4H4', 0.0577872115264688, -0.000385457006104762, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.000385457006104762, 'UUID', 'BQ4H4_007');... + atsbend('BQ4H4', 0.0577872115264688, -0.000385457006104762, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'ExitAngle', -0.000385457006104762);... + atdrift('L085', 0.100096014361354, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF4_QCORROCT_28_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -183.939387091905], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'OCTF4_QCORROCT_28_QT_001');... + atdrift('L05', 0.06, 'EApertures', [0.008 0.008]);... + atsextupole('SXD42_VCOR', 0.09, -652.433055715131, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.007 0.007], 'KickAngle', [0. 0.], 'UUID', 'SXD42_VCOR_001');... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BPM_032');... + atdrift('L03', 0.176061846245862, 'Action', 'BPM', 'EApertures', [0.006 0.006]);... + atsbend('BD24', 0.0284984341976272, 0.00215787898333112, -1.18160211440423, 'EApertures', [0.008 0.008], 'UUID', 'BD24_007');... + atsbend('BD14', 0.0959771205127194, 0.00873427426315538, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0205293144427562);... + atsbend('BD14', 0.0959771205127194, 0.00873427426315538, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD14', 0.0959771205127194, 0.00873427426315538, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD14', 0.0959771205127194, 0.00873427426315538, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'ExitAngle', 0.0205293144427562);... + atsbend('BD24', 0.0284984341976272, 0.00215787898333112, -1.18160211440423, 'EApertures', [0.00722222222222222 0.00722222222222222]);... + atdrift('LBD1M', 0.0395472975018047, 'EApertures', [0.00611111111111111 0.00611111111111111]);... + atdrift('D05HM', 0.0250000000000106, 'EApertures', [0.006 0.006]);... + atquadrupole('Q15', 0.0669665183225528, -13.0158117569202, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.058, 'EApertures', [0.006 0.006], 'UUID', 'Q15_001');... + atdrift('D03HM', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH12_COR', 0.06, -549.693929899786, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SH12_COR_001');... + atdrift('D022HMQ', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'QCORR_040');... + atdrift('D040HMQ', 0.108, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_04_4', 'EApertures', [0.006 0.006]);... + atquadrupole('Q14', 0.0669654375650683, 13.020316581933, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.058, 'EApertures', [0.006 0.006], 'UUID', 'Q14_001');... + atdrift('D03HM', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH11', 0.06, -342.377584906705, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'UUID', 'SH11_001');... + atdrift('D022HM', 0.06, 'EApertures', [0.006 0.006]);... + atmultipole('OH11_QCORROCT_29', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.007 0.007], 'MaxOrder', 3, 'UUID', 'OH11_QCORROCT_29_001');... + atmonitor('BPM', 'EApertures', [0.008 0.008], 'UUID', 'BPM_033');... + atdrift('D06HM', 0.13, 'Action', 'BPM', 'EApertures', [0.00733333333333333 0.00733333333333333]);... + atquadrupole('Q13', 0.105549024737856, 14.4734284467452, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.098, 'EApertures', [0.006 0.006], 'UUID', 'Q13_001');... + atdrift('D032HM', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH10_COR', 0.06, 767.610099578133, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SH10_COR_001');... + atdrift('D022HM', 0.06, 'EApertures', [0.006 0.006]);... + atmultipole('OH10_QCORROCT_30_QT', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'MaxOrder', 3, 'UUID', 'OH10_QCORROCT_30_QT_001');... + atdrift('D031HM', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('Q12', 0.0785288819736742, -13.6759084023114, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.07, 'EApertures', [0.006 0.006], 'UUID', 'Q12_001');... + atmarker('GIRDEREND', 'EApertures', [0.006 0.006]);... + atmarker('AN-C04END', 'EApertures', [0.006 0.006]);... + atmarker('SD05MCSTART', 'EApertures', [0.006 0.006]);... + atmarker('VANNE_START', 'EApertures', [0.006 0.006]);... + atmarker('FCOR_5_1', 'UUID', 'FCOR_5_1_001');... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BPM_034');... + atdrift('SD1M_1', 0.322, 'Action', 'BPM', 'EApertures', [0.006 0.006]);... + atmarker('VANNE_END', 'EApertures', [0.01 0.01]);... + atdrift('SD1M_2', 0.287381847814076, 'Action', 'BPM', 'RApertures', [-0.0045 0.004 -0.0035 0.0035]);... + atmarker('ONDULEURMARK_START', 'EApertures', [0.0045 0.0035]);... + atdrift('SD1M_3', 1.29, 'Action', 'BPM', 'EApertures', [0.0045 0.0035]);... + atmarker('SD05MCCENTER', 'EApertures', [0.0045 0.0035]);... + atdrift('SD1M_4', 1.29, 'Action', 'BPM', 'EApertures', [0.0045 0.0035]);... + atmarker('ONDULEURMARK_END', 'EApertures', [0.0045 0.0035]);... + atdrift('SD1M_5', 0.287381847814076, 'Action', 'BPM', 'EApertures', [0.0045 0.0035]);... + atmarker('VANNE_START', 'EApertures', [0.01 0.01]);... + atdrift('SD1M_6', 0.322, 'Action', 'BPM', 'EApertures', [0.006 0.006]);... + atmarker('FCOR_5_2', 'UUID', 'FCOR_5_2_001');... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BPM_035');... + atmarker('VANNE_END', 'EApertures', [0.006 0.006]);... + atmarker('SD05MCEND', 'EApertures', [0.006 0.006]);... + atmarker('AN-C05START', 'EApertures', [0.006 0.006]);... + atmarker('GIRDERSTART', 'EApertures', [0.006 0.006]);... + atquadrupole('Q12', 0.0785288819736742, -13.6759084023114, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.07, 'EApertures', [0.006 0.006], 'UUID', 'Q12_002');... + atdrift('D031HM', 0.048, 'EApertures', [0.006 0.006]);... + atmultipole('OH10_QCORROCT_31_QT', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'MaxOrder', 3, 'UUID', 'OH10_QCORROCT_31_QT_001');... + atdrift('D022HM', 0.06, 'EApertures', [0.006 0.006]);... + atsextupole('SH10_COR', 0.06, 767.610099578133, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SH10_COR_002');... + atdrift('D032HM', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('Q13', 0.105549024737856, 14.4734284467452, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.098, 'EApertures', [0.006 0.006], 'UUID', 'Q13_002');... + atdrift('D06HM', 0.13, 'Action', 'BPM', 'EApertures', [0.006 0.006]);... + atmonitor('BPM', 'EApertures', [0.00633333333333333 0.00633333333333333], 'UUID', 'BPM_036');... + atmultipole('OH11_QCORROCT_32', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'MaxOrder', 3, 'UUID', 'OH11_QCORROCT_32_001');... + atdrift('D022HM', 0.06, 'EApertures', [0.006 0.006]);... + atsextupole('SH11', 0.06, -342.377584906705, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'UUID', 'SH11_002');... + atdrift('D03HM', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('Q14', 0.0669654375650683, 13.020316581933, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.058, 'EApertures', [0.006 0.006], 'UUID', 'Q14_002');... + atdrift('D040HMQ', 0.108, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'QCORR_041');... + atdrift('D022HMQ', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH12_COR', 0.06, -549.693929899786, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SH12_COR_002');... + atdrift('D03HM', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('Q15', 0.0669665183225528, -13.0158117569202, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.058, 'EApertures', [0.006 0.006], 'UUID', 'Q15_002');... + atdrift('D05HM', 0.0250000000000106, 'EApertures', [0.006 0.006]);... + atdrift('LBD1M', 0.0395472975018047, 'EApertures', [0.006 0.006]);... + atsbend('BD27', 0.0284984341976272, 0.00225714925227518, -1.18160211440423, 'EApertures', [0.00733333333333333 0.00733333333333333], 'UUID', 'BD27_009');... + atsbend('BD17', 0.0959771205127194, 0.00913608259524086, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0205293144427562);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524086, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524086, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524086, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.00793333333333333 0.00793333333333333], 'ExitAngle', 0.0205293144427562);... + atsbend('BD27', 0.0284984341976272, 0.00225714925227518, -1.18160211440423, 'EApertures', [0.0074 0.0074]);... + atdrift('L03', 0.176061846245862, 'EApertures', [0.006 0.006]);... + atsextupole('SXD51', 0.09, -647.766469752565, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0075, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'SXD51_001');... + atdrift('L04', 0.111275514615956, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_05_1', 'EApertures', [0.006 0.006]);... + atmultipole('OCTF5_QCORROCT_33_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. 353.486738211295], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'OCTF5_QCORROCT_33_QT_001');... + atdrift('L084', 0.048820499745398, 'EApertures', [0.006 0.006]);... + atsbend('BQ4H7', 0.0577872115264688, -0.000403189428060752, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.000403189428060752, 'UUID', 'BQ4H7_009');... + atsbend('BQ4H7', 0.0577872115264688, -0.000403189428060752, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'ExitAngle', -0.000403189428060752);... + atdrift('L084', 0.048820499745398, 'EApertures', [0.006 0.006]);... + atsextupole('SXF51_HCOR', 0.12, 840.822202380127, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXF51_HCOR_001');... + atdrift('L082', 0.0471064301693061, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444587, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444587, 'UUID', 'BQ6H7_033');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444587, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444587);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BPM_037');... + atsextupole('SXD51_VCOR', 0.09, -647.766469752565, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXD51_VCOR_001');... + atdrift('L071', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'QCORR_042');... + atmarker('GIRDEREND', 'EApertures', [0.006 0.006]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00766666666666667 0.00766666666666667]);... + atmarker('GIRDERSTART', 'EApertures', [0.008 0.008]);... + atsbend('BD4H7', 0.0393049032024916, 0.0024512298026507, -1.11997137375817, 'EApertures', [0.008 0.008], 'UUID', 'BD4H7_017');... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702363, -1.86297299994296, 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0342430714728858);... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702363, -1.86297299994296, 'EApertures', [0.008 0.008], 'ExitAngle', 0.0342430714728858);... + atsbend('BD4H7', 0.0393049032024916, 0.0024512298026507, -1.11997137375817, 'EApertures', [0.008 0.008]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.0076 0.0076]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00715 0.00715], 'UUID', 'QCORR_043');... + atdrift('L071', 0.048, 'EApertures', [0.00665 0.00665]);... + atsextupole('SXD5', 0.09, -673.701263957563, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'SXD5_001');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_05_2', 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444587, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444587, 'UUID', 'BQ6H7_035');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444587, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444587);... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF5_QCORROCT_34_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. 353.486738211295], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'OCTF5_QCORROCT_34_QT_001');... + atdrift('L081', 0.06, 'EApertures', [0.006 0.006]);... + atsextupole('SXF5_HCOR', 0.12, 715.553794609745, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXF5_HCOR_001');... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444587, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444587, 'UUID', 'BQ6H7_037');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444587, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444587);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BPM_038');... + atsextupole('SXD5_VCOR', 0.09, -673.701263957563, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXD5_VCOR_001');... + atdrift('L071', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'QCORR_044');... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00766666666666667 0.00766666666666667]);... + atsbend('BD4H7', 0.0393049032024916, 0.0024512298026507, -1.11997137375817, 'EApertures', [0.008 0.008], 'UUID', 'BD4H7_019');... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702363, -1.86297299994296, 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0342430714728858);... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702352, -1.86297299994296, 'EApertures', [0.008 0.008], 'ExitAngle', 0.0342430714728858);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008]);... + atmarker('GIRDEREND', 'EApertures', [0.0078974358974359 0.0078974358974359]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00764102564102564 0.00764102564102564]);... + atmarker('GIRDERSTART', 'EApertures', [0.00733333333333333 0.00733333333333333]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00717948717948718 0.00717948717948718], 'UUID', 'QCORR_045');... + atdrift('L071', 0.048, 'EApertures', [0.00666666666666667 0.00666666666666667]);... + atsextupole('SXD5', 0.09, -673.701263957563, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'SXD5_002');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_05_3', 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444582, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444582, 'UUID', 'BQ6H7_039');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444582, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444582);... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF5_QCORROCT_35_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. 353.486738211295], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'OCTF5_QCORROCT_35_QT_001');... + atdrift('L081', 0.06, 'EApertures', [0.006 0.006]);... + atsextupole('SXF53_HCOR', 0.12, 711.229968977946, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXF53_HCOR_001');... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsbend('BQ6HC7', 0.0689196396343699, -0.00144054604712974, 8.95984862959226, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00144054604712974, 'UUID', 'BQ6HC7_009');... + atsbend('BQ6HC7', 0.0689196396343699, -0.00144054604712974, 8.95984862959226, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00144054604712974);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BPM_039');... + atsextupole('SXD53_VCOR', 0.09, -625.758067765939, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXD53_VCOR_001');... + atdrift('L071C', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'QCORR_046');... + atdrift('L073C', 0.0430773209057085, 'EApertures', [0.00714285714285714 0.00714285714285714]);... + atsbend('BD3HC7', 0.01, 0.000258818071001969, -1.37551837900507, 'EApertures', [0.008 0.00786363636363636], 'UUID', 'BD3HC7_005');... + atsbend('BD4HC71', 0.03, 0.00188018240208164, -2.57765200910186, 'EApertures', [0.008 0.00765909090909091], 'EntranceAngle', 0.00982777557557598);... + atsbend('BD4HC7', 0.253621983633988, 0.0158951863469887, -2.57765200910186, 'EApertures', [0.008 0.00629545454545455]);... + atsbend('BD4HC71', 0.03, 0.00188018240208164, -2.57765200910186, 'EApertures', [0.008 0.005], 'ExitAngle', 0.00982777557557598);... + atsbend('BD5HC7', 0.0231155237960032, 0.00240516115877823, 0.0, 'EApertures', [0.008 0.005]);... + atsbend('BD6HC7', 0.0856857672699483, 0.0117810198825822, 0.0, 'EApertures', [0.008 0.005]);... + atsbend('BD6HC7', 0.0856857672699483, 0.0117810198825822, 0.0, 'EApertures', [0.008 0.005]);... + atsbend('BD5HC7', 0.0231155237960032, 0.00240516115877823, 0.0, 'EApertures', [0.008 0.005]);... + atsbend('BD4HC71', 0.03, 0.00188018240208164, -2.57765200910186, 'EApertures', [0.008 0.00521428571428571], 'EntranceAngle', 0.00982777557557598);... + atsbend('BD4HC7', 0.253621983633988, 0.0158951863469887, -2.57765200910186, 'EApertures', [0.008 0.00643877551020408]);... + atsbend('BD4HC71', 0.03, 0.00188018240208164, -2.57765200910186, 'EApertures', [0.008 0.00766326530612245], 'ExitAngle', 0.00982777557557598);... + atsbend('BD3HC7', 0.01, 0.000258818071001969, -1.37551837900507, 'EApertures', [0.008 0.00781632653061225]);... + atdrift('L073C', 0.0430773209057085, 'EApertures', [0.00794117647058824 0.00794117647058824]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00741176470588235 0.00741176470588235], 'UUID', 'QCORR_047');... + atdrift('L071C', 0.048, 'EApertures', [0.00676470588235294 0.00676470588235294]);... + atsextupole('SXD53', 0.09, -625.758067765939, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.007, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'SXD53_001');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_05_4', 'EApertures', [0.006 0.006]);... + atsbend('BQ6HC7', 0.0689196396343699, -0.00144054604712974, 8.95984862959226, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00144054604712974, 'UUID', 'BQ6HC7_011');... + atsbend('BQ6HC7', 0.0689196396343699, -0.00144054604712974, 8.95984862959226, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00144054604712974);... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsextupole('SXF53_HCOR', 0.12, 711.229968977946, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXF53_HCOR_002');... + atdrift('L081', 0.06, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF5_QCORROCT_36_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. 353.486738211295], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'OCTF5_QCORROCT_36_QT_001');... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444582, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444582, 'UUID', 'BQ6H7_041');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444582, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444582);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BPM_040');... + atsextupole('SXD5_VCOR', 0.09, -673.701263957563, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXD5_VCOR_002');... + atdrift('L071', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'QCORR_048');... + atmarker('GIRDEREND', 'EApertures', [0.006 0.006]);... + atdrift('L073', 0.0372677805661953, 'RApertures', [-0.008 0.0045 -0.008 0.008 ]);... + atmarker('MVUV_DISCO', 'RApertures', [-0.008 0.0045 -0.008 0.008 ]);... + atmarker('GIRDERSTART', 'RApertures', [-0.008 0.0045 -0.008 0.008 ]);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008], 'UUID', 'BD4H7_021');... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702352, -1.86297299994296, 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0342430714728858);... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702363, -1.86297299994296, 'EApertures', [0.008 0.008], 'ExitAngle', 0.0342430714728858);... + atsbend('BD4H7', 0.0393049032024916, 0.0024512298026507, -1.11997137375817, 'EApertures', [0.008 0.008]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.0076 0.0076]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00715 0.00715], 'UUID', 'QCORR_049');... + atdrift('L071', 0.048, 'EApertures', [0.00665 0.00665]);... + atsextupole('SXD5', 0.09, -673.701263957563, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'SXD5_003');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_05_5', 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444587, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444587, 'UUID', 'BQ6H7_043');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444587, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444587);... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsextupole('SXF5_HCOR', 0.12, 715.553794609745, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXF5_HCOR_002');... + atdrift('L081', 0.06, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF5_QCORROCT_37_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. 353.486738211295], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'OCTF5_QCORROCT_37_QT_001');... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444587, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444587, 'UUID', 'BQ6H7_045');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444587, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444587);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BPM_041');... + atsextupole('SXD5_VCOR', 0.09, -673.701263957563, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXD5_VCOR_003');... + atdrift('L071', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'QCORR_050');... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00766666666666667 0.00766666666666667]);... + atsbend('BD4H7', 0.0393049032024916, 0.0024512298026507, -1.11997137375817, 'EApertures', [0.008 0.008], 'UUID', 'BD4H7_023');... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702363, -1.86297299994296, 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0342430714728858);... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702363, -1.86297299994296, 'EApertures', [0.008 0.008], 'ExitAngle', 0.0342430714728858);... + atsbend('BD4H7', 0.0393049032024916, 0.0024512298026507, -1.11997137375817, 'EApertures', [0.008 0.008]);... + atmarker('GIRDEREND', 'EApertures', [0.00785 0.00785]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.0076 0.0076]);... + atmarker('GIRDERSTART', 'EApertures', [0.0073 0.0073]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00715 0.00715], 'UUID', 'QCORR_051');... + atdrift('L071', 0.048, 'EApertures', [0.00665 0.00665]);... + atsextupole('SXD52', 0.09, -734.183150728341, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'SXD52_001');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444587, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444587, 'UUID', 'BQ6H7_047');... + atmarker('CROTCH_05_6', 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444587, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444587);... + atdrift('L082', 0.0471064301693061, 'EApertures', [0.006 0.006]);... + atsextupole('SXF52_HCOR', 0.12, 788.330339912278, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXF52_HCOR_001');... + atdrift('L084', 0.048820499745398, 'EApertures', [0.006 0.006]);... + atsbend('BQ4H7', 0.0577872115264688, -0.000403189428060752, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.000403189428060752, 'UUID', 'BQ4H7_011');... + atsbend('BQ4H7', 0.0577872115264688, -0.000403189428060752, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'ExitAngle', -0.000403189428060752);... + atdrift('L085', 0.100096014361354, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF5_QCORROCT_38_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. 353.486738211295], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'OCTF5_QCORROCT_38_QT_001');... + atdrift('L05', 0.06, 'EApertures', [0.006 0.006]);... + atsextupole('SXD52_VCOR', 0.09, -734.183150728341, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXD52_VCOR_001');... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BPM_042');... + atdrift('L03', 0.176061846245862, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atsbend('BD27', 0.0284984341976272, 0.00225714925227518, -1.18160211440423, 'EApertures', [0.008 0.008], 'UUID', 'BD27_011');... + atsbend('BD17', 0.0959771205127194, 0.00913608259524086, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0205293144427562);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524086, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524086, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524086, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'ExitAngle', 0.0205293144427562);... + atsbend('BD27', 0.0284984341976272, 0.00225714925227518, -1.18160211440423, 'EApertures', [0.0085 0.0085]);... + atdrift('LBD1T', 0.0395472975018047, 'EApertures', [0.0085 0.0085]);... + atdrift('D021HTQ', 0.0529998883331588, 'EApertures', [0.0085 0.0085]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.0085 0.0085], 'UUID', 'QCORR_052');... + atdrift('D022HTQ', 0.048, 'EApertures', [0.0085 0.0085]);... + atsextupole('SH15_VCOR', 0.075, -151.263624499999, 'Action', 'SxtHarm', 'BoDiameter', 0.021, 'BoGap', 0.01, 'BoLength', 0.075, 'EApertures', [0.0085 0.0085], 'KickAngle', [0. 0.], 'UUID', 'SH15_VCOR_001');... + atdrift('D05HT', 0.22, 'EApertures', [0.0085 0.0085]);... + atquadrupole('Q21', 0.118594861317721, -8.24976089349076, 'BoDiameter', 0.023, 'BoGap', 0.01, 'BoLength', 0.106, 'EApertures', [0.0085 0.0085], 'UUID', 'Q21_001');... + atmonitor('BPM', 'EApertures', [0.0085 0.0085], 'UUID', 'BPM_043');... + atdrift('D041HT', 0.18, 'Action', 'BPM', 'EApertures', [0.0085 0.0085]);... + atmarker('CROTCH_05_7', 'EApertures', [0.0085 0.0085]);... + atquadrupole('Q20', 0.122440853589187, 8.42972886822337, 'BoDiameter', 0.023, 'BoGap', 0.01, 'BoLength', 0.11, 'EApertures', [0.0085 0.0085], 'UUID', 'Q20_001');... + atdrift('D03HT', 0.048, 'EApertures', [0.0085 0.0085]);... + atsextupole('SH14_HCOR', 0.075, -335.348316276613, 'Action', 'SxtHarm', 'BoDiameter', 0.021, 'BoGap', 0.01, 'BoLength', 0.075, 'EApertures', [0.0085 0.0085], 'KickAngle', [0. 0.], 'UUID', 'SH14_HCOR_001');... + atdrift('D022HT', 0.06, 'EApertures', [0.0085 0.0085]);... + atmultipole('OH14_QCORROCT_39', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.021, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.0085 0.0085], 'MaxOrder', 3, 'UUID', 'OH14_QCORROCT_39_001');... + atdrift('D03HT', 0.048, 'EApertures', [0.0085 0.0085]);... + atquadrupole('Q19', 0.118733643867383, 8.01541064610388, 'BoDiameter', 0.023, 'BoGap', 0.01, 'BoLength', 0.106, 'EApertures', [0.0085 0.0085], 'UUID', 'Q19_001');... + atdrift('D03HT', 0.048, 'EApertures', [0.0085 0.0085]);... + atsextupole('SH13_COR', 0.075, 476.313437796132, 'Action', 'SxtHarm', 'BoDiameter', 0.021, 'BoGap', 0.01, 'BoLength', 0.075, 'EApertures', [0.0085 0.0085], 'KickAngle', [0. 0.], 'UUID', 'SH13_COR_001');... + atdrift('D022HT', 0.06, 'EApertures', [0.008 0.008]);... + atmultipole('OH13_QCORROCT_40_QT', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.021, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.008 0.008], 'MaxOrder', 3, 'UUID', 'OH13_QCORROCT_40_QT_001');... + atdrift('D03HT', 0.048, 'EApertures', [0.008 0.008]);... + atquadrupole('Q18', 0.0932053766613153, -7.2301598888015, 'BoDiameter', 0.023, 'BoGap', 0.01, 'BoLength', 0.08, 'EApertures', [0.008 0.008], 'UUID', 'Q18_001');... + atmarker('GIRDEREND', 'EApertures', [0.008 0.008]);... + atmarker('AN-C05END', 'EApertures', [0.008 0.008]);... + atmarker('SD06LSTART', 'EApertures', [0.008 0.008]);... + atmarker('VANNE_START', 'EApertures', [0.008 0.008]);... + atmarker('FCOR_6_1', 'UUID', 'FCOR_6_1_001');... + atmonitor('BPM', 'EApertures', [0.008 0.008], 'UUID', 'BPM_044');... + atdrift('SD12T_1', 0.272, 'Action', 'BPM', 'EApertures', [0.0115238095238095 0.0115238095238095]);... + atmarker('VANNE_END', 'EApertures', [0.012 0.012]);... + atdrift('SD12T_2', 0.309170347288528, 'Action', 'BPM', 'EApertures', [0.03 0.03]);... + atmarker('SYSTEME_HARMONIQUE_START', 'EApertures', [0.03 0.03]);... + atmarker('TRANSITION_RFHARM_AMONT_START', 'EApertures', [0.03 0.03]);... + atdrift('SD12T_3', 0.25, 'Action', 'BPM', 'EApertures', [0.03 0.03]);... + atmarker('TRANSITION_RFHARM_AMONT_END', 'EApertures', [0.03 0.03]);... + atmarker('VANNE_RFHARM_AMONT_START', 'EApertures', [0.03 0.03]);... + atdrift('SD12T_4', 0.082, 'Action', 'BPM', 'EApertures', [0.03 0.03]);... + atmarker('VANNE_RFHARM_AMONT_END', 'EApertures', [0.03 0.03]);... + atdrift('SD12T_5', 0.25, 'Action', 'BPM', 'EApertures', [0.03 0.03]);... + atmarker('BLOC_CAVITE_HARMONIQUE_START', 'EApertures', [0.03 0.03]);... + atdrift('SD12T_6', 0.78, 'Action', 'BPM', 'EApertures', [0.03 0.03]);... + atmarker('SD06LACENTER', 'EApertures', [0.03 0.03]);... + atrfcavity('RFHARMON', 0.0, 0.0, 1409257008.41716, 1664, 2750000000.0, 'EApertures', [0.03 0.03], 'UUID', 'RFHARMON_002');... + atdrift('SD12T_7', 0.78, 'Action', 'BPM', 'EApertures', [0.03 0.03]);... + atmarker('BLOC_CAVITE_HARMONIQUE_END', 'EApertures', [0.03 0.03]);... + atdrift('SD12T_8', 0.25, 'Action', 'BPM', 'EApertures', [0.03 0.03]);... + atmarker('VANNE_RFHARM_AVALLE_START', 'EApertures', [0.0085 0.0085]);... + atdrift('SD12T_9', 0.082, 'Action', 'BPM', 'EApertures', [0.0085 0.0085]);... + atmarker('VANNE_RFHARM_AVALLE_END', 'EApertures', [0.0085 0.0085]);... + atmarker('TRANSITION_RFHARM_AVALLE_START', 'EApertures', [0.0085 0.0085]);... + atdrift('SD12T_10', 0.3, 'Action', 'BPM', 'EApertures', [0.0085 0.0085]);... + atmarker('TRANSITION_RFHARM_AVALLE_END', 'EApertures', [0.0085 0.0085]);... + atmarker('SYSTEME_HARMONIQUE_END', 'EApertures', [0.0085 0.0085]);... + atdrift('SD12T_11', 0.259170347288528, 'Action', 'BPM', 'EApertures', [0.0085 0.0085]);... + atmarker('VANNE_START', 'EApertures', [0.0085 0.0085]);... + atdrift('SD12T_12', 0.272, 'Action', 'BPM', 'EApertures', [0.0085 0.0085]);... + atmarker('FCOR_6_2', 'UUID', 'FCOR_6_2_001');... + atmonitor('BPM', 'EApertures', [0.0085 0.0085], 'UUID', 'BPM_045');... + atmarker('VANNE_END', 'EApertures', [0.0085 0.0085]);... + atmarker('GIRDERSTART', 'EApertures', [0.008 0.008]);... + atquadrupole('Q17', 0.0929982217794612, -7.83896314384854, 'BoDiameter', 0.023, 'BoGap', 0.01, 'BoLength', 0.08, 'EApertures', [0.0085 0.0085], 'UUID', 'Q17_001');... + atdrift('D032HT', 0.048, 'EApertures', [0.0085 0.0085]);... + atmultipole('OH16_QCORROCT_41', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.021, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.0085 0.0085], 'MaxOrder', 3, 'UUID', 'OH16_QCORROCT_41_001');... + atdrift('D022HT', 0.06, 'EApertures', [0.0085 0.0085]);... + atsextupole('SH16_COR', 0.075, 0.0, 'Action', 'SxtHarm', 'BoDiameter', 0.021, 'BoGap', 0.01, 'BoLength', 0.075, 'EApertures', [0.0085 0.0085], 'KickAngle', [0. 0.], 'UUID', 'SH16_COR_001');... + atdrift('D031HT', 0.048, 'EApertures', [0.0085 0.0085]);... + atquadrupole('Q16', 0.132220666360538, 8.59624027008373, 'BoDiameter', 0.023, 'BoGap', 0.01, 'BoLength', 0.12, 'EApertures', [0.0085 0.0085], 'UUID', 'Q16_001');... + atdrift('D031HT', 0.048, 'EApertures', [0.0085 0.0085]);... + atsextupole('SH16_COR', 0.075, 0.0, 'Action', 'SxtHarm', 'BoDiameter', 0.021, 'BoGap', 0.01, 'BoLength', 0.075, 'EApertures', [0.0085 0.0085], 'KickAngle', [0. 0.], 'UUID', 'SH16_COR_002');... + atdrift('D022HT', 0.06, 'EApertures', [0.0085 0.0085]);... + atmultipole('OH16_QCORROCT_42', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.021, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.0085 0.0085], 'MaxOrder', 3, 'UUID', 'OH16_QCORROCT_42_001');... + atdrift('D032HT', 0.048, 'EApertures', [0.0085 0.0085]);... + atquadrupole('Q17', 0.0929982217794612, -7.83896314384854, 'BoDiameter', 0.023, 'BoGap', 0.01, 'BoLength', 0.08, 'EApertures', [0.0085 0.0085], 'UUID', 'Q17_002');... + atmarker('GIRDEREND', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.0085 0.0085], 'UUID', 'BPM_046');... + atmarker('VANNE_START', 'EApertures', [0.0085 0.0085]);... + atmarker('FCOR_6_3', 'UUID', 'FCOR_6_3_001');... + atdrift('SD34T_1', 0.272, 'Action', 'BPM', 'EApertures', [0.012 0.012]);... + atmarker('VANNE_END', 'EApertures', [0.012 0.012]);... + atdrift('SD34T_2', 0.01, 'Action', 'BPM', 'EApertures', [0.012 0.012]);... + atmarker('CAVITE_FBL_START', 'EApertures', [0.012 0.012]);... + atdrift('SD34T_3', 0.3, 'Action', 'BPM', 'EApertures', [0.016 0.016]);... + atmarker('CAVITE_FBL_END', 'EApertures', [0.016 0.016]);... + atmarker('ELECTRODES_RF_START', 'EApertures', [0.016 0.016]);... + atdrift('SD34T_4', 0.3, 'Action', 'BPM', 'EApertures', [0.016 0.016]);... + atmarker('ELECTRODES_RF_END', 'EApertures', [0.016 0.016]);... + atdrift('SD34T_5', 0.01, 'Action', 'BPM', 'EApertures', [0.016 0.016]);... + atmarker('ONDULEURMARK_START', 'EApertures', [0.016 0.016]);... + atdrift('SD34T_6', 0.991, 'Action', 'BPM', 'RApertures', [-0.0045 0.004 -0.0035 0.0035]);... + atmarker('SD06LB_ONDULEURCENTER', 'EApertures', [0.0045 0.0035]);... + atdrift('SD34T_7', 0.991, 'Action', 'BPM', 'EApertures', [0.0045 0.0035]);... + atmarker('ONDULEURMARK_END', 'EApertures', [0.0045 0.0035]);... + atdrift('SD34T_8', 0.01, 'Action', 'BPM', 'EApertures', [0.0045 0.0035]);... + atmarker('STRIPLINE_SECOURS_START', 'EApertures', [0.0045 0.0035]);... + atdrift('SD34T_9', 0.542, 'Action', 'BPM', 'EApertures', [0.012 0.012]);... + atmarker('STRIPLINE_SECOURS_END', 'EApertures', [0.012 0.012]);... + atdrift('SD34T_10', 0.01, 'Action', 'BPM', 'EApertures', [0.012 0.012]);... + atmarker('SHAKER_START', 'EApertures', [0.012 0.012]);... + atdrift('SD34T_11', 0.1706, 'Action', 'BPM', 'EApertures', [0.012 0.012]);... + atmarker('SHAKER_END', 'EApertures', [0.012 0.012]);... + atdrift('SD34T_12', 0.00774069457705604, 'Action', 'BPM', 'EApertures', [0.012 0.012]);... + atmarker('VANNE_START', 'EApertures', [0.012 0.012]);... + atdrift('SD34T_13', 0.272, 'Action', 'BPM', 'EApertures', [0.0115238095238095 0.0115238095238095]);... + atmarker('FCOR_6_4', 'UUID', 'FCOR_6_4_001');... + atmarker('VANNE_END', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.008 0.008], 'UUID', 'BPM_047');... + atmarker('SD06LEND', 'EApertures', [0.008 0.008]);... + atmarker('AN-C06START', 'EApertures', [0.008 0.008]);... + atmarker('GIRDERSTART', 'EApertures', [0.008 0.008]);... + atquadrupole('Q18', 0.0932053766613153, -7.2301598888015, 'BoDiameter', 0.023, 'BoGap', 0.01, 'BoLength', 0.08, 'EApertures', [0.008 0.008], 'UUID', 'Q18_002');... + atdrift('D03HT', 0.048, 'EApertures', [0.008 0.008]);... + atmultipole('OH13_QCORROCT_43_QT', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.021, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.008 0.008], 'MaxOrder', 3, 'UUID', 'OH13_QCORROCT_43_QT_001');... + atdrift('D022HT', 0.06, 'EApertures', [0.008 0.008]);... + atsextupole('SH13_COR', 0.075, 476.313437796132, 'Action', 'SxtHarm', 'BoDiameter', 0.021, 'BoGap', 0.01, 'BoLength', 0.075, 'EApertures', [0.0085 0.0085], 'KickAngle', [0. 0.], 'UUID', 'SH13_COR_002');... + atdrift('D03HT', 0.048, 'EApertures', [0.0085 0.0085]);... + atquadrupole('Q19', 0.118733643867383, 8.01541064610388, 'BoDiameter', 0.023, 'BoGap', 0.01, 'BoLength', 0.106, 'EApertures', [0.0085 0.0085], 'UUID', 'Q19_002');... + atdrift('D03HT', 0.048, 'EApertures', [0.0085 0.0085]);... + atmultipole('OH14_QCORROCT_44', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.021, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.0085 0.0085], 'MaxOrder', 3, 'UUID', 'OH14_QCORROCT_44_001');... + atdrift('D022HT', 0.06, 'EApertures', [0.0085 0.0085]);... + atsextupole('SH14_HCOR', 0.075, -335.348316276613, 'Action', 'SxtHarm', 'BoDiameter', 0.021, 'BoGap', 0.01, 'BoLength', 0.075, 'EApertures', [0.0085 0.0085], 'KickAngle', [0. 0.], 'UUID', 'SH14_HCOR_002');... + atdrift('D03HT', 0.048, 'EApertures', [0.0085 0.0085]);... + atquadrupole('Q20', 0.122440853589187, 8.42972886822337, 'BoDiameter', 0.023, 'BoGap', 0.01, 'BoLength', 0.11, 'EApertures', [0.0085 0.0085], 'UUID', 'Q20_002');... + atdrift('D041HT', 0.18, 'Action', 'BPM', 'EApertures', [0.0085 0.0085]);... + atmonitor('BPM', 'EApertures', [0.0085 0.0085], 'UUID', 'BPM_048');... + atquadrupole('Q21', 0.118594861317721, -8.24976089349076, 'BoDiameter', 0.023, 'BoGap', 0.01, 'BoLength', 0.106, 'EApertures', [0.0085 0.0085], 'UUID', 'Q21_002');... + atdrift('D05HT', 0.22, 'EApertures', [0.0085 0.0085]);... + atsextupole('SH15_VCOR', 0.075, -151.263624499999, 'Action', 'SxtHarm', 'BoDiameter', 0.021, 'BoGap', 0.01, 'BoLength', 0.075, 'EApertures', [0.0085 0.0085], 'KickAngle', [0. 0.], 'UUID', 'SH15_VCOR_002');... + atdrift('D022HTQ', 0.048, 'EApertures', [0.0085 0.0085]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.0085 0.0085], 'UUID', 'QCORR_053');... + atdrift('D021HTQ', 0.0529998883331588, 'EApertures', [0.0085 0.0085]);... + atdrift('LBD1T', 0.0395472975018047, 'EApertures', [0.0085 0.0085]);... + atsbend('BD27', 0.0284984341976272, 0.00225714925227518, -1.18160211440423, 'EApertures', [0.008 0.008], 'UUID', 'BD27_013');... + atsbend('BD17', 0.0959771205127194, 0.00913608259524086, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0205293144427562);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524086, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524086, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524086, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'ExitAngle', 0.0205293144427562);... + atsbend('BD27', 0.0284984341976272, 0.00225714925227518, -1.18160211440423, 'EApertures', [0.00772413793103448 0.00772413793103448]);... + atdrift('L03', 0.176061846245862, 'EApertures', [0.006 0.006]);... + atsextupole('SXD52', 0.09, -734.183150728341, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0075, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'SXD52_002');... + atdrift('L04', 0.111275514615956, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_06_1', 'EApertures', [0.006 0.006]);... + atmultipole('OCTF5_QCORROCT_45_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. 353.486738211295], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'OCTF5_QCORROCT_45_QT_001');... + atdrift('L084', 0.048820499745398, 'EApertures', [0.006 0.006]);... + atsbend('BQ4H7', 0.0577872115264688, -0.000403189428060752, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.000403189428060752, 'UUID', 'BQ4H7_013');... + atsbend('BQ4H7', 0.0577872115264688, -0.000403189428060752, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'ExitAngle', -0.000403189428060752);... + atdrift('L084', 0.048820499745398, 'EApertures', [0.006 0.006]);... + atsextupole('SXF52_HCOR', 0.12, 788.330339912278, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXF52_HCOR_002');... + atdrift('L082', 0.0471064301693061, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444587, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444587, 'UUID', 'BQ6H7_049');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444587, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444587);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BPM_049');... + atsextupole('SXD52_VCOR', 0.09, -734.183150728341, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXD52_VCOR_002');... + atdrift('L071', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'QCORR_054');... + atmarker('GIRDEREND', 'EApertures', [0.006 0.006]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00766666666666667 0.00766666666666667]);... + atmarker('GIRDERSTART', 'EApertures', [0.008 0.008]);... + atsbend('BD4H7', 0.0393049032024916, 0.0024512298026507, -1.11997137375817, 'EApertures', [0.008 0.008], 'UUID', 'BD4H7_025');... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702363, -1.86297299994296, 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0342430714728858);... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702363, -1.86297299994296, 'EApertures', [0.008 0.008], 'ExitAngle', 0.0342430714728858);... + atsbend('BD4H7', 0.0393049032024916, 0.0024512298026507, -1.11997137375817, 'EApertures', [0.008 0.008]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.0076 0.0076]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00715 0.00715], 'UUID', 'QCORR_055');... + atdrift('L071', 0.048, 'EApertures', [0.00665 0.00665]);... + atsextupole('SXD5', 0.09, -673.701263957563, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'SXD5_004');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_06_2', 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444587, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444587, 'UUID', 'BQ6H7_051');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444587, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444587);... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF5_QCORROCT_46_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. 353.486738211295], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'OCTF5_QCORROCT_46_QT_001');... + atdrift('L081', 0.06, 'EApertures', [0.006 0.006]);... + atsextupole('SXF5_HCOR', 0.12, 715.553794609745, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXF5_HCOR_003');... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444587, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444587, 'UUID', 'BQ6H7_053');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444587, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444587);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BPM_050');... + atsextupole('SXD5_VCOR', 0.09, -673.701263957563, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXD5_VCOR_004');... + atdrift('L071', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'QCORR_056');... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.0076 0.0076]);... + atsbend('BD4H7', 0.0393049032024916, 0.0024512298026507, -1.11997137375817, 'EApertures', [0.008 0.008], 'UUID', 'BD4H7_027');... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702363, -1.86297299994296, 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0342430714728858);... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702352, -1.86297299994296, 'EApertures', [0.008 0.008], 'ExitAngle', 0.0342430714728858);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008]);... + atmarker('GIRDEREND', 'EApertures', [0.0078974358974359 0.0078974358974359]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00758974358974359 0.00758974358974359]);... + atmarker('GIRDERSTART', 'EApertures', [0.00733333333333333 0.00733333333333333]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00717948717948718 0.00717948717948718], 'UUID', 'QCORR_057');... + atdrift('L071', 0.048, 'EApertures', [0.00666666666666667 0.00666666666666667]);... + atsextupole('SXD5', 0.09, -673.701263957563, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'SXD5_005');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_06_3', 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444582, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444582, 'UUID', 'BQ6H7_055');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444582, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444582);... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF5_QCORROCT_47_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. 353.486738211295], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'OCTF5_QCORROCT_47_QT_001');... + atdrift('L081', 0.06, 'EApertures', [0.006 0.006]);... + atsextupole('SXF53_HCOR', 0.12, 711.229968977946, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXF53_HCOR_003');... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsbend('BQ6HC7', 0.0689196396343699, -0.00144054604712974, 8.95984862959226, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00144054604712974, 'UUID', 'BQ6HC7_013');... + atsbend('BQ6HC7', 0.0689196396343699, -0.00144054604712974, 8.95984862959226, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00144054604712974);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BPM_051');... + atsextupole('SXD53_VCOR', 0.09, -625.758067765939, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXD53_VCOR_002');... + atdrift('L071C', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'QCORR_058');... + atdrift('L073C', 0.0430773209057085, 'EApertures', [0.00742857142857143 0.00742857142857143]);... + atsbend('BD3HC7', 0.01, 0.000258818071001969, -1.37551837900507, 'EApertures', [0.008 0.00786363636363636], 'UUID', 'BD3HC7_007');... + atsbend('BD4HC71', 0.03, 0.00188018240208164, -2.57765200910186, 'EApertures', [0.008 0.00765909090909091], 'EntranceAngle', 0.00982777557557598);... + atsbend('BD4HC7', 0.253621983633988, 0.0158951863469887, -2.57765200910186, 'EApertures', [0.008 0.00629545454545455]);... + atsbend('BD4HC71', 0.03, 0.00188018240208164, -2.57765200910186, 'EApertures', [0.008 0.005], 'ExitAngle', 0.00982777557557598);... + atsbend('BD5HC7', 0.0231155237960032, 0.00240516115877823, 0.0, 'EApertures', [0.008 0.005]);... + atsbend('BD6HC7', 0.0856857672699483, 0.0117810198825822, 0.0, 'EApertures', [0.008 0.005]);... + atsbend('BD6HC7', 0.0856857672699483, 0.0117810198825822, 0.0, 'EApertures', [0.008 0.005]);... + atsbend('BD5HC7', 0.0231155237960032, 0.00240516115877823, 0.0, 'EApertures', [0.008 0.005]);... + atsbend('BD4HC71', 0.03, 0.00188018240208164, -2.57765200910186, 'EApertures', [0.008 0.00518367346938775], 'EntranceAngle', 0.00982777557557598);... + atsbend('BD4HC7', 0.253621983633988, 0.0158951863469887, -2.57765200910186, 'EApertures', [0.008 0.00640816326530612]);... + atsbend('BD4HC71', 0.03, 0.00188018240208164, -2.57765200910186, 'EApertures', [0.008 0.00763265306122449], 'ExitAngle', 0.00982777557557598);... + atsbend('BD3HC7', 0.01, 0.000258818071001969, -1.37551837900507, 'EApertures', [0.008 0.00781632653061225]);... + atdrift('L073C', 0.0430773209057085, 'EApertures', [0.008 0.008]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00739393939393939 0.00739393939393939], 'UUID', 'QCORR_059');... + atdrift('L071C', 0.048, 'EApertures', [0.00678787878787879 0.00678787878787879]);... + atsextupole('SXD53', 0.09, -625.758067765939, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.007, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'SXD53_002');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_06_4', 'EApertures', [0.006 0.006]);... + atsbend('BQ6HC7', 0.0689196396343699, -0.00144054604712974, 8.95984862959226, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00144054604712974, 'UUID', 'BQ6HC7_015');... + atsbend('BQ6HC7', 0.0689196396343699, -0.00144054604712974, 8.95984862959226, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00144054604712974);... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsextupole('SXF53_HCOR', 0.12, 711.229968977946, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXF53_HCOR_004');... + atdrift('L081', 0.06, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF5_QCORROCT_48_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. 353.486738211295], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'OCTF5_QCORROCT_48_QT_001');... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444582, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444582, 'UUID', 'BQ6H7_057');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444582, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444582);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BPM_052');... + atsextupole('SXD5_VCOR', 0.09, -673.701263957563, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXD5_VCOR_005');... + atdrift('L071', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'QCORR_060');... + atmarker('GIRDEREND', 'EApertures', [0.006 0.006]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00766666666666667 0.00766666666666667]);... + atmarker('GIRDERSTART', 'EApertures', [0.008 0.008]);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008], 'UUID', 'BD4H7_029');... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702352, -1.86297299994296, 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0342430714728858);... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702363, -1.86297299994296, 'EApertures', [0.008 0.008], 'ExitAngle', 0.0342430714728858);... + atsbend('BD4H7', 0.0393049032024916, 0.0024512298026507, -1.11997137375817, 'EApertures', [0.008 0.008]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.0076 0.0076]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00715 0.00715], 'UUID', 'QCORR_061');... + atdrift('L071', 0.048, 'EApertures', [0.00665 0.00665]);... + atsextupole('SXD5', 0.09, -673.701263957563, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'SXD5_006');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_06_5', 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444587, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444587, 'UUID', 'BQ6H7_059');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444587, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444587);... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsextupole('SXF5_HCOR', 0.12, 715.553794609745, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXF5_HCOR_004');... + atdrift('L081', 0.06, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF5_QCORROCT_49_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. 353.486738211295], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'OCTF5_QCORROCT_49_QT_001');... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444587, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444587, 'UUID', 'BQ6H7_061');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444587, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444587);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BPM_053');... + atsextupole('SXD5_VCOR', 0.09, -673.701263957563, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXD5_VCOR_006');... + atdrift('L071', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'QCORR_062');... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00766666666666667 0.00766666666666667]);... + atsbend('BD4H7', 0.0393049032024916, 0.0024512298026507, -1.11997137375817, 'EApertures', [0.008 0.008], 'UUID', 'BD4H7_031');... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702363, -1.86297299994296, 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0342430714728858);... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702363, -1.86297299994296, 'EApertures', [0.008 0.008], 'ExitAngle', 0.0342430714728858);... + atsbend('BD4H7', 0.0393049032024916, 0.0024512298026507, -1.11997137375817, 'EApertures', [0.008 0.008]);... + atmarker('GIRDEREND', 'EApertures', [0.00785 0.00785]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.0076 0.0076]);... + atmarker('GIRDERSTART', 'EApertures', [0.0073 0.0073]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00715 0.00715], 'UUID', 'QCORR_063');... + atdrift('L071', 0.048, 'EApertures', [0.00665 0.00665]);... + atsextupole('SXD51', 0.09, -647.766469752565, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'SXD51_002');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444587, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444587, 'UUID', 'BQ6H7_063');... + atmarker('CROTCH_06_6', 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444587, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444587);... + atdrift('L082', 0.0471064301693061, 'EApertures', [0.006 0.006]);... + atsextupole('SXF51_HCOR', 0.12, 840.822202380127, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXF51_HCOR_002');... + atdrift('L084', 0.048820499745398, 'EApertures', [0.006 0.006]);... + atsbend('BQ4H7', 0.0577872115264688, -0.000403189428060752, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.000403189428060752, 'UUID', 'BQ4H7_015');... + atsbend('BQ4H7', 0.0577872115264688, -0.000403189428060752, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'ExitAngle', -0.000403189428060752);... + atdrift('L085', 0.100096014361354, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF5_QCORROCT_50_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. 353.486738211295], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'OCTF5_QCORROCT_50_QT_001');... + atdrift('L05', 0.06, 'EApertures', [0.006 0.006]);... + atsextupole('SXD51_VCOR', 0.09, -647.766469752565, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXD51_VCOR_002');... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BPM_054');... + atdrift('L03', 0.176061846245862, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atsbend('BD27', 0.0284984341976272, 0.00225714925227518, -1.18160211440423, 'EApertures', [0.008 0.008], 'UUID', 'BD27_015');... + atsbend('BD17', 0.0959771205127194, 0.00913608259524086, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0205293144427562);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524086, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524086, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524086, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'ExitAngle', 0.0205293144427562);... + atsbend('BD27', 0.0284984341976272, 0.00225714925227518, -1.18160211440423, 'EApertures', [0.00747368421052632 0.00747368421052632]);... + atdrift('LBD1M', 0.0395472975018047, 'EApertures', [0.00652631578947368 0.00652631578947368]);... + atdrift('D05HM', 0.0250000000000106, 'EApertures', [0.006 0.006]);... + atquadrupole('Q15', 0.0669665183225528, -13.0158117569202, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.058, 'EApertures', [0.006 0.006], 'UUID', 'Q15_003');... + atdrift('D03HM', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH12_COR', 0.06, -549.693929899786, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SH12_COR_003');... + atdrift('D022HMQ', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'QCORR_064');... + atdrift('D040HMQ', 0.108, 'EApertures', [0.006 0.006]);... + atquadrupole('Q14', 0.0669654375650683, 13.020316581933, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.058, 'EApertures', [0.006 0.006], 'UUID', 'Q14_003');... + atmarker('CROTCH_06_7', 'EApertures', [0.006 0.006]);... + atdrift('D03HM', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH11', 0.06, -342.377584906705, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'UUID', 'SH11_003');... + atdrift('D022HM', 0.06, 'EApertures', [0.006 0.006]);... + atmultipole('OH11_QCORROCT_51', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'MaxOrder', 3, 'UUID', 'OH11_QCORROCT_51_001');... + atmonitor('BPM', 'EApertures', [0.008 0.008], 'UUID', 'BPM_055');... + atdrift('D06HM', 0.13, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atquadrupole('Q13', 0.105549024737856, 14.4734284467452, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.098, 'EApertures', [0.006 0.006], 'UUID', 'Q13_003');... + atdrift('D032HM', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH10_COR', 0.06, 767.610099578133, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SH10_COR_003');... + atdrift('D022HM', 0.06, 'EApertures', [0.006 0.006]);... + atmultipole('OH10_QCORROCT_52_QT', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'MaxOrder', 3, 'UUID', 'OH10_QCORROCT_52_QT_001');... + atdrift('D031HM', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('Q12', 0.0785288819736742, -13.6759084023114, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.07, 'EApertures', [0.006 0.006], 'UUID', 'Q12_003');... + atmarker('GIRDEREND', 'EApertures', [0.00733333333333333 0.00733333333333333]);... + atmarker('AN-C06END', 'EApertures', [0.00733333333333333 0.00733333333333333]);... + atmarker('SD07MCSTART', 'EApertures', [0.00733333333333333 0.00733333333333333]);... + atmarker('VANNE_START', 'EApertures', [0.00733333333333333 0.00733333333333333]);... + atmarker('FCOR_7_1', 'UUID', 'FCOR_7_1_001');... + atmonitor('BPM', 'EApertures', [0.00733333333333333 0.00733333333333333], 'UUID', 'BPM_056');... + atdrift('SD1M_7', 0.322, 'Action', 'BPM', 'EApertures', [0.00838095238095238 0.00838095238095238]);... + atmarker('VANNE_END', 'EApertures', [0.01 0.01]);... + atdrift('SD1M_8', 0.287381847814076, 'Action', 'BPM', 'EApertures', [0.01 0.01]);... + atmarker('ONDULEURMARK_START', 'EApertures', [0.01 0.01]);... + atdrift('SD1M_9', 1.29, 'Action', 'BPM', 'EApertures', [0.0475 0.002 ]);... + atmarker('SD07MCCENTER', 'EApertures', [0.0475 0.002 ]);... + atdrift('SD1M_10', 1.29, 'Action', 'BPM', 'EApertures', [0.0475 0.002 ]);... + atmarker('ONDULEURMARK_END', 'EApertures', [0.01 0.01]);... + atdrift('SD1M_11', 0.287381847814076, 'Action', 'BPM', 'EApertures', [0.01 0.01]);... + atmarker('VANNE_START', 'EApertures', [0.01 0.01]);... + atdrift('SD1M_12', 0.322, 'Action', 'BPM', 'EApertures', [0.00838095238095238 0.00838095238095238]);... + atmarker('FCOR_7_2', 'UUID', 'FCOR_7_2_001');... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BPM_057');... + atmarker('VANNE_END', 'EApertures', [0.006 0.006]);... + atmarker('SD07MCEND', 'EApertures', [0.006 0.006]);... + atmarker('AN-C07START', 'EApertures', [0.006 0.006]);... + atmarker('GIRDERSTART', 'EApertures', [0.006 0.006]);... + atquadrupole('Q12', 0.0785288819736742, -13.6759084023114, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.07, 'EApertures', [0.006 0.006], 'UUID', 'Q12_004');... + atdrift('D031HM', 0.048, 'EApertures', [0.006 0.006]);... + atmultipole('OH10_QCORROCT_53_QT', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'MaxOrder', 3, 'UUID', 'OH10_QCORROCT_53_QT_001');... + atdrift('D022HM', 0.06, 'EApertures', [0.006 0.006]);... + atsextupole('SH10_COR', 0.06, 767.610099578133, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SH10_COR_004');... + atdrift('D032HM', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('Q13', 0.105549024737856, 14.4734284467452, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.098, 'EApertures', [0.006 0.006], 'UUID', 'Q13_004');... + atdrift('D06HM', 0.13, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.00733333333333333 0.00733333333333333], 'UUID', 'BPM_058');... + atmultipole('OH11_QCORROCT_54', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'MaxOrder', 3, 'UUID', 'OH11_QCORROCT_54_001');... + atdrift('D022HM', 0.06, 'EApertures', [0.006 0.006]);... + atsextupole('SH11', 0.06, -342.377584906705, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'UUID', 'SH11_004');... + atdrift('D03HM', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('Q14', 0.0669654375650683, 13.020316581933, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.058, 'EApertures', [0.006 0.006], 'UUID', 'Q14_004');... + atdrift('D040HMQ', 0.108, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'QCORR_065');... + atdrift('D022HMQ', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH12_COR', 0.06, -549.693929899786, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SH12_COR_004');... + atdrift('D03HM', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('Q15', 0.0669665183225528, -13.0158117569202, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.058, 'EApertures', [0.006 0.006], 'UUID', 'Q15_004');... + atdrift('D05HM', 0.0250000000000106, 'EApertures', [0.006 0.006]);... + atdrift('LBD1M', 0.0395472975018047, 'EApertures', [0.006 0.006]);... + atsbend('BD24', 0.0284984341976272, 0.00215787898333112, -1.18160211440423, 'EApertures', [0.00766666666666667 0.00766666666666667], 'UUID', 'BD24_009');... + atsbend('BD14', 0.0959771205127194, 0.00873427426315538, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0205293144427562);... + atsbend('BD14', 0.0959771205127194, 0.00873427426315538, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD14', 0.0959771205127194, 0.00873427426315538, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD14', 0.0959771205127194, 0.00873427426315538, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'ExitAngle', 0.0205293144427562);... + atsbend('BD24', 0.0284984341976272, 0.00215787898333112, -1.18160211440423, 'EApertures', [0.00786206896551724 0.00786206896551724]);... + atdrift('L03', 0.176061846245862, 'EApertures', [0.006 0.006]);... + atsextupole('SXD42', 0.09, -652.433055715131, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0075, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'SXD42_002');... + atdrift('L04', 0.111275514615956, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_07_1', 'EApertures', [0.006 0.006]);... + atmultipole('OCTF4_QCORROCT_55_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -183.939387091905], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'OCTF4_QCORROCT_55_QT_001');... + atdrift('L084', 0.048820499745398, 'EApertures', [0.006 0.006]);... + atsbend('BQ4H4', 0.0577872115264688, -0.000385457006104762, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.000385457006104762, 'UUID', 'BQ4H4_009');... + atsbend('BQ4H4', 0.0577872115264688, -0.000385457006104762, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'ExitAngle', -0.000385457006104762);... + atdrift('L084', 0.048820499745398, 'EApertures', [0.006 0.006]);... + atsextupole('SXF42_HCOR', 0.12, 832.798385062542, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXF42_HCOR_002');... + atdrift('L082', 0.0471064301693061, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H4', 0.0689196396343699, -0.00144531683192883, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00144531683192883, 'UUID', 'BQ6H4_017');... + atsbend('BQ6H4', 0.0689196396343699, -0.00144531683192883, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00144531683192883);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BPM_059');... + atsextupole('SXD42_VCOR', 0.09, -652.433055715131, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXD42_VCOR_002');... + atdrift('L071', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'QCORR_066');... + atmarker('GIRDEREND', 'EApertures', [0.006 0.006]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00666666666666667 0.00666666666666667]);... + atmarker('GIRDERSTART', 'EApertures', [0.008 0.008]);... + atsbend('BD4H4', 0.0393049032024916, 0.00234342379845867, -1.11997137375817, 'EApertures', [0.008 0.008], 'UUID', 'BD4H4_009');... + atsbend('BD5H4', 0.398927492296932, 0.0303936245742024, -1.86297299994296, 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0342430714728858);... + atsbend('BD5H4', 0.398927492296932, 0.0303936245742024, -1.86297299994296, 'EApertures', [0.008 0.008], 'ExitAngle', 0.0342430714728858);... + atsbend('BD4H4', 0.0393049032024916, 0.00234342379845867, -1.11997137375817, 'EApertures', [0.008 0.008]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00775 0.00775]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.0073 0.0073], 'UUID', 'QCORR_067');... + atdrift('L071', 0.048, 'EApertures', [0.0068 0.0068]);... + atsextupole('SXD4', 0.09, -748.397964225485, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'SXD4_002');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_07_2', 'EApertures', [0.006 0.006]);... + atsbend('BQ6H4', 0.0689196396343699, -0.00144531683192883, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00144531683192883, 'UUID', 'BQ6H4_019');... + atsbend('BQ6H4', 0.0689196396343699, -0.00144531683192883, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00144531683192883);... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF4_QCORROCT_56_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -183.939387091905], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'OCTF4_QCORROCT_56_QT_001');... + atdrift('L081', 0.06, 'EApertures', [0.006 0.006]);... + atsextupole('SXF4_HCOR', 0.12, 811.758492840009, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXF4_HCOR_002');... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H4', 0.0689196396343699, -0.00144531683192883, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00144531683192883, 'UUID', 'BQ6H4_021');... + atsbend('BQ6H4', 0.0689196396343699, -0.00144531683192883, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00144531683192883);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BPM_060');... + atsextupole('SXD4_VCOR', 0.09, -748.397964225485, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXD4_VCOR_002');... + atdrift('L071', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'QCORR_068');... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.0068 0.0068]);... + atsbend('BD4H4', 0.0393049032024916, 0.00234342379845867, -1.11997137375817, 'EApertures', [0.008 0.008], 'UUID', 'BD4H4_011');... + atsbend('BD5H4', 0.398927492296932, 0.0303936245742024, -1.86297299994296, 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0342430714728858);... + atsbend('BD5H4', 0.398927492296932, 0.0303936245742024, -1.86297299994296, 'EApertures', [0.008 0.008], 'ExitAngle', 0.0342430714728858);... + atsbend('BD4H4', 0.0393049032024916, 0.00234342379845867, -1.11997137375817, 'EApertures', [0.008 0.008]);... + atmarker('GIRDEREND', 'EApertures', [0.008 0.008]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00774358974358974 0.00774358974358974]);... + atmarker('GIRDERSTART', 'EApertures', [0.00748717948717949 0.00748717948717949]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00733333333333333 0.00733333333333333], 'UUID', 'QCORR_069');... + atdrift('L071', 0.048, 'EApertures', [0.00676923076923077 0.00676923076923077]);... + atsextupole('SXD41', 0.09, -735.729130725313, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'SXD41_002');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_07_3', 'EApertures', [0.006 0.006]);... + atsbend('BQ6H4', 0.0689196396343699, -0.00144531683192883, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00144531683192883, 'UUID', 'BQ6H4_023');... + atsbend('BQ6H4', 0.0689196396343699, -0.00144531683192883, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00144531683192883);... + atdrift('L082', 0.0471064301693061, 'EApertures', [0.006 0.006]);... + atsextupole('SXF41_HCOR', 0.12, 846.26087738574, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXF41_HCOR_002');... + atdrift('L084', 0.048820499745398, 'EApertures', [0.006 0.006]);... + atsbend('BQ4H4', 0.0577872115264688, -0.000385457006104762, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.000385457006104762, 'UUID', 'BQ4H4_011');... + atsbend('BQ4H4', 0.0577872115264688, -0.000385457006104762, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'ExitAngle', -0.000385457006104762);... + atdrift('L085', 0.100096014361354, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF4_QCORROCT_57_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -183.939387091905], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'OCTF4_QCORROCT_57_QT_001');... + atdrift('L05', 0.06, 'EApertures', [0.008 0.008]);... + atsextupole('SXD41_VCOR', 0.09, -735.729130725313, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.0068 0.0068], 'KickAngle', [0. 0.], 'UUID', 'SXD41_VCOR_002');... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BPM_061');... + atdrift('L03', 0.176061846245862, 'Action', 'BPM', 'EApertures', [0.006 0.006]);... + atsbend('BD24', 0.0284984341976272, 0.00215787898333112, -1.18160211440423, 'EApertures', [0.008 0.008], 'UUID', 'BD24_011');... + atsbend('BD14', 0.0959771205127194, 0.00873427426315538, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0205293144427562);... + atsbend('BD14', 0.0959771205127194, 0.00873427426315538, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD14', 0.0959771205127194, 0.00873427426315538, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD14', 0.0959771205127194, 0.00873427426315538, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'ExitAngle', 0.0205293144427562);... + atsbend('BD24', 0.0284984341976272, 0.00215787898333112, -1.18160211440423, 'EApertures', [0.00715789473684211 0.00715789473684211]);... + atdrift('LBD1C', 0.0395472975018047, 'EApertures', [0.00610526315789474 0.00610526315789474]);... + atdrift('D05HC', 0.00499988833315879, 'EApertures', [0.006 0.006]);... + atquadrupole('Q11', 0.0789546761676337, -12.3862992113073, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.07, 'EApertures', [0.006 0.006], 'UUID', 'Q11_005');... + atdrift('D03HC', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH9_COR', 0.06, -668.536791100884, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SH9_COR_005');... + atdrift('D022HCQ', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'QCORR_070');... + atdrift('D041HCQ', 0.108, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_07_4', 'EApertures', [0.006 0.006]);... + atquadrupole('Q10', 0.0844113331477278, 13.6568508102765, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.076, 'EApertures', [0.006 0.006], 'UUID', 'Q10_005');... + atdrift('D03HC', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH8', 0.06, -366.603155097304, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'UUID', 'SH8_005');... + atdrift('D022HCQ', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'QCORR_071');... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BPM_062');... + atdrift('D06HCQ', 0.158, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atquadrupole('Q9', 0.106409911705093, 12.8349230947647, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.098, 'EApertures', [0.006 0.006], 'UUID', 'Q9_005');... + atdrift('D032HC', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH7_COR', 0.06, 832.664084881681, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SH7_COR_005');... + atdrift('D022HC', 0.06, 'EApertures', [0.006 0.006]);... + atmultipole('OH7_QCORROCT_58_QT', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'MaxOrder', 3, 'UUID', 'OH7_QCORROCT_58_QT_001');... + atdrift('D031HC', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('Q8', 0.0786666675115942, -13.273182641893, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.07, 'EApertures', [0.006 0.006], 'UUID', 'Q8_005');... + atmarker('GIRDEREND', 'EApertures', [0.0076 0.0076]);... + atmarker('AN-C07END', 'EApertures', [0.0076 0.0076]);... + atmarker('SD08CSTART', 'EApertures', [0.0076 0.0076]);... + atmarker('VANNE_START', 'EApertures', [0.0076 0.0076]);... + atmarker('FCOR_8_1', 'UUID', 'FCOR_8_1_001');... + atmonitor('BPM', 'EApertures', [0.0076 0.0076], 'UUID', 'BPM_063');... + atdrift('SD1C_13', 0.322, 'Action', 'BPM', 'EApertures', [0.00847619047619048 0.00847619047619048]);... + atmarker('VANNE_END', 'EApertures', [0.01 0.01]);... + atdrift('SD1C_14', 0.0835458676300582, 'Action', 'BPM', 'EApertures', [0.01 0.01]);... + atmarker('ONDULEURMARK_START', 'EApertures', [0.042 0.0125]);... + atdrift('SD1C_15', 1.189, 'Action', 'BPM', 'EApertures', [0.0475 0.002 ]);... + atmarker('SD08CCENTER', 'EApertures', [0.0475 0.002 ]);... + atdrift('SD1C_16', 1.189, 'Action', 'BPM', 'EApertures', [0.0475 0.002 ]);... + atmarker('ONDULEURMARK_END', 'EApertures', [0.042 0.0125]);... + atdrift('SD1C_17', 0.0835458676300582, 'Action', 'BPM', 'EApertures', [0.01 0.01]);... + atmarker('VANNE_START', 'EApertures', [0.01 0.01]);... + atdrift('SD1C_18', 0.322, 'Action', 'BPM', 'EApertures', [0.00854545454545455 0.00854545454545455]);... + atmarker('FCOR_8_2', 'UUID', 'FCOR_8_2_001');... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BPM_064');... + atmarker('VANNE_END', 'EApertures', [0.006 0.006]);... + atmarker('SD08CEND', 'EApertures', [0.006 0.006]);... + atmarker('AN-C08START', 'EApertures', [0.006 0.006]);... + atmarker('GIRDERSTART', 'EApertures', [0.006 0.006]);... + atquadrupole('Q8', 0.0786666675115942, -13.273182641893, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.07, 'EApertures', [0.006 0.006], 'UUID', 'Q8_006');... + atdrift('D031HC', 0.048, 'EApertures', [0.006 0.006]);... + atmultipole('OH7_QCORROCT_59_QT', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'MaxOrder', 3, 'UUID', 'OH7_QCORROCT_59_QT_001');... + atdrift('D022HC', 0.06, 'EApertures', [0.006 0.006]);... + atsextupole('SH7_COR', 0.06, 832.664084881681, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SH7_COR_006');... + atdrift('D032HC', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('Q9', 0.106409911705093, 12.8349230947647, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.098, 'EApertures', [0.006 0.006], 'UUID', 'Q9_006');... + atdrift('D06HCQ', 0.158, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BPM_065');... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'QCORR_072');... + atdrift('D022HCQ', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH8', 0.06, -366.603155097304, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'UUID', 'SH8_006');... + atdrift('D03HC', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('Q10', 0.0844113331477278, 13.6568508102765, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.076, 'EApertures', [0.006 0.006], 'UUID', 'Q10_006');... + atdrift('D041HCQ', 0.108, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'QCORR_073');... + atdrift('D022HCQ', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH9_COR', 0.06, -668.536791100884, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SH9_COR_006');... + atdrift('D03HC', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('Q11', 0.0789546761676337, -12.3862992113073, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.07, 'EApertures', [0.006 0.006], 'UUID', 'Q11_006');... + atdrift('D05HC', 0.00499988833315879, 'EApertures', [0.006 0.006]);... + atdrift('LBD1C', 0.0395472975018047, 'EApertures', [0.006 0.006]);... + atsbend('BD27', 0.0284984341976272, 0.00225714925227511, -1.18160211440423, 'EApertures', [0.008 0.008], 'UUID', 'BD27_017');... + atsbend('BD17', 0.0959771205127194, 0.00913608259524057, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0205293144427562);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524057, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524057, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524057, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'ExitAngle', 0.0205293144427562);... + atsbend('BD27', 0.0284984341976272, 0.00225714925227511, -1.18160211440423, 'EApertures', [0.00766666666666667 0.00766666666666667]);... + atdrift('L03', 0.176061846245862, 'EApertures', [0.006 0.006]);... + atsextupole('SXD32', 0.09, -729.521731325636, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0075, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'SXD32_002');... + atmarker('CROTCH_08_1', 'EApertures', [0.006 0.006]);... + atdrift('L04', 0.111275514615956, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF3_QCORROCT_60_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -440.259660850112], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'OCTF3_QCORROCT_60_QT_001');... + atdrift('L084', 0.048820499745398, 'EApertures', [0.006 0.006]);... + atsbend('BQ4H7', 0.0577872115264688, -0.000403189428060739, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.000403189428060739, 'UUID', 'BQ4H7_017');... + atsbend('BQ4H7', 0.0577872115264688, -0.000403189428060739, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'ExitAngle', -0.000403189428060739);... + atdrift('L084', 0.048820499745398, 'EApertures', [0.006 0.006]);... + atsextupole('SXF32_HCOR', 0.12, 782.043582880113, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXF32_HCOR_002');... + atdrift('L082', 0.0471064301693061, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444583, 'UUID', 'BQ6H7_065');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444583);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BPM_066');... + atsextupole('SXD32_VCOR', 0.09, -729.521731325636, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXD32_VCOR_002');... + atdrift('L071', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'QCORR_074');... + atmarker('GIRDEREND', 'EApertures', [0.006 0.006]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00766666666666667 0.00766666666666667]);... + atmarker('GIRDERSTART', 'EApertures', [0.008 0.008]);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008], 'UUID', 'BD4H7_033');... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702353, -1.86297299994296, 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0342430714728858);... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702353, -1.86297299994296, 'EApertures', [0.008 0.008], 'ExitAngle', 0.0342430714728858);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.0076 0.0076]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00715 0.00715], 'UUID', 'QCORR_075');... + atdrift('L071', 0.048, 'EApertures', [0.00665 0.00665]);... + atsextupole('SXD3', 0.09, -753.118527609963, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'SXD3_004');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_08_2', 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444583, 'UUID', 'BQ6H7_067');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444583);... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF3_QCORROCT_61_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -440.259660850112], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'OCTF3_QCORROCT_61_QT_001');... + atdrift('L081', 0.06, 'EApertures', [0.006 0.006]);... + atsextupole('SXF3_HCOR', 0.12, 675.00095481734, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXF3_HCOR_003');... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444583, 'UUID', 'BQ6H7_069');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444583);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BPM_067');... + atsextupole('SXD3_VCOR', 0.09, -753.118527609963, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXD3_VCOR_004');... + atdrift('L071', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'QCORR_076');... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00766666666666667 0.00766666666666667]);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008], 'UUID', 'BD4H7_035');... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702353, -1.86297299994296, 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0342430714728858);... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702352, -1.86297299994296, 'EApertures', [0.008 0.008], 'ExitAngle', 0.0342430714728858);... + atmarker('PHC1', 'EApertures', [0.008 0.008]);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008]);... + atmarker('GIRDEREND', 'EApertures', [0.00785 0.00785]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.0076 0.0076]);... + atmarker('GIRDERSTART', 'EApertures', [0.0073 0.0073]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00715 0.00715], 'UUID', 'QCORR_077');... + atdrift('L071', 0.048, 'EApertures', [0.00665 0.00665]);... + atsextupole('SXD3', 0.09, -753.118527609963, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'SXD3_005');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_08_3', 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444582, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444582, 'UUID', 'BQ6H7_071');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444582, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444582);... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF3_QCORROCT_62_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -440.259660850112], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'OCTF3_QCORROCT_62_QT_001');... + atdrift('L081', 0.06, 'EApertures', [0.006 0.006]);... + atsextupole('SXF33_HCOR', 0.12, 686.795497427942, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXF33_HCOR_003');... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsbend('BQ6HC7', 0.0689196396343699, -0.00144054604712974, 8.95984862959226, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00144054604712974, 'UUID', 'BQ6HC7_017');... + atsbend('BQ6HC7', 0.0689196396343699, -0.00144054604712974, 8.95984862959226, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00144054604712974);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BPM_068');... + atsextupole('SXD33_VCOR', 0.09, -764.318658802759, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXD33_VCOR_002');... + atdrift('L071C', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'QCORR_078');... + atdrift('L073C', 0.0430773209057085, 'EApertures', [0.00714285714285714 0.00714285714285714]);... + atsbend('BD3HC7', 0.01, 0.000258818071001969, -1.37551837900507, 'EApertures', [0.008 0.00786363636363636], 'UUID', 'BD3HC7_009');... + atsbend('BD4HC71', 0.03, 0.00188018240208164, -2.57765200910186, 'EApertures', [0.008 0.00769318181818182], 'EntranceAngle', 0.00982777557557598);... + atsbend('BD4HC7', 0.253621983633988, 0.0158951863469887, -2.57765200910186, 'EApertures', [0.008 0.00629545454545455]);... + atsbend('BD4HC71', 0.03, 0.00188018240208164, -2.57765200910186, 'EApertures', [0.008 0.005], 'ExitAngle', 0.00982777557557598);... + atsbend('BD5HC7', 0.0231155237960032, 0.00240516115877823, 0.0, 'EApertures', [0.008 0.005]);... + atsbend('BD6HC7', 0.0856857672699483, 0.0117810198825822, 0.0, 'EApertures', [0.008 0.00425]);... + atsbend('BD6HC7', 0.0856857672699483, 0.0117810198825822, 0.0, 'EApertures', [0.008 0.0046]);... + atsbend('BD5HC7', 0.0231155237960032, 0.00240516115877823, 0.0, 'EApertures', [0.008 0.005]);... + atsbend('BD4HC71', 0.03, 0.00188018240208164, -2.57765200910186, 'EApertures', [0.008 0.00521428571428571], 'EntranceAngle', 0.00982777557557598);... + atsbend('BD4HC7', 0.253621983633988, 0.0158951863469887, -2.57765200910186, 'EApertures', [0.008 0.00643877551020408]);... + atsbend('BD4HC71', 0.03, 0.00188018240208164, -2.57765200910186, 'EApertures', [0.008 0.00766326530612245], 'ExitAngle', 0.00982777557557598);... + atsbend('BD3HC7', 0.01, 0.000258818071001969, -1.37551837900507, 'EApertures', [0.008 0.00781632653061225]);... + atdrift('L073C', 0.0430773209057085, 'EApertures', [0.00794117647058824 0.00794117647058824]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00741176470588235 0.00741176470588235], 'UUID', 'QCORR_079');... + atdrift('L071C', 0.048, 'EApertures', [0.00682352941176471 0.00682352941176471]);... + atsextupole('SXD33', 0.09, -764.318658802759, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.007, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'SXD33_002');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_08_4', 'EApertures', [0.006 0.006]);... + atsbend('BQ6HC7', 0.0689196396343699, -0.00144054604712974, 8.95984862959226, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00144054604712974, 'UUID', 'BQ6HC7_019');... + atsbend('BQ6HC7', 0.0689196396343699, -0.00144054604712974, 8.95984862959226, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00144054604712974);... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsextupole('SXF33_HCOR', 0.12, 686.795497427942, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXF33_HCOR_004');... + atdrift('L081', 0.06, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF3_QCORROCT_63_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -440.259660850112], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'OCTF3_QCORROCT_63_QT_001');... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444582, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444582, 'UUID', 'BQ6H7_073');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444582, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444582);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BPM_069');... + atsextupole('SXD3_VCOR', 0.09, -753.118527609963, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXD3_VCOR_005');... + atdrift('L071', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'QCORR_080');... + atmarker('GIRDEREND', 'EApertures', [0.006 0.006]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.008 0.008]);... + atmarker('GIRDERSTART', 'EApertures', [0.008 0.008]);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008], 'UUID', 'BD4H7_037');... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702352, -1.86297299994296, 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0342430714728858);... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702353, -1.86297299994296, 'EApertures', [0.008 0.008], 'ExitAngle', 0.0342430714728858);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00758974358974359 0.00758974358974359]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00712820512820513 0.00712820512820513], 'UUID', 'QCORR_081');... + atdrift('L071', 0.048, 'EApertures', [0.00661538461538461 0.00661538461538461]);... + atsextupole('SXD3', 0.09, -753.118527609963, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'SXD3_006');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_08_5', 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444583, 'UUID', 'BQ6H7_075');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444583);... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsextupole('SXF3_HCOR', 0.12, 675.00095481734, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXF3_HCOR_004');... + atdrift('L081', 0.06, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF3_QCORROCT_64_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -440.259660850112], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'OCTF3_QCORROCT_64_QT_001');... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444583, 'UUID', 'BQ6H7_077');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444583);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BPM_070');... + atsextupole('SXD3_VCOR', 0.09, -753.118527609963, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXD3_VCOR_006');... + atdrift('L071', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'QCORR_082');... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00766666666666667 0.00766666666666667]);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008], 'UUID', 'BD4H7_039');... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702353, -1.86297299994296, 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0342430714728858);... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702353, -1.86297299994296, 'EApertures', [0.008 0.008], 'ExitAngle', 0.0342430714728858);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008]);... + atmarker('GIRDEREND', 'EApertures', [0.00785 0.00785]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.0076 0.0076]);... + atmarker('GIRDERSTART', 'EApertures', [0.0073 0.0073]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00715 0.00715], 'UUID', 'QCORR_083');... + atdrift('L071', 0.048, 'EApertures', [0.00665 0.00665]);... + atsextupole('SXD31', 0.09, -681.129428046866, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'SXD31_002');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444583, 'UUID', 'BQ6H7_079');... + atmarker('CROTCH_08_6', 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444583);... + atdrift('L082', 0.0471064301693061, 'EApertures', [0.006 0.006]);... + atsextupole('SXF31_HCOR', 0.12, 734.143510940683, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXF31_HCOR_002');... + atdrift('L084', 0.048820499745398, 'EApertures', [0.006 0.006]);... + atsbend('BQ4H7', 0.0577872115264688, -0.000403189428060739, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.000403189428060739, 'UUID', 'BQ4H7_019');... + atsbend('BQ4H7', 0.0577872115264688, -0.000403189428060739, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'ExitAngle', -0.000403189428060739);... + atdrift('L085', 0.100096014361354, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF3_QCORROCT_65_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -440.259660850112], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'OCTF3_QCORROCT_65_QT_001');... + atdrift('L05', 0.06, 'EApertures', [0.006 0.006]);... + atsextupole('SXD31_VCOR', 0.09, -681.129428046866, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXD31_VCOR_002');... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BPM_071');... + atdrift('L03', 0.176061846245862, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atsbend('BD27', 0.0284984341976272, 0.00225714925227511, -1.18160211440423, 'EApertures', [0.008 0.008], 'UUID', 'BD27_019');... + atsbend('BD17', 0.0959771205127194, 0.00913608259524057, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0205293144427562);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524057, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524057, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524057, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'ExitAngle', 0.0205293144427562);... + atsbend('BD27', 0.0284984341976272, 0.00225714925227511, -1.18160211440423, 'EApertures', [0.00744444444444444 0.00744444444444444]);... + atdrift('LBD1C', 0.0395472975018047, 'EApertures', [0.00644444444444444 0.00644444444444444]);... + atdrift('D05HC', 0.00499988833315879, 'EApertures', [0.006 0.006]);... + atquadrupole('Q11', 0.0789546761676337, -12.3862992113073, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.07, 'EApertures', [0.006 0.006], 'UUID', 'Q11_007');... + atdrift('D03HC', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH9_COR', 0.06, -668.536791100884, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SH9_COR_007');... + atdrift('D022HCQ', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'QCORR_084');... + atdrift('D041HCQ', 0.108, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_08_7', 'EApertures', [0.006 0.006]);... + atquadrupole('Q10', 0.0844113331477278, 13.6568508102765, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.076, 'EApertures', [0.006 0.006], 'UUID', 'Q10_007');... + atdrift('D03HC', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH8', 0.06, -366.603155097304, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'UUID', 'SH8_007');... + atdrift('D022HCQ', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'QCORR_085');... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BPM_072');... + atdrift('D06HCQ', 0.158, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atquadrupole('Q9', 0.106409911705093, 12.8349230947647, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.098, 'EApertures', [0.006 0.006], 'UUID', 'Q9_007');... + atdrift('D032HC', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH7_COR', 0.06, 832.664084881681, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SH7_COR_007');... + atdrift('D022HC', 0.06, 'EApertures', [0.006 0.006]);... + atmultipole('OH7_QCORROCT_66_QT', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'MaxOrder', 3, 'UUID', 'OH7_QCORROCT_66_QT_001');... + atdrift('D031HC', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('Q8', 0.0786666675115942, -13.273182641893, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.07, 'EApertures', [0.006 0.006], 'UUID', 'Q8_007');... + atmarker('GIRDEREND', 'EApertures', [0.0064 0.0064]);... + atmarker('AN-C08END', 'EApertures', [0.0064 0.0064]);... + atmarker('SD09CSTART', 'EApertures', [0.0064 0.0064]);... + atmarker('VANNE_START', 'EApertures', [0.0064 0.0064]);... + atmarker('FCOR_9_1', 'UUID', 'FCOR_9_1_001');... + atmonitor('BPM', 'EApertures', [0.0064 0.0064], 'UUID', 'BPM_073');... + atdrift('SD1C_19', 0.322, 'Action', 'BPM', 'EApertures', [0.00847619047619048 0.00847619047619048]);... + atmarker('VANNE_END', 'EApertures', [0.01 0.01]);... + atdrift('SD1C_20', 0.0835458676300582, 'Action', 'BPM', 'EApertures', [0.01 0.01]);... + atmarker('ONDULEURMARK_START', 'EApertures', [0.042 0.0125]);... + atdrift('SD1C_21', 1.189, 'Action', 'BPM', 'EApertures', [0.0475 0.002 ]);... + atmarker('SD09CCENTER', 'EApertures', [0.0475 0.002 ]);... + atdrift('SD1C_22', 1.189, 'Action', 'BPM', 'EApertures', [0.0475 0.002 ]);... + atmarker('ONDULEURMARK_END', 'EApertures', [0.042 0.0125]);... + atdrift('SD1C_23', 0.0835458676300582, 'Action', 'BPM', 'EApertures', [0.01 0.01]);... + atmarker('VANNE_START', 'EApertures', [0.01 0.01]);... + atdrift('SD1C_24', 0.322, 'Action', 'BPM', 'EApertures', [0.00847619047619048 0.00847619047619048]);... + atmarker('FCOR_9_2', 'UUID', 'FCOR_9_2_001');... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BPM_074');... + atmarker('VANNE_END', 'EApertures', [0.006 0.006]);... + atmarker('SD09CEND', 'EApertures', [0.006 0.006]);... + atmarker('AN-C09START', 'EApertures', [0.006 0.006]);... + atmarker('GIRDERSTART', 'EApertures', [0.006 0.006]);... + atquadrupole('Q8', 0.0786666675115942, -13.273182641893, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.07, 'EApertures', [0.006 0.006], 'UUID', 'Q8_008');... + atdrift('D031HC', 0.048, 'EApertures', [0.006 0.006]);... + atmultipole('OH7_QCORROCT_67_QT', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'MaxOrder', 3, 'UUID', 'OH7_QCORROCT_67_QT_001');... + atdrift('D022HC', 0.06, 'EApertures', [0.006 0.006]);... + atsextupole('SH7_COR', 0.06, 832.664084881681, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SH7_COR_008');... + atdrift('D032HC', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('Q9', 0.106409911705093, 12.8349230947647, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.098, 'EApertures', [0.006 0.006], 'UUID', 'Q9_008');... + atdrift('D06HCQ', 0.158, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BPM_075');... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'QCORR_086');... + atdrift('D022HCQ', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH8', 0.06, -366.603155097304, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'UUID', 'SH8_008');... + atdrift('D03HC', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('Q10', 0.0844113331477278, 13.6568508102765, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.076, 'EApertures', [0.006 0.006], 'UUID', 'Q10_008');... + atdrift('D041HCQ', 0.108, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'QCORR_087');... + atdrift('D022HCQ', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH9_COR', 0.06, -668.536791100884, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SH9_COR_008');... + atdrift('D03HC', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('Q11', 0.0789546761676337, -12.3862992113073, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.07, 'EApertures', [0.006 0.006], 'UUID', 'Q11_008');... + atdrift('D05HC', 0.00499988833315879, 'EApertures', [0.006 0.006]);... + atdrift('LBD1C', 0.0395472975018047, 'EApertures', [0.006 0.006]);... + atsbend('BD24', 0.0284984341976272, 0.00215787898333112, -1.18160211440423, 'EApertures', [0.0076 0.0076], 'UUID', 'BD24_013');... + atsbend('BD14', 0.0959771205127194, 0.00873427426315538, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0205293144427562);... + atsbend('BD14', 0.0959771205127194, 0.00873427426315538, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD14', 0.0959771205127194, 0.00873427426315538, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD14', 0.0959771205127194, 0.00873427426315538, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'ExitAngle', 0.0205293144427562);... + atsbend('BD24', 0.0284984341976272, 0.00215787898333112, -1.18160211440423, 'EApertures', [0.00786206896551724 0.00786206896551724]);... + atdrift('L03', 0.176061846245862, 'EApertures', [0.006 0.006]);... + atsextupole('SXD22', 0.09, -636.039531358256, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0075, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'SXD22_002');... + atdrift('L04', 0.111275514615956, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_09_1', 'EApertures', [0.006 0.006]);... + atmultipole('OCTF2_QCORROCT_68_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -262.360558705412], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'OCTF2_QCORROCT_68_QT_001');... + atdrift('L084', 0.048820499745398, 'EApertures', [0.006 0.006]);... + atsbend('BQ4H4', 0.0577872115264688, -0.000385457006104762, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.000385457006104762, 'UUID', 'BQ4H4_013');... + atsbend('BQ4H4', 0.0577872115264688, -0.000385457006104762, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'ExitAngle', -0.000385457006104762);... + atdrift('L084', 0.048820499745398, 'EApertures', [0.006 0.006]);... + atsextupole('SXF22_HCOR', 0.12, 843.464304725645, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXF22_HCOR_002');... + atdrift('L082', 0.0471064301693061, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H4', 0.0689196396343699, -0.00144531683192883, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00144531683192883, 'UUID', 'BQ6H4_025');... + atsbend('BQ6H4', 0.0689196396343699, -0.00144531683192883, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00144531683192883);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BPM_076');... + atsextupole('SXD22_VCOR', 0.09, -636.039531358256, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXD22_VCOR_002');... + atdrift('L071', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'QCORR_088');... + atmarker('GIRDEREND', 'EApertures', [0.006 0.006]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.0064 0.0064]);... + atmarker('GIRDERSTART', 'EApertures', [0.008 0.008]);... + atsbend('BD4H4', 0.0393049032024916, 0.00234342379845867, -1.11997137375817, 'EApertures', [0.008 0.008], 'UUID', 'BD4H4_013');... + atsbend('BD5H4', 0.398927492296932, 0.0303936245742024, -1.86297299994296, 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0342430714728858);... + atsbend('BD5H4', 0.398927492296932, 0.0303936245742024, -1.86297299994296, 'EApertures', [0.008 0.008], 'ExitAngle', 0.0342430714728858);... + atsbend('BD4H4', 0.0393049032024916, 0.00234342379845867, -1.11997137375817, 'EApertures', [0.008 0.008]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00774358974358974 0.00774358974358974]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00733333333333333 0.00733333333333333], 'UUID', 'QCORR_089');... + atdrift('L071', 0.048, 'EApertures', [0.00682051282051282 0.00682051282051282]);... + atsextupole('SXD2', 0.09, -617.904418360321, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'SXD2_002');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_09_2', 'EApertures', [0.006 0.006]);... + atsbend('BQ6H4', 0.0689196396343699, -0.00144531683192883, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00144531683192883, 'UUID', 'BQ6H4_027');... + atsbend('BQ6H4', 0.0689196396343699, -0.00144531683192883, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00144531683192883);... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsextupole('SXF2_HCOR', 0.12, 741.112250869933, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXF2_HCOR_002');... + atdrift('L081', 0.06, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF2_QCORROCT_69_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -262.360558705412], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'OCTF2_QCORROCT_69_QT_001');... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H4', 0.0689196396343699, -0.00144531683192883, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00144531683192883, 'UUID', 'BQ6H4_029');... + atsbend('BQ6H4', 0.0689196396343699, -0.00144531683192883, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00144531683192883);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BPM_077');... + atsextupole('SXD2_VCOR', 0.09, -617.904418360321, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXD2_VCOR_002');... + atdrift('L071', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'QCORR_090');... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.0068 0.0068]);... + atsbend('BD4H4', 0.0393049032024916, 0.00234342379845867, -1.11997137375817, 'EApertures', [0.008 0.008], 'UUID', 'BD4H4_015');... + atsbend('BD5H4', 0.398927492296932, 0.0303936245742024, -1.86297299994296, 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0342430714728858);... + atsbend('BD5H4', 0.398927492296932, 0.0303936245742024, -1.86297299994296, 'EApertures', [0.008 0.008], 'ExitAngle', 0.0342430714728858);... + atsbend('BD4H4', 0.0393049032024916, 0.00234342379845867, -1.11997137375817, 'EApertures', [0.008 0.008]);... + atmarker('GIRDEREND', 'EApertures', [0.008 0.008]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00774358974358974 0.00774358974358974]);... + atmarker('GIRDERSTART', 'EApertures', [0.00748717948717949 0.00748717948717949]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00728205128205128 0.00728205128205128], 'UUID', 'QCORR_091');... + atdrift('L071', 0.048, 'EApertures', [0.00676923076923077 0.00676923076923077]);... + atsextupole('SXD21', 0.09, -655.116114720116, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'SXD21_002');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_09_3', 'EApertures', [0.006 0.006]);... + atsbend('BQ6H4', 0.0689196396343699, -0.00144531683192883, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00144531683192883, 'UUID', 'BQ6H4_031');... + atsbend('BQ6H4', 0.0689196396343699, -0.00144531683192883, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00144531683192883);... + atdrift('L082', 0.0471064301693061, 'EApertures', [0.006 0.006]);... + atsextupole('SXF21_HCOR', 0.12, 719.09699842571, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXF21_HCOR_002');... + atdrift('L084', 0.048820499745398, 'EApertures', [0.006 0.006]);... + atsbend('BQ4H4', 0.0577872115264688, -0.000385457006104762, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.000385457006104762, 'UUID', 'BQ4H4_015');... + atsbend('BQ4H4', 0.0577872115264688, -0.000385457006104762, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'ExitAngle', -0.000385457006104762);... + atdrift('L085', 0.100096014361354, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF2_QCORROCT_70_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -262.360558705412], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'OCTF2_QCORROCT_70_QT_001');... + atdrift('L05', 0.06, 'EApertures', [0.008 0.008]);... + atsextupole('SXD21_VCOR', 0.09, -655.116114720116, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.0068 0.0068], 'KickAngle', [0. 0.], 'UUID', 'SXD21_VCOR_002');... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BPM_078');... + atdrift('L03', 0.176061846245862, 'Action', 'BPM', 'EApertures', [0.006 0.006]);... + atsbend('BD24', 0.0284984341976272, 0.00215787898333112, -1.18160211440423, 'EApertures', [0.008 0.008], 'UUID', 'BD24_015');... + atsbend('BD14', 0.0959771205127194, 0.00873427426315538, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0205293144427562);... + atsbend('BD14', 0.0959771205127194, 0.00873427426315538, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD14', 0.0959771205127194, 0.00873427426315538, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD14', 0.0959771205127194, 0.00873427426315538, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'ExitAngle', 0.0205293144427562);... + atsbend('BD24', 0.0284984341976272, 0.00215787898333112, -1.18160211440423, 'EApertures', [0.00722222222222222 0.00722222222222222]);... + atdrift('LBD1M1', 0.0395472975018047, 'EApertures', [0.00611111111111111 0.00611111111111111]);... + atdrift('D05HM1', 0.05, 'EApertures', [0.006 0.006]);... + atquadrupole('Q7', 0.0672457254622836, -11.8140171585779, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.058, 'EApertures', [0.006 0.006], 'UUID', 'Q7_003');... + atdrift('D03HM1', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH6_COR', 0.06, -324.475203415205, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SH6_COR_003');... + atdrift('D022HM1Q', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'QCORR_092');... + atdrift('D040HM1Q', 0.128, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_09_4', 'EApertures', [0.006 0.006]);... + atquadrupole('Q6', 0.067209291601852, 11.9784555023184, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.058, 'EApertures', [0.006 0.006], 'UUID', 'Q6_003');... + atdrift('D03HM1', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH5', 0.06, -514.413524183539, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'UUID', 'SH5_003');... + atdrift('D022HM1', 0.06, 'EApertures', [0.006 0.006]);... + atmultipole('OH5_QCORROCT_71', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.008 0.008], 'MaxOrder', 3, 'UUID', 'OH5_QCORROCT_71_001');... + atmonitor('BPM', 'EApertures', [0.008 0.008], 'UUID', 'BPM_079');... + atdrift('D06HM1', 0.13, 'Action', 'BPM', 'EApertures', [0.006 0.006]);... + atquadrupole('Q5', 0.105773394525209, 14.0793630884634, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.098, 'EApertures', [0.006 0.006], 'UUID', 'Q5_003');... + atdrift('D032HM1', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH4_COR', 0.06, 682.544409709839, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SH4_COR_003');... + atdrift('D022HM1', 0.06, 'EApertures', [0.006 0.006]);... + atmultipole('OH4_QCORROCT_72_QT', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'MaxOrder', 3, 'UUID', 'OH4_QCORROCT_72_QT_001');... + atdrift('D031HM1', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('Q4', 0.0785476107439048, -13.6216098775293, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.07, 'EApertures', [0.006 0.006], 'UUID', 'Q4_003');... + atmarker('GIRDEREND', 'EApertures', [0.006 0.006]);... + atmarker('AN-C09END', 'EApertures', [0.006 0.006]);... + atmarker('SD10MLSTART', 'EApertures', [0.006 0.006]);... + atmarker('VANNE_START', 'EApertures', [0.006 0.006]);... + atmarker('FCOR_10_1', 'UUID', 'FCOR_10_1_001');... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BPM_080');... + atdrift('SD1M1_13', 0.322, 'Action', 'BPM', 'EApertures', [0.00876190476190476 0.00876190476190476]);... + atmarker('VANNE_END', 'EApertures', [0.01 0.01]);... + atdrift('SD1M1_14', 0.01, 'Action', 'BPM', 'EApertures', [0.01 0.01]);... + atmarker('ELECTRODES_START', 'EApertures', [0.01 0.01]);... + atdrift('SD1M1_15', 0.3, 'Action', 'BPM', 'EApertures', [0.01 0.01]);... + atmarker('ELECTRODES_END', 'EApertures', [0.01 0.01]);... + atdrift('SD1M1_16', 0.209986392245071, 'Action', 'BPM', 'RApertures', [-0.00895714285714286 0.00828571428571429 -0.00895714285714286 0.00895714285714286]);... + atmarker('ONDULEURMARK_START', 'RApertures', [-0.00878333333333333 0.008 -0.00878333333333333 0.00878333333333333]);... + atdrift('SD1M1_17', 1.29, 'Action', 'BPM', 'RApertures', [-0.0045 0.004 -0.0035 0.0035]);... + atmarker('SD10MLCENTER', 'EApertures', [0.0045 0.0035]);... + atdrift('SD1M1_18', 1.29, 'Action', 'BPM', 'EApertures', [0.0045 0.0035]);... + atmarker('ONDULEURMARK_END', 'EApertures', [0.00902941176470588 0.00885294117647059]);... + atdrift('SD1M1_19', 0.01, 'Action', 'BPM', 'EApertures', [0.00935294117647059 0.00923529411764706]);... + atmarker('STRIPLINE_FBT_SPARE_START', 'EApertures', [0.00951470588235294 0.00942647058823529]);... + atdrift('SD1M1_20', 0.45, 'Action', 'BPM', 'EApertures', [0.01 0.01]);... + atmarker('STRIPLINE_FBT_SPARE_END', 'EApertures', [0.01 0.01]);... + atdrift('SD1M1_21', 0.0599863922450715, 'Action', 'BPM', 'EApertures', [0.01 0.01]);... + atmarker('VANNE_START', 'EApertures', [0.01 0.01]);... + atdrift('SD1M1_22', 0.322, 'Action', 'BPM', 'EApertures', [0.00872727272727273 0.00872727272727273]);... + atmarker('FCOR_10_2', 'UUID', 'FCOR_10_2_001');... + atmonitor('BPM', 'EApertures', [0.008 0.008], 'UUID', 'BPM_081');... + atmarker('VANNE_END', 'EApertures', [0.008 0.008]);... + atmarker('SD10MLEND', 'EApertures', [0.008 0.008]);... + atmarker('AN-C10START', 'EApertures', [0.008 0.008]);... + atmarker('GIRDERSTART', 'EApertures', [0.008 0.008]);... + atquadrupole('Q4', 0.0785476107439048, -13.6216098775293, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.07, 'EApertures', [0.006 0.006], 'UUID', 'Q4_004');... + atdrift('D031HM1', 0.048, 'EApertures', [0.006 0.006]);... + atmultipole('OH4_QCORROCT_73_QT', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'MaxOrder', 3, 'UUID', 'OH4_QCORROCT_73_QT_001');... + atdrift('D022HM1', 0.06, 'EApertures', [0.006 0.006]);... + atsextupole('SH4_COR', 0.06, 682.544409709839, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SH4_COR_004');... + atdrift('D032HM1', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('Q5', 0.105773394525209, 14.0793630884634, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.098, 'EApertures', [0.006 0.006], 'UUID', 'Q5_004');... + atdrift('D06HM1', 0.13, 'Action', 'BPM', 'EApertures', [0.00666666666666667 0.00666666666666667]);... + atmonitor('BPM', 'EApertures', [0.008 0.008], 'UUID', 'BPM_082');... + atmultipole('OH5_QCORROCT_74', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.008 0.008], 'MaxOrder', 3, 'UUID', 'OH5_QCORROCT_74_001');... + atdrift('D022HM1', 0.06, 'EApertures', [0.006 0.006]);... + atsextupole('SH5', 0.06, -514.413524183539, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'UUID', 'SH5_004');... + atdrift('D03HM1', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('Q6', 0.067209291601852, 11.9784555023184, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.058, 'EApertures', [0.006 0.006], 'UUID', 'Q6_004');... + atdrift('D040HM1Q', 0.128, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'QCORR_093');... + atdrift('D022HM1Q', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH6_COR', 0.06, -324.475203415205, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SH6_COR_004');... + atdrift('D03HM1', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('Q7', 0.0672457254622836, -11.8140171585779, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.058, 'EApertures', [0.006 0.006], 'UUID', 'Q7_004');... + atdrift('D05HM1', 0.05, 'EApertures', [0.006 0.006]);... + atdrift('LBD1M1', 0.0395472975018047, 'EApertures', [0.006 0.006]);... + atsbend('BD27', 0.0284984341976272, 0.00225714925227511, -1.18160211440423, 'EApertures', [0.008 0.008], 'UUID', 'BD27_021');... + atsbend('BD17', 0.0959771205127194, 0.00913608259524057, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0205293144427562);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524057, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524057, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524057, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'ExitAngle', 0.0205293144427562);... + atsbend('BD27', 0.0284984341976272, 0.00225714925227511, -1.18160211440423, 'EApertures', [0.00766666666666667 0.00766666666666667]);... + atdrift('L03', 0.176061846245862, 'EApertures', [0.006 0.006]);... + atsextupole('SXD12', 0.09, -749.191327132338, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0075, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'SXD12_002');... + atdrift('L04', 0.111275514615956, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_10_1', 'EApertures', [0.006 0.006]);... + atmultipole('OCTF1_QCORROCT_75_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -800.842486671932], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'OCTF1_QCORROCT_75_QT_001');... + atdrift('L084', 0.048820499745398, 'EApertures', [0.006 0.006]);... + atsbend('BQ4H7', 0.0577872115264688, -0.000403189428060739, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.000403189428060739, 'UUID', 'BQ4H7_021');... + atsbend('BQ4H7', 0.0577872115264688, -0.000403189428060739, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'ExitAngle', -0.000403189428060739);... + atdrift('L084', 0.048820499745398, 'EApertures', [0.006 0.006]);... + atsextupole('SXF12_HCOR', 0.12, 860.065976124029, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXF12_HCOR_002');... + atdrift('L082', 0.0471064301693061, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444583, 'UUID', 'BQ6H7_081');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444583);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BPM_083');... + atsextupole('SXD12_VCOR', 0.09, -749.191327132338, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXD12_VCOR_002');... + atdrift('L071', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'QCORR_094');... + atmarker('GIRDEREND', 'EApertures', [0.006 0.006]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00766666666666667 0.00766666666666667]);... + atmarker('GIRDERSTART', 'EApertures', [0.008 0.008]);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008], 'UUID', 'BD4H7_041');... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702353, -1.86297299994296, 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0342430714728858);... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702353, -1.86297299994296, 'EApertures', [0.008 0.008], 'ExitAngle', 0.0342430714728858);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.0076 0.0076]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00715 0.00715], 'UUID', 'QCORR_095');... + atdrift('L071', 0.048, 'EApertures', [0.00665 0.00665]);... + atsextupole('SXD1', 0.09, -688.075994596801, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'SXD1_004');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_10_2', 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444583, 'UUID', 'BQ6H7_083');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444583);... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF1_QCORROCT_76_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -800.842486671932], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'OCTF1_QCORROCT_76_QT_001');... + atdrift('L081', 0.06, 'EApertures', [0.006 0.006]);... + atsextupole('SXF1_HCOR', 0.12, 781.382308964691, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXF1_HCOR_003');... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444583, 'UUID', 'BQ6H7_085');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444583);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BPM_084');... + atsextupole('SXD1_VCOR', 0.09, -688.075994596801, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXD1_VCOR_004');... + atdrift('L071', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'QCORR_096');... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00766666666666667 0.00766666666666667]);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008], 'UUID', 'BD4H7_043');... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702353, -1.86297299994296, 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0342430714728858);... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702352, -1.86297299994296, 'EApertures', [0.008 0.008], 'ExitAngle', 0.0342430714728858);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008]);... + atmarker('GIRDEREND', 'EApertures', [0.0078974358974359 0.0078974358974359]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00764102564102564 0.00764102564102564]);... + atmarker('GIRDERSTART', 'EApertures', [0.00733333333333333 0.00733333333333333]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00717948717948718 0.00717948717948718], 'UUID', 'QCORR_097');... + atdrift('L071', 0.048, 'EApertures', [0.00666666666666667 0.00666666666666667]);... + atsextupole('SXD1', 0.09, -688.075994596801, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'SXD1_005');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_10_3', 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444582, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444582, 'UUID', 'BQ6H7_087');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444582, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444582);... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF1_QCORROCT_77_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -800.842486671932], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'OCTF1_QCORROCT_77_QT_001');... + atdrift('L081', 0.06, 'EApertures', [0.006 0.006]);... + atsextupole('SXF13_HCOR', 0.12, 750.901805779491, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXF13_HCOR_003');... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsbend('BQ6HC7', 0.0689196396343699, -0.00144054604712974, 8.95984862959226, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00144054604712974, 'UUID', 'BQ6HC7_021');... + atsbend('BQ6HC7', 0.0689196396343699, -0.00144054604712974, 8.95984862959226, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00144054604712974);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BPM_085');... + atsextupole('SXD13_VCOR', 0.09, -689.724579569546, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXD13_VCOR_002');... + atdrift('L071C', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'QCORR_098');... + atdrift('L073C', 0.0430773209057085, 'EApertures', [0.00714285714285714 0.00714285714285714]);... + atsbend('BD3HC7', 0.01, 0.000258818071001969, -1.37551837900507, 'EApertures', [0.008 0.00786363636363636], 'UUID', 'BD3HC7_011');... + atsbend('BD4HC71', 0.03, 0.00188018240208164, -2.57765200910186, 'EApertures', [0.008 0.00765909090909091], 'EntranceAngle', 0.00982777557557598);... + atsbend('BD4HC7', 0.253621983633988, 0.0158951863469887, -2.57765200910186, 'EApertures', [0.008 0.00629545454545455]);... + atsbend('BD4HC71', 0.03, 0.00188018240208164, -2.57765200910186, 'EApertures', [0.008 0.005], 'ExitAngle', 0.00982777557557598);... + atsbend('BD5HC7', 0.0231155237960032, 0.00240516115877823, 0.0, 'EApertures', [0.008 0.005]);... + atsbend('BD6HC7', 0.0856857672699483, 0.0117810198825822, 0.0, 'EApertures', [0.008 0.005]);... + atsbend('BD6HC7', 0.0856857672699483, 0.0117810198825822, 0.0, 'EApertures', [0.008 0.005]);... + atsbend('BD5HC7', 0.0231155237960032, 0.00240516115877823, 0.0, 'EApertures', [0.008 0.005]);... + atsbend('BD4HC71', 0.03, 0.00188018240208164, -2.57765200910186, 'EApertures', [0.008 0.00521428571428571], 'EntranceAngle', 0.00982777557557598);... + atsbend('BD4HC7', 0.253621983633988, 0.0158951863469887, -2.57765200910186, 'EApertures', [0.008 0.00643877551020408]);... + atsbend('BD4HC71', 0.03, 0.00188018240208164, -2.57765200910186, 'EApertures', [0.008 0.00766326530612245], 'ExitAngle', 0.00982777557557598);... + atsbend('BD3HC7', 0.01, 0.000258818071001969, -1.37551837900507, 'EApertures', [0.008 0.00781632653061225]);... + atdrift('L073C', 0.0430773209057085, 'EApertures', [0.00794117647058824 0.00794117647058824]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00741176470588235 0.00741176470588235], 'UUID', 'QCORR_099');... + atdrift('L071C', 0.048, 'EApertures', [0.00676470588235294 0.00676470588235294]);... + atsextupole('SXD13', 0.09, -689.724579569546, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.007, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'SXD13_002');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atsbend('BQ6HC7', 0.0689196396343699, -0.00144054604712974, 8.95984862959226, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00144054604712974, 'UUID', 'BQ6HC7_023');... + atmarker('CROTCH_10_4', 'EApertures', [0.006 0.006]);... + atsbend('BQ6HC7', 0.0689196396343699, -0.00144054604712974, 8.95984862959226, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00144054604712974);... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsextupole('SXF13_HCOR', 0.12, 750.901805779491, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXF13_HCOR_004');... + atdrift('L081', 0.06, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF1_QCORROCT_78_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -800.842486671932], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'OCTF1_QCORROCT_78_QT_001');... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444582, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444582, 'UUID', 'BQ6H7_089');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444582, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444582);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BPM_086');... + atsextupole('SXD1_VCOR', 0.09, -688.075994596801, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXD1_VCOR_005');... + atdrift('L071', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'QCORR_100');... + atmarker('GIRDEREND', 'EApertures', [0.006 0.006]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.008 0.008]);... + atmarker('GIRDERSTART', 'EApertures', [0.008 0.008]);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008], 'UUID', 'BD4H7_045');... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702352, -1.86297299994296, 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0342430714728858);... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702353, -1.86297299994296, 'EApertures', [0.008 0.008], 'ExitAngle', 0.0342430714728858);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.0076 0.0076]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00715 0.00715], 'UUID', 'QCORR_101');... + atdrift('L071', 0.048, 'EApertures', [0.00665 0.00665]);... + atsextupole('SXD1', 0.09, -688.075994596801, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'SXD1_006');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444583, 'UUID', 'BQ6H7_091');... + atmarker('CROTCH_10_5', 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444583);... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsextupole('SXF1_HCOR', 0.12, 781.382308964691, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXF1_HCOR_004');... + atdrift('L081', 0.06, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF1_QCORROCT_79_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -800.842486671932], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'OCTF1_QCORROCT_79_QT_001');... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444583, 'UUID', 'BQ6H7_093');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444583);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BPM_087');... + atsextupole('SXD1_VCOR', 0.09, -688.075994596801, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXD1_VCOR_006');... + atdrift('L071', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'QCORR_102');... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00766666666666667 0.00766666666666667]);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008], 'UUID', 'BD4H7_047');... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702353, -1.86297299994296, 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0342430714728858);... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702353, -1.86297299994296, 'EApertures', [0.008 0.008], 'ExitAngle', 0.0342430714728858);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008]);... + atmarker('GIRDEREND', 'EApertures', [0.00785 0.00785]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.0076 0.0076]);... + atmarker('GIRDERSTART', 'EApertures', [0.0073 0.0073]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00715 0.00715], 'UUID', 'QCORR_103');... + atdrift('L071', 0.048, 'EApertures', [0.00665 0.00665]);... + atsextupole('SXD11', 0.09, -701.568414672357, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'SXD11_002');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444583, 'UUID', 'BQ6H7_095');... + atmarker('CROTCH_10_6', 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444583);... + atdrift('L082', 0.0471064301693061, 'EApertures', [0.006 0.006]);... + atsextupole('SXF11_HCOR', 0.12, 831.660252988522, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXF11_HCOR_002');... + atdrift('L084', 0.048820499745398, 'EApertures', [0.006 0.006]);... + atsbend('BQ4H7', 0.0577872115264688, -0.000403189428060739, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.000403189428060739, 'UUID', 'BQ4H7_023');... + atsbend('BQ4H7', 0.0577872115264688, -0.000403189428060739, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'ExitAngle', -0.000403189428060739);... + atdrift('L085', 0.100096014361354, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF1_QCORROCT_80_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -800.842486671932], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'OCTF1_QCORROCT_80_QT_001');... + atdrift('L05', 0.06, 'EApertures', [0.006 0.006]);... + atsextupole('SXD11_VCOR', 0.09, -701.568414672357, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXD11_VCOR_002');... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BPM_088');... + atdrift('L03', 0.176061846245862, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atsbend('BD27', 0.0284984341976272, 0.00225714925227511, -1.18160211440423, 'EApertures', [0.008 0.008], 'UUID', 'BD27_023');... + atsbend('BD17', 0.0959771205127194, 0.00913608259524057, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0205293144427562);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524057, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524057, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524057, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'ExitAngle', 0.0205293144427562);... + atsbend('BD27', 0.0284984341976272, 0.00225714925227511, -1.18160211440423, 'EApertures', [0.0085 0.0085]);... + atdrift('LBD1I', 0.0395472975018047, 'EApertures', [0.0085 0.0085]);... + atdrift('D05HI', 0.00499988833315879, 'EApertures', [0.0085 0.0085]);... + atquadrupole('Q3', 0.19168495937003, 8.41314022851464, 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.18, 'EApertures', [0.0085 0.0085], 'UUID', 'Q3_002');... + atdrift('D03HIQ', 0.1, 'EApertures', [0.0085 0.0085]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.0085 0.0085], 'UUID', 'QCORR_104');... + atdrift('D022HIQ', 0.048, 'EApertures', [0.0085 0.0085]);... + atsextupole('SH3_VCOR', 0.075, -319.26546309512, 'Action', 'SxtHarm', 'BoDiameter', 0.021, 'BoGap', 0.0062, 'BoLength', 0.075, 'EApertures', [0.0085 0.0085], 'KickAngle', [0. 0.], 'UUID', 'SH3_VCOR_002');... + atmonitor('BPM', 'EApertures', [0.0085 0.0085], 'UUID', 'BPM_089');... + atdrift('D041HI', 0.118040964330437, 'Action', 'BPM', 'EApertures', [0.0085 0.0085]);... + atmarker('CROTCH_10_7', 'EApertures', [0.0085 0.0085]);... + atquadrupole('Q2', 0.190595998125992, -9.58185915782871, 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.18, 'EApertures', [0.0085 0.0085], 'UUID', 'Q2_002');... + atdrift('D03HI', 0.052, 'EApertures', [0.0085 0.0085]);... + atmultipole('OH2_QCORROCT_81', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.021, 'BoGap', 0.00718, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.0085 0.0085], 'MaxOrder', 3, 'UUID', 'OH2_QCORROCT_81_001');... + atdrift('D022HI', 0.06, 'EApertures', [0.0085 0.0085]);... + atsextupole('SH2_HCOR', 0.075, -0.0179339928448087, 'Action', 'SxtHarm', 'BoDiameter', 0.021, 'BoGap', 0.0062, 'BoLength', 0.075, 'EApertures', [0.0085 0.0085], 'KickAngle', [0. 0.], 'UUID', 'SH2_HCOR_002');... + atdrift('D03HI', 0.052, 'EApertures', [0.0085 0.0085]);... + atquadrupole('Q1', 0.137671036897098, 9.06658187296726, 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.0085 0.0085], 'UUID', 'Q1_002');... + atdrift('D031HI', 0.052, 'EApertures', [0.0085 0.0085]);... + atmultipole('OH1_QCORROCT_82_QT', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.021, 'BoGap', 0.00718, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.0085 0.0085], 'MaxOrder', 3, 'UUID', 'OH1_QCORROCT_82_QT_001');... + atdrift('D022HI', 0.06, 'EApertures', [0.0085 0.0085]);... + atsextupole('SH1_COR', 0.075, 180.531158381771, 'Action', 'SxtHarm', 'BoDiameter', 0.021, 'BoGap', 0.0062, 'BoLength', 0.075, 'EApertures', [0.008 0.008], 'KickAngle', [0. 0.], 'UUID', 'SH1_COR_002');... + atmarker('GIRDEREND', 'EApertures', [0.008 0.008]);... + atmarker('AN-C10END', 'EApertures', [0.008 0.008]);... + atmarker('SD11ISTART', 'EApertures', [0.008 0.008]);... + atmarker('VANNE_START', 'EApertures', [0.008 0.008]);... + atmarker('FCOR_11_1', 'UUID', 'FCOR_11_1_001');... + atmonitor('BPM', 'EApertures', [0.008 0.008], 'UUID', 'BPM_090');... + atdrift('SD1I_10', 0.322, 'Action', 'BPM', 'EApertures', [0.010952380952381 0.010952380952381]);... + atmarker('VANNE_END', 'EApertures', [0.012 0.012]);... + atdrift('SD1I_11', 0.01, 'Action', 'BPM', 'EApertures', [0.012 0.012]);... + atmarker('DOUBLEBPM_START', 'EApertures', [0.012 0.012]);... + atdrift('SD1I_12', 0.3, 'Action', 'BPM', 'EApertures', [0.01568 0.01568]);... + atmarker('DOUBLEBPM_END', 'EApertures', [0.016 0.016]);... + atdrift('SD1I_13', 0.01, 'Action', 'BPM', 'EApertures', [0.016 0.016]);... + atmarker('STRIPLINE_FBT_V_START', 'EApertures', [0.016 0.016]);... + atdrift('SD1I_14', 0.542, 'Action', 'BPM', 'EApertures', [0.016 0.016]);... + atmarker('STRIPLINE_FBT_V_END', 'EApertures', [0.0133 0.0133]);... + atdrift('SD1I_15', 0.01, 'Action', 'BPM', 'EApertures', [0.013 0.013]);... + atmarker('STRIPLINE_FBT_H_START', 'EApertures', [0.0124 0.0124]);... + atdrift('SD1I_16', 0.542, 'Action', 'BPM', 'EApertures', [0.01 0.01]);... + atmarker('STRIPLINE_FBT_H_END', 'EApertures', [0.01 0.01]);... + atdrift('SD1I_17', 0.01, 'Action', 'BPM', 'EApertures', [0.01 0.01]);... + atmarker('ONDULEURMARK_START', 'EApertures', [0.01 0.01]);... + atdrift('SD1I_18', 2.86, 'Action', 'BPM', 'EApertures', [0.01 0.01]);... + atmarker('SD11I_ONDULEURCENTER', 'EApertures', [0.01 0.01]);... + atdrift('SD1I_19', 2.86, 'Action', 'BPM', 'EApertures', [0.01 0.01]);... + atmarker('ONDULEURMARK_END', 'EApertures', [0.016 0.016]);... + atdrift('SD1I_20', 0.254458331720047, 'Action', 'BPM', 'EApertures', [0.0075 0.0045]);... + atmarker('VANNE_START', 'EApertures', [0.012 0.012]);... + atdrift('SD1I_21', 0.322, 'Action', 'BPM', 'EApertures', [0.010952380952381 0.010952380952381]);... + atmarker('FCOR_11_2', 'UUID', 'FCOR_11_2_001');... + atmonitor('BPM', 'EApertures', [0.008 0.008], 'UUID', 'BPM_091');... + atmarker('VANNE_END', 'EApertures', [0.008 0.008]);... + atmarker('SD11IEND', 'EApertures', [0.008 0.008]);... + atmarker('AN-C11START', 'EApertures', [0.008 0.008]);... + atmarker('GIRDERSTART', 'EApertures', [0.008 0.008]);... + atsextupole('SH1_COR', 0.075, 180.531158381771, 'Action', 'SxtHarm', 'BoDiameter', 0.021, 'BoGap', 0.0062, 'BoLength', 0.075, 'EApertures', [0.008 0.008], 'KickAngle', [0. 0.], 'UUID', 'SH1_COR_003');... + atdrift('D022HI', 0.06, 'EApertures', [0.0085 0.0085]);... + atmultipole('OH1_QCORROCT_83_QT', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.021, 'BoGap', 0.00718, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.0085 0.0085], 'MaxOrder', 3, 'UUID', 'OH1_QCORROCT_83_QT_001');... + atdrift('D031HI', 0.052, 'EApertures', [0.0085 0.0085]);... + atquadrupole('Q1', 0.137671036897098, 9.06658187296726, 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.0085 0.0085], 'UUID', 'Q1_003');... + atdrift('D03HI', 0.052, 'EApertures', [0.0085 0.0085]);... + atsextupole('SH2_HCOR', 0.075, -0.0179339928448087, 'Action', 'SxtHarm', 'BoDiameter', 0.021, 'BoGap', 0.0062, 'BoLength', 0.075, 'EApertures', [0.0085 0.0085], 'KickAngle', [0. 0.], 'UUID', 'SH2_HCOR_003');... + atdrift('D022HI', 0.06, 'EApertures', [0.0085 0.0085]);... + atmultipole('OH2_QCORROCT_84', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.021, 'BoGap', 0.00718, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.0085 0.0085], 'MaxOrder', 3, 'UUID', 'OH2_QCORROCT_84_001');... + atdrift('D03HI', 0.052, 'EApertures', [0.0085 0.0085]);... + atquadrupole('Q2', 0.190595998125992, -9.58185915782871, 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.18, 'EApertures', [0.0085 0.0085], 'UUID', 'Q2_003');... + atdrift('D041HI', 0.118040964330437, 'Action', 'BPM', 'EApertures', [0.0085 0.0085]);... + atmonitor('BPM', 'EApertures', [0.0085 0.0085], 'UUID', 'BPM_092');... + atsextupole('SH3_VCOR', 0.075, -319.26546309512, 'Action', 'SxtHarm', 'BoDiameter', 0.021, 'BoGap', 0.0062, 'BoLength', 0.075, 'EApertures', [0.0085 0.0085], 'KickAngle', [0. 0.], 'UUID', 'SH3_VCOR_003');... + atdrift('D022HIQ', 0.048, 'EApertures', [0.0085 0.0085]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.0085 0.0085], 'UUID', 'QCORR_105');... + atdrift('D03HIQ', 0.1, 'EApertures', [0.0085 0.0085]);... + atquadrupole('Q3', 0.19168495937003, 8.41314022851464, 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.18, 'EApertures', [0.0085 0.0085], 'UUID', 'Q3_003');... + atdrift('D05HI', 0.00499988833315879, 'EApertures', [0.0085 0.0085]);... + atdrift('LBD1I', 0.0395472975018047, 'EApertures', [0.0085 0.0085]);... + atsbend('BD27', 0.0284984341976272, 0.00225714925227511, -1.18160211440423, 'EApertures', [0.008 0.008], 'UUID', 'BD27_025');... + atsbend('BD17', 0.0959771205127194, 0.00913608259524057, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0205293144427562);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524057, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524057, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524057, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'ExitAngle', 0.0205293144427562);... + atsbend('BD27', 0.0284984341976272, 0.00225714925227511, -1.18160211440423, 'EApertures', [0.00766666666666667 0.00766666666666667]);... + atdrift('L03', 0.176061846245862, 'EApertures', [0.006 0.006]);... + atsextupole('SXD11', 0.09, -701.568414672357, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0075, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'SXD11_003');... + atmarker('CROTCH_11_1', 'EApertures', [0.006 0.006]);... + atdrift('L04', 0.111275514615956, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF1_QCORROCT_85_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -800.842486671932], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'OCTF1_QCORROCT_85_QT_001');... + atdrift('L084', 0.048820499745398, 'EApertures', [0.006 0.006]);... + atsbend('BQ4H7', 0.0577872115264688, -0.000403189428060739, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.000403189428060739, 'UUID', 'BQ4H7_025');... + atsbend('BQ4H7', 0.0577872115264688, -0.000403189428060739, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'ExitAngle', -0.000403189428060739);... + atdrift('L084', 0.048820499745398, 'EApertures', [0.006 0.006]);... + atsextupole('SXF11_HCOR', 0.12, 831.660252988522, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXF11_HCOR_003');... + atdrift('L082', 0.0471064301693061, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444583, 'UUID', 'BQ6H7_097');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444583);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BPM_093');... + atsextupole('SXD11_VCOR', 0.09, -701.568414672357, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXD11_VCOR_003');... + atdrift('L071', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'QCORR_106');... + atmarker('GIRDEREND', 'EApertures', [0.006 0.006]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.008 0.008]);... + atmarker('GIRDERSTART', 'EApertures', [0.008 0.008]);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008], 'UUID', 'BD4H7_049');... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702353, -1.86297299994296, 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0342430714728858);... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702353, -1.86297299994296, 'EApertures', [0.008 0.008], 'ExitAngle', 0.0342430714728858);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00758974358974359 0.00758974358974359]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00717948717948718 0.00717948717948718], 'UUID', 'QCORR_107');... + atdrift('L071', 0.048, 'EApertures', [0.00661538461538461 0.00661538461538461]);... + atsextupole('SXD1', 0.09, -688.075994596801, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'SXD1_007');... + atmarker('CROTCH_11_2', 'EApertures', [0.006 0.006]);... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444583, 'UUID', 'BQ6H7_099');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444583);... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF1_QCORROCT_86_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -800.842486671932], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'OCTF1_QCORROCT_86_QT_001');... + atdrift('L081', 0.06, 'EApertures', [0.006 0.006]);... + atsextupole('SXF1_HCOR', 0.12, 781.382308964691, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXF1_HCOR_005');... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444583, 'UUID', 'BQ6H7_101');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444583);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BPM_094');... + atsextupole('SXD1_VCOR', 0.09, -688.075994596801, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXD1_VCOR_007');... + atdrift('L071', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'QCORR_108');... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00766666666666667 0.00766666666666667]);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008], 'UUID', 'BD4H7_051');... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702353, -1.86297299994296, 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0342430714728858);... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702352, -1.86297299994296, 'EApertures', [0.008 0.008], 'ExitAngle', 0.0342430714728858);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008]);... + atmarker('GIRDEREND', 'EApertures', [0.00785 0.00785]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.0076 0.0076]);... + atmarker('GIRDERSTART', 'EApertures', [0.00735 0.00735]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00715 0.00715], 'UUID', 'QCORR_109');... + atdrift('L071', 0.048, 'EApertures', [0.00665 0.00665]);... + atsextupole('SXD1', 0.09, -688.075994596801, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'SXD1_008');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_11_3', 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444582, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444582, 'UUID', 'BQ6H7_103');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444582, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444582);... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF1_QCORROCT_87_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -800.842486671932], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'OCTF1_QCORROCT_87_QT_001');... + atdrift('L081', 0.06, 'EApertures', [0.006 0.006]);... + atsextupole('SXF13_HCOR', 0.12, 750.901805779491, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXF13_HCOR_005');... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsbend('BQ6HC7', 0.0689196396343699, -0.00144054604712974, 8.95984862959226, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00144054604712974, 'UUID', 'BQ6HC7_025');... + atsbend('BQ6HC7', 0.0689196396343699, -0.00144054604712974, 8.95984862959226, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00144054604712974);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BPM_095');... + atsextupole('SXD13_VCOR', 0.09, -689.724579569546, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXD13_VCOR_003');... + atdrift('L071C', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'QCORR_110');... + atdrift('L073C', 0.0430773209057085, 'EApertures', [0.00714285714285714 0.00714285714285714]);... + atsbend('BD3HC7', 0.01, 0.000258818071001969, -1.37551837900507, 'EApertures', [0.008 0.00786363636363636], 'UUID', 'BD3HC7_013');... + atsbend('BD4HC71', 0.03, 0.00188018240208164, -2.57765200910186, 'EApertures', [0.008 0.00769318181818182], 'EntranceAngle', 0.00982777557557598);... + atsbend('BD4HC7', 0.253621983633988, 0.0158951863469887, -2.57765200910186, 'EApertures', [0.008 0.00632954545454545]);... + atsbend('BD4HC71', 0.03, 0.00188018240208164, -2.57765200910186, 'EApertures', [0.008 0.005], 'ExitAngle', 0.00982777557557598);... + atsbend('BD5HC7', 0.0231155237960032, 0.00240516115877823, 0.0, 'EApertures', [0.008 0.005]);... + atsbend('BD6HC7', 0.0856857672699483, 0.0117810198825822, 0.0, 'EApertures', [0.008 0.00425]);... + atsbend('BD6HC7', 0.0856857672699483, 0.0117810198825822, 0.0, 'EApertures', [0.008 0.00457894736842105]);... + atsbend('BD5HC7', 0.0231155237960032, 0.00240516115877823, 0.0, 'EApertures', [0.008 0.005]);... + atsbend('BD4HC71', 0.03, 0.00188018240208164, -2.57765200910186, 'EApertures', [0.008 0.00518367346938775], 'EntranceAngle', 0.00982777557557598);... + atsbend('BD4HC7', 0.253621983633988, 0.0158951863469887, -2.57765200910186, 'EApertures', [0.008 0.00640816326530612]);... + atsbend('BD4HC71', 0.03, 0.00188018240208164, -2.57765200910186, 'EApertures', [0.008 0.00763265306122449], 'ExitAngle', 0.00982777557557598);... + atsbend('BD3HC7', 0.01, 0.000258818071001969, -1.37551837900507, 'EApertures', [0.008 0.00781632653061225]);... + atdrift('L073C', 0.0430773209057085, 'EApertures', [0.00793939393939394 0.00793939393939394]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00739393939393939 0.00739393939393939], 'UUID', 'QCORR_111');... + atdrift('L071C', 0.048, 'EApertures', [0.00678787878787879 0.00678787878787879]);... + atsextupole('SXD13', 0.09, -689.724579569546, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.007, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'SXD13_003');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_11_4', 'EApertures', [0.006 0.006]);... + atsbend('BQ6HC7', 0.0689196396343699, -0.00144054604712974, 8.95984862959226, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00144054604712974, 'UUID', 'BQ6HC7_027');... + atsbend('BQ6HC7', 0.0689196396343699, -0.00144054604712974, 8.95984862959226, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00144054604712974);... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsextupole('SXF13_HCOR', 0.12, 750.901805779491, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXF13_HCOR_006');... + atdrift('L081', 0.06, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF1_QCORROCT_88_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -800.842486671932], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'OCTF1_QCORROCT_88_QT_001');... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444582, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444582, 'UUID', 'BQ6H7_105');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444582, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444582);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BPM_096');... + atsextupole('SXD1_VCOR', 0.09, -688.075994596801, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXD1_VCOR_008');... + atdrift('L071', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'QCORR_112');... + atmarker('GIRDEREND', 'EApertures', [0.006 0.006]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.008 0.008]);... + atmarker('GIRDERSTART', 'EApertures', [0.008 0.008]);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008], 'UUID', 'BD4H7_053');... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702352, -1.86297299994296, 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0342430714728858);... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702353, -1.86297299994296, 'EApertures', [0.008 0.008], 'ExitAngle', 0.0342430714728858);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00758974358974359 0.00758974358974359]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00717948717948718 0.00717948717948718], 'UUID', 'QCORR_113');... + atdrift('L071', 0.048, 'EApertures', [0.00666666666666667 0.00666666666666667]);... + atsextupole('SXD1', 0.09, -688.075994596801, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'SXD1_009');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_11_5', 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444583, 'UUID', 'BQ6H7_107');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444583);... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsextupole('SXF1_HCOR', 0.12, 781.382308964691, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXF1_HCOR_006');... + atdrift('L081', 0.06, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF1_QCORROCT_89_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -800.842486671932], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'OCTF1_QCORROCT_89_QT_001');... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444583, 'UUID', 'BQ6H7_109');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444583);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BPM_097');... + atsextupole('SXD1_VCOR', 0.09, -688.075994596801, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXD1_VCOR_009');... + atdrift('L071', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'QCORR_114');... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.008 0.008]);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008], 'UUID', 'BD4H7_055');... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702353, -1.86297299994296, 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0342430714728858);... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702353, -1.86297299994296, 'EApertures', [0.008 0.008], 'ExitAngle', 0.0342430714728858);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008]);... + atmarker('GIRDEREND', 'EApertures', [0.00784615384615385 0.00784615384615385]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00758974358974359 0.00758974358974359]);... + atmarker('GIRDERSTART', 'EApertures', [0.00733333333333333 0.00733333333333333]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00712820512820513 0.00712820512820513], 'UUID', 'QCORR_115');... + atdrift('L071', 0.048, 'EApertures', [0.00661538461538461 0.00661538461538461]);... + atsextupole('SXD12', 0.09, -749.191327132338, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'SXD12_003');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_11_6', 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444583, 'UUID', 'BQ6H7_111');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444583);... + atdrift('L082', 0.0471064301693061, 'EApertures', [0.006 0.006]);... + atsextupole('SXF12_HCOR', 0.12, 860.065976124029, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXF12_HCOR_003');... + atdrift('L084', 0.048820499745398, 'EApertures', [0.006 0.006]);... + atsbend('BQ4H7', 0.0577872115264688, -0.000403189428060739, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.000403189428060739, 'UUID', 'BQ4H7_027');... + atsbend('BQ4H7', 0.0577872115264688, -0.000403189428060739, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'ExitAngle', -0.000403189428060739);... + atdrift('L085', 0.100096014361354, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF1_QCORROCT_90_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -800.842486671932], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'OCTF1_QCORROCT_90_QT_001');... + atdrift('L05', 0.06, 'EApertures', [0.006 0.006]);... + atsextupole('SXD12_VCOR', 0.09, -749.191327132338, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXD12_VCOR_003');... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BPM_098');... + atdrift('L03', 0.176061846245862, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atsbend('BD27', 0.0284984341976272, 0.00225714925227511, -1.18160211440423, 'EApertures', [0.008 0.008], 'UUID', 'BD27_027');... + atsbend('BD17', 0.0959771205127194, 0.00913608259524057, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0205293144427562);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524057, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524057, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524057, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'ExitAngle', 0.0205293144427562);... + atsbend('BD27', 0.0284984341976272, 0.00225714925227511, -1.18160211440423, 'EApertures', [0.00755555555555556 0.00755555555555556]);... + atdrift('LBD1M1', 0.0395472975018047, 'EApertures', [0.00644444444444444 0.00644444444444444]);... + atdrift('D05HM1', 0.05, 'EApertures', [0.006 0.006]);... + atquadrupole('Q7', 0.0672457254622836, -11.8140171585779, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.058, 'EApertures', [0.006 0.006], 'UUID', 'Q7_005');... + atdrift('D03HM1', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH6_COR', 0.06, -324.475203415205, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SH6_COR_005');... + atdrift('D022HM1Q', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'QCORR_116');... + atdrift('D040HM1Q', 0.128, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_11_7', 'EApertures', [0.006 0.006]);... + atquadrupole('Q6', 0.067209291601852, 11.9784555023184, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.058, 'EApertures', [0.006 0.006], 'UUID', 'Q6_005');... + atdrift('D03HM1', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH5', 0.06, -514.413524183539, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'UUID', 'SH5_005');... + atdrift('D022HM1', 0.06, 'EApertures', [0.006 0.006]);... + atmultipole('OH5_QCORROCT_91', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.008 0.008], 'MaxOrder', 3, 'UUID', 'OH5_QCORROCT_91_001');... + atmonitor('BPM', 'EApertures', [0.008 0.008], 'UUID', 'BPM_099');... + atdrift('D06HM1', 0.13, 'Action', 'BPM', 'EApertures', [0.006 0.006]);... + atquadrupole('Q5', 0.105773394525209, 14.0793630884634, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.098, 'EApertures', [0.006 0.006], 'UUID', 'Q5_005');... + atdrift('D032HM1', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH4_COR', 0.06, 682.544409709839, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SH4_COR_005');... + atdrift('D022HM1', 0.06, 'EApertures', [0.006 0.006]);... + atmultipole('OH4_QCORROCT_92_QT', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'MaxOrder', 3, 'UUID', 'OH4_QCORROCT_92_QT_001');... + atdrift('D031HM1', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('Q4', 0.0785476107439048, -13.6216098775293, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.07, 'EApertures', [0.006 0.006], 'UUID', 'Q4_005');... + atmarker('GIRDEREND', 'EApertures', [0.006 0.006]);... + atmarker('AN-C11END', 'EApertures', [0.006 0.006]);... + atmarker('SD12MLSTART', 'EApertures', [0.006 0.006]);... + atmarker('VANNE_START', 'EApertures', [0.006 0.006]);... + atmarker('FCOR_12_1', 'UUID', 'FCOR_12_1_001');... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BPM_100');... + atdrift('SD1M1_23', 0.322, 'Action', 'BPM', 'EApertures', [0.00876190476190476 0.00876190476190476]);... + atmarker('VANNE_END', 'EApertures', [0.01 0.01]);... + atdrift('SD1M1_24', 0.01, 'Action', 'BPM', 'EApertures', [0.01 0.01]);... + atmarker('DCCT_1_START', 'EApertures', [0.01 0.01]);... + atdrift('SD1M1_25', 0.3, 'Action', 'BPM', 'EApertures', [0.01 0.01]);... + atmarker('DCCT_1_END', 'EApertures', [0.01 0.01]);... + atdrift('SD1M1_26', 0.209986392245071, 'Action', 'BPM', 'RApertures', [-0.00895714285714286 0.00828571428571429 -0.00895714285714286 0.00895714285714286]);... + atmarker('ONDULEURMARK_START', 'RApertures', [-0.00878333333333333 0.008 -0.00878333333333333 0.00878333333333333]);... + atdrift('SD1M1_27', 1.29, 'Action', 'BPM', 'RApertures', [-0.0045 0.004 -0.0035 0.0035]);... + atmarker('SD12MLCENTER', 'EApertures', [0.0045 0.0035]);... + atdrift('SD1M1_28', 1.29, 'Action', 'BPM', 'EApertures', [0.0045 0.0035]);... + atmarker('ONDULEURMARK_END', 'EApertures', [0.00902941176470588 0.00885294117647059]);... + atdrift('SD1M1_29', 0.01, 'Action', 'BPM', 'EApertures', [0.00935294117647059 0.00923529411764706]);... + atmarker('DCCT_2_START', 'EApertures', [0.00951470588235294 0.00942647058823529]);... + atdrift('SD1M1_30', 0.3, 'Action', 'BPM', 'EApertures', [0.01 0.01]);... + atmarker('DCCT_2_END', 'EApertures', [0.01 0.01]);... + atdrift('SD1M1_31', 0.209986392245071, 'Action', 'BPM', 'EApertures', [0.01 0.01]);... + atmarker('VANNE_START', 'EApertures', [0.01 0.01]);... + atdrift('SD1M1_32', 0.322, 'Action', 'BPM', 'EApertures', [0.00872727272727273 0.00872727272727273]);... + atmarker('FCOR_12_2', 'UUID', 'FCOR_12_2_001');... + atmonitor('BPM', 'EApertures', [0.008 0.008], 'UUID', 'BPM_101');... + atmarker('VANNE_END', 'EApertures', [0.008 0.008]);... + atmarker('SD12MLEND', 'EApertures', [0.008 0.008]);... + atmarker('AN-C12START', 'EApertures', [0.008 0.008]);... + atmarker('GIRDERSTART', 'EApertures', [0.008 0.008]);... + atquadrupole('Q4', 0.0785476107439048, -13.6216098775293, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.07, 'EApertures', [0.0064 0.0064], 'UUID', 'Q4_006');... + atdrift('D031HM1', 0.048, 'EApertures', [0.006 0.006]);... + atmultipole('OH4_QCORROCT_93_QT', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'MaxOrder', 3, 'UUID', 'OH4_QCORROCT_93_QT_001');... + atdrift('D022HM1', 0.06, 'EApertures', [0.006 0.006]);... + atsextupole('SH4_COR', 0.06, 682.544409709839, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SH4_COR_006');... + atdrift('D032HM1', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('Q5', 0.105773394525209, 14.0793630884634, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.098, 'EApertures', [0.006 0.006], 'UUID', 'Q5_006');... + atdrift('D06HM1', 0.13, 'Action', 'BPM', 'EApertures', [0.006 0.006]);... + atmonitor('BPM', 'EApertures', [0.008 0.008], 'UUID', 'BPM_102');... + atmultipole('OH5_QCORROCT_94', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.008 0.008], 'MaxOrder', 3, 'UUID', 'OH5_QCORROCT_94_001');... + atdrift('D022HM1', 0.06, 'EApertures', [0.006 0.006]);... + atsextupole('SH5', 0.06, -514.413524183539, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'UUID', 'SH5_006');... + atdrift('D03HM1', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('Q6', 0.067209291601852, 11.9784555023184, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.058, 'EApertures', [0.006 0.006], 'UUID', 'Q6_006');... + atdrift('D040HM1Q', 0.128, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'QCORR_117');... + atdrift('D022HM1Q', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH6_COR', 0.06, -324.475203415205, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SH6_COR_006');... + atdrift('D03HM1', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('Q7', 0.0672457254622836, -11.8140171585779, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.058, 'EApertures', [0.006 0.006], 'UUID', 'Q7_006');... + atdrift('D05HM1', 0.05, 'EApertures', [0.006 0.006]);... + atdrift('LBD1M1', 0.0395472975018047, 'EApertures', [0.006 0.006]);... + atsbend('BD24', 0.0284984341976272, 0.00215787898333112, -1.18160211440423, 'EApertures', [0.00766666666666667 0.00766666666666667], 'UUID', 'BD24_017');... + atsbend('BD14', 0.0959771205127194, 0.00873427426315538, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0205293144427562);... + atsbend('BD14', 0.0959771205127194, 0.00873427426315538, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD14', 0.0959771205127194, 0.00873427426315538, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD14', 0.0959771205127194, 0.00873427426315538, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'ExitAngle', 0.0205293144427562);... + atsbend('BD24', 0.0284984341976272, 0.00215787898333112, -1.18160211440423, 'EApertures', [0.00786666666666667 0.00786666666666667]);... + atdrift('L03', 0.176061846245862, 'EApertures', [0.006 0.006]);... + atsextupole('SXD21', 0.09, -655.116114720116, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0075, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'SXD21_003');... + atdrift('L04', 0.111275514615956, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_12_1', 'EApertures', [0.006 0.006]);... + atmultipole('OCTF2_QCORROCT_95_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -262.360558705412], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'OCTF2_QCORROCT_95_QT_001');... + atdrift('L084', 0.048820499745398, 'EApertures', [0.006 0.006]);... + atsbend('BQ4H4', 0.0577872115264688, -0.000385457006104762, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.000385457006104762, 'UUID', 'BQ4H4_017');... + atsbend('BQ4H4', 0.0577872115264688, -0.000385457006104762, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'ExitAngle', -0.000385457006104762);... + atdrift('L084', 0.048820499745398, 'EApertures', [0.006 0.006]);... + atsextupole('SXF21_HCOR', 0.12, 719.09699842571, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXF21_HCOR_003');... + atdrift('L082', 0.0471064301693061, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H4', 0.0689196396343699, -0.00144531683192883, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00144531683192883, 'UUID', 'BQ6H4_033');... + atsbend('BQ6H4', 0.0689196396343699, -0.00144531683192883, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00144531683192883);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BPM_103');... + atsextupole('SXD21_VCOR', 0.09, -655.116114720116, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXD21_VCOR_003');... + atdrift('L071', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'QCORR_118');... + atmarker('GIRDEREND', 'EApertures', [0.006 0.006]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00666666666666667 0.00666666666666667]);... + atmarker('GIRDERSTART', 'EApertures', [0.008 0.008]);... + atsbend('BD4H4', 0.0393049032024916, 0.00234342379845867, -1.11997137375817, 'EApertures', [0.008 0.008], 'UUID', 'BD4H4_017');... + atsbend('BD5H4', 0.398927492296932, 0.0303936245742024, -1.86297299994296, 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0342430714728858);... + atsbend('BD5H4', 0.398927492296932, 0.0303936245742024, -1.86297299994296, 'EApertures', [0.008 0.008], 'ExitAngle', 0.0342430714728858);... + atsbend('BD4H4', 0.0393049032024916, 0.00234342379845867, -1.11997137375817, 'EApertures', [0.008 0.008]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00775 0.00775]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.0073 0.0073], 'UUID', 'QCORR_119');... + atdrift('L071', 0.048, 'EApertures', [0.0068 0.0068]);... + atsextupole('SXD2', 0.09, -617.904418360321, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'SXD2_003');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_12_2', 'EApertures', [0.006 0.006]);... + atsbend('BQ6H4', 0.0689196396343699, -0.00144531683192883, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00144531683192883, 'UUID', 'BQ6H4_035');... + atsbend('BQ6H4', 0.0689196396343699, -0.00144531683192883, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00144531683192883);... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF2_QCORROCT_96_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -262.360558705412], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'OCTF2_QCORROCT_96_QT_001');... + atdrift('L081', 0.06, 'EApertures', [0.006 0.006]);... + atsextupole('SXF2_HCOR', 0.12, 741.112250869933, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXF2_HCOR_003');... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H4', 0.0689196396343699, -0.00144531683192883, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00144531683192883, 'UUID', 'BQ6H4_037');... + atsbend('BQ6H4', 0.0689196396343699, -0.00144531683192883, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00144531683192883);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BPM_104');... + atsextupole('SXD2_VCOR', 0.09, -617.904418360321, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXD2_VCOR_003');... + atdrift('L071', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'QCORR_120');... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00666666666666667 0.00666666666666667]);... + atsbend('BD4H4', 0.0393049032024916, 0.00234342379845867, -1.11997137375817, 'EApertures', [0.008 0.008], 'UUID', 'BD4H4_019');... + atsbend('BD5H4', 0.398927492296932, 0.0303936245742024, -1.86297299994296, 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0342430714728858);... + atsbend('BD5H4', 0.398927492296932, 0.0303936245742024, -1.86297299994296, 'EApertures', [0.008 0.008], 'ExitAngle', 0.0342430714728858);... + atsbend('BD4H4', 0.0393049032024916, 0.00234342379845867, -1.11997137375817, 'EApertures', [0.008 0.008]);... + atmarker('GIRDEREND', 'EApertures', [0.008 0.008]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00775 0.00775]);... + atmarker('GIRDERSTART', 'EApertures', [0.00745 0.00745]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.0073 0.0073], 'UUID', 'QCORR_121');... + atdrift('L071', 0.048, 'EApertures', [0.0068 0.0068]);... + atsextupole('SXD22', 0.09, -636.039531358256, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'SXD22_003');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_12_3', 'EApertures', [0.006 0.006]);... + atsbend('BQ6H4', 0.0689196396343699, -0.00144531683192883, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00144531683192883, 'UUID', 'BQ6H4_039');... + atsbend('BQ6H4', 0.0689196396343699, -0.00144531683192883, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00144531683192883);... + atdrift('L082', 0.0471064301693061, 'EApertures', [0.006 0.006]);... + atsextupole('SXF22_HCOR', 0.12, 843.464304725645, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXF22_HCOR_003');... + atdrift('L084', 0.048820499745398, 'EApertures', [0.006 0.006]);... + atsbend('BQ4H4', 0.0577872115264688, -0.000385457006104762, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.000385457006104762, 'UUID', 'BQ4H4_019');... + atsbend('BQ4H4', 0.0577872115264688, -0.000385457006104762, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'ExitAngle', -0.000385457006104762);... + atdrift('L085', 0.100096014361354, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF2_QCORROCT_97_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -262.360558705412], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'OCTF2_QCORROCT_97_QT_001');... + atdrift('L05', 0.06, 'EApertures', [0.008 0.008]);... + atsextupole('SXD22_VCOR', 0.09, -636.039531358256, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.0068 0.0068], 'KickAngle', [0. 0.], 'UUID', 'SXD22_VCOR_003');... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BPM_105');... + atdrift('L03', 0.176061846245862, 'Action', 'BPM', 'EApertures', [0.006 0.006]);... + atsbend('BD24', 0.0284984341976272, 0.00215787898333112, -1.18160211440423, 'EApertures', [0.008 0.008], 'UUID', 'BD24_019');... + atsbend('BD14', 0.0959771205127194, 0.00873427426315538, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0205293144427562);... + atsbend('BD14', 0.0959771205127194, 0.00873427426315538, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD14', 0.0959771205127194, 0.00873427426315538, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD14', 0.0959771205127194, 0.00873427426315538, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'ExitAngle', 0.0205293144427562);... + atsbend('BD24', 0.0284984341976272, 0.00215787898333112, -1.18160211440423, 'EApertures', [0.00715789473684211 0.00715789473684211]);... + atdrift('LBD1C', 0.0395472975018047, 'EApertures', [0.00621052631578947 0.00621052631578947]);... + atdrift('D05HC', 0.00499988833315879, 'EApertures', [0.006 0.006]);... + atquadrupole('Q11', 0.0789546761676337, -12.3862992113073, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.07, 'EApertures', [0.006 0.006], 'UUID', 'Q11_009');... + atdrift('D03HC', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH9_COR', 0.06, -668.536791100884, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SH9_COR_009');... + atdrift('D022HCQ', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'QCORR_122');... + atdrift('D041HCQ', 0.108, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_12_4', 'EApertures', [0.006 0.006]);... + atquadrupole('Q10', 0.0844113331477278, 13.6568508102765, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.076, 'EApertures', [0.006 0.006], 'UUID', 'Q10_009');... + atdrift('D03HC', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH8', 0.06, -366.603155097304, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'UUID', 'SH8_009');... + atdrift('D022HCQ', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'QCORR_123');... + atmonitor('BPM', 'EApertures', [0.00633333333333333 0.00633333333333333], 'UUID', 'BPM_106');... + atdrift('D06HCQ', 0.158, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atquadrupole('Q9', 0.106409911705093, 12.8349230947647, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.098, 'EApertures', [0.006 0.006], 'UUID', 'Q9_009');... + atdrift('D032HC', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH7_COR', 0.06, 832.664084881681, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SH7_COR_009');... + atdrift('D022HC', 0.06, 'EApertures', [0.006 0.006]);... + atmultipole('OH7_QCORROCT_98_QT', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'MaxOrder', 3, 'UUID', 'OH7_QCORROCT_98_QT_001');... + atdrift('D031HC', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('Q8', 0.0786666675115942, -13.273182641893, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.07, 'EApertures', [0.006 0.006], 'UUID', 'Q8_009');... + atmarker('GIRDEREND', 'EApertures', [0.00766666666666667 0.00766666666666667]);... + atmarker('AN-C12END', 'EApertures', [0.00766666666666667 0.00766666666666667]);... + atmarker('SD13CSTART', 'EApertures', [0.00766666666666667 0.00766666666666667]);... + atmarker('VANNE_START', 'EApertures', [0.00766666666666667 0.00766666666666667]);... + atmarker('FCOR_13_1', 'UUID', 'FCOR_13_1_001');... + atmonitor('BPM', 'EApertures', [0.00766666666666667 0.00766666666666667], 'UUID', 'BPM_107');... + atdrift('SD1C_25', 0.322, 'Action', 'BPM', 'EApertures', [0.00847619047619048 0.00847619047619048]);... + atmarker('VANNE_END', 'EApertures', [0.01 0.01]);... + atdrift('SD1C_26', 0.0835458676300582, 'Action', 'BPM', 'EApertures', [0.01 0.01]);... + atmarker('ONDULEURMARK_START', 'EApertures', [0.042 0.0125]);... + atdrift('SD1C_27', 1.189, 'Action', 'BPM', 'EApertures', [0.0475 0.002 ]);... + atmarker('SD13CCENTER', 'EApertures', [0.0475 0.002 ]);... + atdrift('SD1C_28', 1.189, 'Action', 'BPM', 'EApertures', [0.0475 0.002 ]);... + atmarker('ONDULEURMARK_END', 'EApertures', [0.042 0.0125]);... + atdrift('SD1C_29', 0.0835458676300582, 'Action', 'BPM', 'EApertures', [0.01 0.01]);... + atmarker('VANNE_START', 'EApertures', [0.01 0.01]);... + atdrift('SD1C_30', 0.322, 'Action', 'BPM', 'EApertures', [0.00847619047619048 0.00847619047619048]);... + atmarker('FCOR_13_2', 'UUID', 'FCOR_13_2_001');... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BPM_108');... + atmarker('VANNE_END', 'EApertures', [0.006 0.006]);... + atmarker('SD13CEND', 'EApertures', [0.006 0.006]);... + atmarker('AN-C13START', 'EApertures', [0.006 0.006]);... + atmarker('GIRDERSTART', 'EApertures', [0.006 0.006]);... + atquadrupole('Q8', 0.0786666675115942, -13.273182641893, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.07, 'EApertures', [0.006 0.006], 'UUID', 'Q8_010');... + atdrift('D031HC', 0.048, 'EApertures', [0.006 0.006]);... + atmultipole('OH7_QCORROCT_99_QT', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'MaxOrder', 3, 'UUID', 'OH7_QCORROCT_99_QT_001');... + atdrift('D022HC', 0.06, 'EApertures', [0.006 0.006]);... + atsextupole('SH7_COR', 0.06, 832.664084881681, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SH7_COR_010');... + atdrift('D032HC', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('Q9', 0.106409911705093, 12.8349230947647, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.098, 'EApertures', [0.006 0.006], 'UUID', 'Q9_010');... + atdrift('D06HCQ', 0.158, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BPM_109');... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'QCORR_124');... + atdrift('D022HCQ', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH8', 0.06, -366.603155097304, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'UUID', 'SH8_010');... + atdrift('D03HC', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('Q10', 0.0844113331477278, 13.6568508102765, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.076, 'EApertures', [0.006 0.006], 'UUID', 'Q10_010');... + atdrift('D041HCQ', 0.108, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'QCORR_125');... + atdrift('D022HCQ', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH9_COR', 0.06, -668.536791100884, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SH9_COR_010');... + atdrift('D03HC', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('Q11', 0.0789546761676337, -12.3862992113073, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.07, 'EApertures', [0.006 0.006], 'UUID', 'Q11_010');... + atdrift('D05HC', 0.00499988833315879, 'EApertures', [0.006 0.006]);... + atdrift('LBD1C', 0.0395472975018047, 'EApertures', [0.006 0.006]);... + atsbend('BD27', 0.0284984341976272, 0.00225714925227511, -1.18160211440423, 'EApertures', [0.008 0.008], 'UUID', 'BD27_029');... + atsbend('BD17', 0.0959771205127194, 0.00913608259524057, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0205293144427562);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524057, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524057, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524057, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'ExitAngle', 0.0205293144427562);... + atsbend('BD27', 0.0284984341976272, 0.00225714925227511, -1.18160211440423, 'EApertures', [0.00766666666666667 0.00766666666666667]);... + atdrift('L03', 0.176061846245862, 'EApertures', [0.006 0.006]);... + atsextupole('SXD31', 0.09, -681.129428046866, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0075, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'SXD31_003');... + atmarker('CROTCH_13_1', 'EApertures', [0.006 0.006]);... + atdrift('L04', 0.111275514615956, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF3_QCORROCT_100_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -440.259660850112], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'OCTF3_QCORROCT_100_QT_001');... + atdrift('L084', 0.048820499745398, 'EApertures', [0.006 0.006]);... + atsbend('BQ4H7', 0.0577872115264688, -0.000403189428060739, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.000403189428060739, 'UUID', 'BQ4H7_029');... + atsbend('BQ4H7', 0.0577872115264688, -0.000403189428060739, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'ExitAngle', -0.000403189428060739);... + atdrift('L084', 0.048820499745398, 'EApertures', [0.006 0.006]);... + atsextupole('SXF31_HCOR', 0.12, 734.143510940683, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXF31_HCOR_003');... + atdrift('L082', 0.0471064301693061, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444583, 'UUID', 'BQ6H7_113');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444583);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BPM_110');... + atsextupole('SXD31_VCOR', 0.09, -681.129428046866, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXD31_VCOR_003');... + atdrift('L071', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'QCORR_126');... + atmarker('GIRDEREND', 'EApertures', [0.006 0.006]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.008 0.008]);... + atmarker('GIRDERSTART', 'EApertures', [0.008 0.008]);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008], 'UUID', 'BD4H7_057');... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702353, -1.86297299994296, 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0342430714728858);... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702353, -1.86297299994296, 'EApertures', [0.008 0.008], 'ExitAngle', 0.0342430714728858);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00758974358974359 0.00758974358974359]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00717948717948718 0.00717948717948718], 'UUID', 'QCORR_127');... + atdrift('L071', 0.048, 'EApertures', [0.00661538461538461 0.00661538461538461]);... + atsextupole('SXD3', 0.09, -753.118527609963, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'SXD3_007');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_13_2', 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444583, 'UUID', 'BQ6H7_115');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444583);... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF3_QCORROCT_101_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -440.259660850112], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'OCTF3_QCORROCT_101_QT_001');... + atdrift('L081', 0.06, 'EApertures', [0.006 0.006]);... + atsextupole('SXF3_HCOR', 0.12, 675.00095481734, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXF3_HCOR_005');... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444583, 'UUID', 'BQ6H7_117');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444583);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BPM_111');... + atsextupole('SXD3_VCOR', 0.09, -753.118527609963, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXD3_VCOR_007');... + atdrift('L071', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'QCORR_128');... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00766666666666667 0.00766666666666667]);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008], 'UUID', 'BD4H7_059');... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702353, -1.86297299994296, 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0342430714728858);... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702352, -1.86297299994296, 'EApertures', [0.008 0.008], 'ExitAngle', 0.0342430714728858);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008]);... + atmarker('GIRDEREND', 'EApertures', [0.00785 0.00785]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.0076 0.0076]);... + atmarker('GIRDERSTART', 'EApertures', [0.00735 0.00735]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00715 0.00715], 'UUID', 'QCORR_129');... + atdrift('L071', 0.048, 'EApertures', [0.00665 0.00665]);... + atsextupole('SXD3', 0.09, -753.118527609963, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'SXD3_008');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_13_3', 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444582, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444582, 'UUID', 'BQ6H7_119');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444582, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444582);... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF3_QCORROCT_102_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -440.259660850112], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'OCTF3_QCORROCT_102_QT_001');... + atdrift('L081', 0.06, 'EApertures', [0.006 0.006]);... + atsextupole('SXF33_HCOR', 0.12, 686.795497427942, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXF33_HCOR_005');... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsbend('BQ6HC7', 0.0689196396343699, -0.00144054604712974, 8.95984862959226, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00144054604712974, 'UUID', 'BQ6HC7_029');... + atsbend('BQ6HC7', 0.0689196396343699, -0.00144054604712974, 8.95984862959226, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00144054604712974);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BPM_112');... + atsextupole('SXD33_VCOR', 0.09, -764.318658802759, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXD33_VCOR_003');... + atdrift('L071C', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'QCORR_130');... + atdrift('L073C', 0.0430773209057085, 'EApertures', [0.00714285714285714 0.00714285714285714]);... + atsbend('BD3HC7', 0.01, 0.000258818071001969, -1.37551837900507, 'EApertures', [0.008 0.00786363636363636], 'UUID', 'BD3HC7_015');... + atsbend('BD4HC71', 0.03, 0.00188018240208164, -2.57765200910186, 'EApertures', [0.008 0.00769318181818182], 'EntranceAngle', 0.00982777557557598);... + atsbend('BD4HC7', 0.253621983633988, 0.0158951863469887, -2.57765200910186, 'EApertures', [0.008 0.00632954545454545]);... + atsbend('BD4HC71', 0.03, 0.00188018240208164, -2.57765200910186, 'EApertures', [0.008 0.005], 'ExitAngle', 0.00982777557557598);... + atsbend('BD5HC7', 0.0231155237960032, 0.00240516115877823, 0.0, 'EApertures', [0.008 0.005]);... + atsbend('BD6HC7', 0.0856857672699483, 0.0117810198825822, 0.0, 'EApertures', [0.008 0.00425]);... + atsbend('BD6HC7', 0.0856857672699483, 0.0117810198825822, 0.0, 'EApertures', [0.008 0.00457894736842105]);... + atsbend('BD5HC7', 0.0231155237960032, 0.00240516115877823, 0.0, 'EApertures', [0.008 0.005]);... + atsbend('BD4HC71', 0.03, 0.00188018240208164, -2.57765200910186, 'EApertures', [0.008 0.00518367346938775], 'EntranceAngle', 0.00982777557557598);... + atsbend('BD4HC7', 0.253621983633988, 0.0158951863469887, -2.57765200910186, 'EApertures', [0.008 0.00640816326530612]);... + atsbend('BD4HC71', 0.03, 0.00188018240208164, -2.57765200910186, 'EApertures', [0.008 0.00763265306122449], 'ExitAngle', 0.00982777557557598);... + atsbend('BD3HC7', 0.01, 0.000258818071001969, -1.37551837900507, 'EApertures', [0.008 0.00781632653061225]);... + atdrift('L073C', 0.0430773209057085, 'EApertures', [0.00793939393939394 0.00793939393939394]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00739393939393939 0.00739393939393939], 'UUID', 'QCORR_131');... + atdrift('L071C', 0.048, 'EApertures', [0.00678787878787879 0.00678787878787879]);... + atsextupole('SXD33', 0.09, -764.318658802759, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.007, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'SXD33_003');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_13_4', 'EApertures', [0.006 0.006]);... + atsbend('BQ6HC7', 0.0689196396343699, -0.00144054604712974, 8.95984862959226, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00144054604712974, 'UUID', 'BQ6HC7_031');... + atsbend('BQ6HC7', 0.0689196396343699, -0.00144054604712974, 8.95984862959226, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00144054604712974);... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsextupole('SXF33_HCOR', 0.12, 686.795497427942, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXF33_HCOR_006');... + atdrift('L081', 0.06, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF3_QCORROCT_103_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -440.259660850112], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'OCTF3_QCORROCT_103_QT_001');... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444582, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444582, 'UUID', 'BQ6H7_121');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444582, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444582);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BPM_113');... + atsextupole('SXD3_VCOR', 0.09, -753.118527609963, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXD3_VCOR_008');... + atdrift('L071', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'QCORR_132');... + atmarker('GIRDEREND', 'EApertures', [0.006 0.006]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.008 0.008]);... + atmarker('GIRDERSTART', 'EApertures', [0.008 0.008]);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008], 'UUID', 'BD4H7_061');... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702352, -1.86297299994296, 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0342430714728858);... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702353, -1.86297299994296, 'EApertures', [0.008 0.008], 'ExitAngle', 0.0342430714728858);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00758974358974359 0.00758974358974359]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00717948717948718 0.00717948717948718], 'UUID', 'QCORR_133');... + atdrift('L071', 0.048, 'EApertures', [0.00661538461538461 0.00661538461538461]);... + atsextupole('SXD3', 0.09, -753.118527609963, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'SXD3_009');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_13_5', 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444583, 'UUID', 'BQ6H7_123');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444583);... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsextupole('SXF3_HCOR', 0.12, 675.00095481734, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXF3_HCOR_006');... + atdrift('L081', 0.06, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF3_QCORROCT_104_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -440.259660850112], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'OCTF3_QCORROCT_104_QT_001');... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444583, 'UUID', 'BQ6H7_125');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444583);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BPM_114');... + atsextupole('SXD3_VCOR', 0.09, -753.118527609963, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXD3_VCOR_009');... + atdrift('L071', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'QCORR_134');... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.008 0.008]);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008], 'UUID', 'BD4H7_063');... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702353, -1.86297299994296, 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0342430714728858);... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702353, -1.86297299994296, 'EApertures', [0.008 0.008], 'ExitAngle', 0.0342430714728858);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008]);... + atmarker('GIRDEREND', 'EApertures', [0.00784615384615385 0.00784615384615385]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00758974358974359 0.00758974358974359]);... + atmarker('GIRDERSTART', 'EApertures', [0.00733333333333333 0.00733333333333333]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00712820512820513 0.00712820512820513], 'UUID', 'QCORR_135');... + atdrift('L071', 0.048, 'EApertures', [0.00661538461538461 0.00661538461538461]);... + atsextupole('SXD32', 0.09, -729.521731325636, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'SXD32_003');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444583, 'UUID', 'BQ6H7_127');... + atmarker('CROTCH_13_6', 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444583);... + atdrift('L082', 0.0471064301693061, 'EApertures', [0.006 0.006]);... + atsextupole('SXF32_HCOR', 0.12, 782.043582880113, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXF32_HCOR_003');... + atdrift('L084', 0.048820499745398, 'EApertures', [0.006 0.006]);... + atsbend('BQ4H7', 0.0577872115264688, -0.000403189428060739, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.000403189428060739, 'UUID', 'BQ4H7_031');... + atsbend('BQ4H7', 0.0577872115264688, -0.000403189428060739, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'ExitAngle', -0.000403189428060739);... + atdrift('L085', 0.100096014361354, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF3_QCORROCT_105_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -440.259660850112], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'OCTF3_QCORROCT_105_QT_001');... + atdrift('L05', 0.06, 'EApertures', [0.006 0.006]);... + atsextupole('SXD32_VCOR', 0.09, -729.521731325636, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXD32_VCOR_003');... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BPM_115');... + atdrift('L03', 0.176061846245862, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atsbend('BD27', 0.0284984341976272, 0.00225714925227511, -1.18160211440423, 'EApertures', [0.008 0.008], 'UUID', 'BD27_031');... + atsbend('BD17', 0.0959771205127194, 0.00913608259524057, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0205293144427562);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524057, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524057, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524057, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'ExitAngle', 0.0205293144427562);... + atsbend('BD27', 0.0284984341976272, 0.00225714925227511, -1.18160211440423, 'EApertures', [0.00755555555555556 0.00755555555555556]);... + atdrift('LBD1C', 0.0395472975018047, 'EApertures', [0.00644444444444444 0.00644444444444444]);... + atdrift('D05HC', 0.00499988833315879, 'EApertures', [0.006 0.006]);... + atquadrupole('Q11', 0.0789546761676337, -12.3862992113073, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.07, 'EApertures', [0.006 0.006], 'UUID', 'Q11_011');... + atdrift('D03HC', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH9_COR', 0.06, -668.536791100884, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SH9_COR_011');... + atdrift('D022HCQ', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'QCORR_136');... + atdrift('D041HCQ', 0.108, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_13_7', 'EApertures', [0.006 0.006]);... + atquadrupole('Q10', 0.0844113331477278, 13.6568508102765, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.076, 'EApertures', [0.006 0.006], 'UUID', 'Q10_011');... + atdrift('D03HC', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH8', 0.06, -366.603155097304, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'UUID', 'SH8_011');... + atdrift('D022HCQ', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'QCORR_137');... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BPM_116');... + atdrift('D06HCQ', 0.158, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atquadrupole('Q9', 0.106409911705093, 12.8349230947647, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.098, 'EApertures', [0.006 0.006], 'UUID', 'Q9_011');... + atdrift('D032HC', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH7_COR', 0.06, 832.664084881681, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SH7_COR_011');... + atdrift('D022HC', 0.06, 'EApertures', [0.006 0.006]);... + atmultipole('OH7_QCORROCT_106_QT', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'MaxOrder', 3, 'UUID', 'OH7_QCORROCT_106_QT_001');... + atdrift('D031HC', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('Q8', 0.0786666675115942, -13.273182641893, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.07, 'EApertures', [0.006 0.006], 'UUID', 'Q8_011');... + atmarker('GIRDEREND', 'EApertures', [0.0064 0.0064]);... + atmarker('AN-C13END', 'EApertures', [0.0064 0.0064]);... + atmarker('SD14CSTART', 'EApertures', [0.0064 0.0064]);... + atmarker('VANNE_START', 'EApertures', [0.0064 0.0064]);... + atmarker('FCOR_14_1', 'UUID', 'FCOR_14_1_001');... + atmonitor('BPM', 'EApertures', [0.0064 0.0064], 'UUID', 'BPM_117');... + atdrift('SD1C_31', 0.322, 'Action', 'BPM', 'EApertures', [0.00854545454545455 0.00854545454545455]);... + atmarker('VANNE_END', 'EApertures', [0.01 0.01]);... + atdrift('SD1C_32', 0.0835458676300582, 'Action', 'BPM', 'EApertures', [0.01 0.01]);... + atmarker('ONDULEURMARK_START', 'EApertures', [0.042 0.0125]);... + atdrift('SD1C_33', 1.189, 'Action', 'BPM', 'EApertures', [0.0475 0.002 ]);... + atmarker('SD14CCENTER', 'EApertures', [0.0475 0.002 ]);... + atdrift('SD1C_34', 1.189, 'Action', 'BPM', 'EApertures', [0.0475 0.002 ]);... + atmarker('ONDULEURMARK_END', 'EApertures', [0.042 0.0125]);... + atdrift('SD1C_35', 0.0835458676300582, 'Action', 'BPM', 'EApertures', [0.01 0.01]);... + atmarker('VANNE_START', 'EApertures', [0.01 0.01]);... + atdrift('SD1C_36', 0.322, 'Action', 'BPM', 'EApertures', [0.00847619047619048 0.00847619047619048]);... + atmarker('FCOR_14_2', 'UUID', 'FCOR_14_2_001');... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BPM_118');... + atmarker('VANNE_END', 'EApertures', [0.006 0.006]);... + atmarker('SD14CEND', 'EApertures', [0.006 0.006]);... + atmarker('AN-C14START', 'EApertures', [0.006 0.006]);... + atmarker('GIRDERSTART', 'EApertures', [0.006 0.006]);... + atquadrupole('Q8', 0.0786666675115942, -13.273182641893, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.07, 'EApertures', [0.006 0.006], 'UUID', 'Q8_012');... + atdrift('D031HC', 0.048, 'EApertures', [0.006 0.006]);... + atmultipole('OH7_QCORROCT_107_QT', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'MaxOrder', 3, 'UUID', 'OH7_QCORROCT_107_QT_001');... + atdrift('D022HC', 0.06, 'EApertures', [0.006 0.006]);... + atsextupole('SH7_COR', 0.06, 832.664084881681, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SH7_COR_012');... + atdrift('D032HC', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('Q9', 0.106409911705093, 12.8349230947647, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.098, 'EApertures', [0.006 0.006], 'UUID', 'Q9_012');... + atdrift('D06HCQ', 0.158, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BPM_119');... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'QCORR_138');... + atdrift('D022HCQ', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH8', 0.06, -366.603155097304, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'UUID', 'SH8_012');... + atdrift('D03HC', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('Q10', 0.0844113331477278, 13.6568508102765, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.076, 'EApertures', [0.006 0.006], 'UUID', 'Q10_012');... + atdrift('D041HCQ', 0.108, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'QCORR_139');... + atdrift('D022HCQ', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH9_COR', 0.06, -668.536791100884, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SH9_COR_012');... + atdrift('D03HC', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('Q11', 0.0789546761676337, -12.3862992113073, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.07, 'EApertures', [0.006 0.006], 'UUID', 'Q11_012');... + atdrift('D05HC', 0.00499988833315879, 'EApertures', [0.006 0.006]);... + atdrift('LBD1C', 0.0395472975018047, 'EApertures', [0.006 0.006]);... + atsbend('BD24', 0.0284984341976272, 0.00215787898333112, -1.18160211440423, 'EApertures', [0.00766666666666667 0.00766666666666667], 'UUID', 'BD24_021');... + atsbend('BD14', 0.0959771205127194, 0.00873427426315538, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0205293144427562);... + atsbend('BD14', 0.0959771205127194, 0.00873427426315538, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD14', 0.0959771205127194, 0.00873427426315538, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD14', 0.0959771205127194, 0.00873427426315538, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'ExitAngle', 0.0205293144427562);... + atsbend('BD24', 0.0284984341976272, 0.00215787898333112, -1.18160211440423, 'EApertures', [0.00786666666666667 0.00786666666666667]);... + atdrift('L03', 0.176061846245862, 'EApertures', [0.006 0.006]);... + atsextupole('SXD41', 0.09, -735.729130725313, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0075, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'SXD41_003');... + atdrift('L04', 0.111275514615956, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_14_1', 'EApertures', [0.006 0.006]);... + atmultipole('OCTF4_QCORROCT_108_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -183.939387091905], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'OCTF4_QCORROCT_108_QT_001');... + atdrift('L084', 0.048820499745398, 'EApertures', [0.006 0.006]);... + atsbend('BQ4H4', 0.0577872115264688, -0.000385457006104762, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.000385457006104762, 'UUID', 'BQ4H4_021');... + atsbend('BQ4H4', 0.0577872115264688, -0.000385457006104762, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'ExitAngle', -0.000385457006104762);... + atdrift('L084', 0.048820499745398, 'EApertures', [0.006 0.006]);... + atsextupole('SXF41_HCOR', 0.12, 846.26087738574, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXF41_HCOR_003');... + atdrift('L082', 0.0471064301693061, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H4', 0.0689196396343699, -0.00144531683192883, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00144531683192883, 'UUID', 'BQ6H4_041');... + atsbend('BQ6H4', 0.0689196396343699, -0.00144531683192883, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00144531683192883);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BPM_120');... + atsextupole('SXD41_VCOR', 0.09, -735.729130725313, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXD41_VCOR_003');... + atdrift('L071', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'QCORR_140');... + atmarker('GIRDEREND', 'EApertures', [0.006 0.006]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00666666666666667 0.00666666666666667]);... + atmarker('GIRDERSTART', 'EApertures', [0.008 0.008]);... + atsbend('BD4H4', 0.0393049032024916, 0.00234342379845867, -1.11997137375817, 'EApertures', [0.008 0.008], 'UUID', 'BD4H4_021');... + atsbend('BD5H4', 0.398927492296932, 0.0303936245742024, -1.86297299994296, 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0342430714728858);... + atsbend('BD5H4', 0.398927492296932, 0.0303936245742024, -1.86297299994296, 'EApertures', [0.008 0.008], 'ExitAngle', 0.0342430714728858);... + atsbend('BD4H4', 0.0393049032024916, 0.00234342379845867, -1.11997137375817, 'EApertures', [0.008 0.008]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00775 0.00775]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.0073 0.0073], 'UUID', 'QCORR_141');... + atdrift('L071', 0.048, 'EApertures', [0.0068 0.0068]);... + atsextupole('SXD4', 0.09, -748.397964225485, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'SXD4_003');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_14_2', 'EApertures', [0.006 0.006]);... + atsbend('BQ6H4', 0.0689196396343699, -0.00144531683192883, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00144531683192883, 'UUID', 'BQ6H4_043');... + atsbend('BQ6H4', 0.0689196396343699, -0.00144531683192883, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00144531683192883);... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsextupole('SXF4_HCOR', 0.12, 811.758492840009, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXF4_HCOR_003');... + atdrift('L081', 0.06, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF4_QCORROCT_109_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -183.939387091905], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'OCTF4_QCORROCT_109_QT_001');... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H4', 0.0689196396343699, -0.00144531683192883, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00144531683192883, 'UUID', 'BQ6H4_045');... + atsbend('BQ6H4', 0.0689196396343699, -0.00144531683192883, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00144531683192883);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BPM_121');... + atsextupole('SXD4_VCOR', 0.09, -748.397964225485, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXD4_VCOR_003');... + atdrift('L071', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'QCORR_142');... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.0068 0.0068]);... + atsbend('BD4H4', 0.0393049032024916, 0.00234342379845867, -1.11997137375817, 'EApertures', [0.008 0.008], 'UUID', 'BD4H4_023');... + atsbend('BD5H4', 0.398927492296932, 0.0303936245742024, -1.86297299994296, 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0342430714728858);... + atsbend('BD5H4', 0.398927492296932, 0.0303936245742024, -1.86297299994296, 'EApertures', [0.008 0.008], 'ExitAngle', 0.0342430714728858);... + atsbend('BD4H4', 0.0393049032024916, 0.00234342379845867, -1.11997137375817, 'EApertures', [0.008 0.008]);... + atmarker('GIRDEREND', 'EApertures', [0.008 0.008]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00774358974358974 0.00774358974358974]);... + atmarker('GIRDERSTART', 'EApertures', [0.00748717948717949 0.00748717948717949]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00733333333333333 0.00733333333333333], 'UUID', 'QCORR_143');... + atdrift('L071', 0.048, 'EApertures', [0.00682051282051282 0.00682051282051282]);... + atsextupole('SXD42', 0.09, -652.433055715131, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'SXD42_003');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_14_3', 'EApertures', [0.006 0.006]);... + atsbend('BQ6H4', 0.0689196396343699, -0.00144531683192883, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00144531683192883, 'UUID', 'BQ6H4_047');... + atsbend('BQ6H4', 0.0689196396343699, -0.00144531683192883, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00144531683192883);... + atdrift('L082', 0.0471064301693061, 'EApertures', [0.006 0.006]);... + atsextupole('SXF42_HCOR', 0.12, 832.798385062542, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXF42_HCOR_003');... + atdrift('L084', 0.048820499745398, 'EApertures', [0.006 0.006]);... + atsbend('BQ4H4', 0.0577872115264688, -0.000385457006104762, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.000385457006104762, 'UUID', 'BQ4H4_023');... + atsbend('BQ4H4', 0.0577872115264688, -0.000385457006104762, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'ExitAngle', -0.000385457006104762);... + atdrift('L085', 0.100096014361354, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF4_QCORROCT_110_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -183.939387091905], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'OCTF4_QCORROCT_110_QT_001');... + atdrift('L05', 0.06, 'EApertures', [0.008 0.008]);... + atsextupole('SXD42_VCOR', 0.09, -652.433055715131, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.0068 0.0068], 'KickAngle', [0. 0.], 'UUID', 'SXD42_VCOR_003');... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BPM_122');... + atdrift('L03', 0.176061846245862, 'Action', 'BPM', 'EApertures', [0.006 0.006]);... + atsbend('BD24', 0.0284984341976272, 0.00215787898333112, -1.18160211440423, 'EApertures', [0.008 0.008], 'UUID', 'BD24_023');... + atsbend('BD14', 0.0959771205127194, 0.00873427426315538, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0205293144427562);... + atsbend('BD14', 0.0959771205127194, 0.00873427426315538, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD14', 0.0959771205127194, 0.00873427426315538, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD14', 0.0959771205127194, 0.00873427426315538, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'ExitAngle', 0.0205293144427562);... + atsbend('BD24', 0.0284984341976272, 0.00215787898333112, -1.18160211440423, 'EApertures', [0.00715789473684211 0.00715789473684211]);... + atdrift('LBD1M', 0.0395472975018047, 'EApertures', [0.00610526315789474 0.00610526315789474]);... + atdrift('D05HM', 0.0250000000000106, 'EApertures', [0.006 0.006]);... + atquadrupole('Q15', 0.0669665183225528, -13.0158117569202, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.058, 'EApertures', [0.006 0.006], 'UUID', 'Q15_005');... + atdrift('D03HM', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH12_COR', 0.06, -549.693929899786, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SH12_COR_005');... + atdrift('D022HMQ', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'QCORR_144');... + atdrift('D040HMQ', 0.108, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_14_4', 'EApertures', [0.006 0.006]);... + atquadrupole('Q14', 0.0669654375650683, 13.020316581933, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.058, 'EApertures', [0.006 0.006], 'UUID', 'Q14_005');... + atdrift('D03HM', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH11', 0.06, -342.377584906705, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'UUID', 'SH11_005');... + atdrift('D022HM', 0.06, 'EApertures', [0.006 0.006]);... + atmultipole('OH11_QCORROCT_111', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.0068 0.0068], 'MaxOrder', 3, 'UUID', 'OH11_QCORROCT_111_001');... + atmonitor('BPM', 'EApertures', [0.008 0.008], 'UUID', 'BPM_123');... + atdrift('D06HM', 0.13, 'Action', 'BPM', 'EApertures', [0.0076 0.0076]);... + atquadrupole('Q13', 0.105549024737856, 14.4734284467452, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.098, 'EApertures', [0.006 0.006], 'UUID', 'Q13_005');... + atdrift('D032HM', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH10_COR', 0.06, 767.610099578133, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SH10_COR_005');... + atdrift('D022HM', 0.06, 'EApertures', [0.006 0.006]);... + atmultipole('OH10_QCORROCT_112_QT', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'MaxOrder', 3, 'UUID', 'OH10_QCORROCT_112_QT_001');... + atdrift('D031HM', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('Q12', 0.0785288819736742, -13.6759084023114, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.07, 'EApertures', [0.006 0.006], 'UUID', 'Q12_005');... + atmarker('GIRDEREND', 'EApertures', [0.006 0.006]);... + atmarker('AN-C14END', 'EApertures', [0.006 0.006]);... + atmarker('SD15MCSTART', 'EApertures', [0.006 0.006]);... + atmarker('VANNE_START', 'EApertures', [0.006 0.006]);... + atmarker('FCOR_15_1', 'UUID', 'FCOR_15_1_001');... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BPM_124');... + atdrift('SD1M_13', 0.322, 'Action', 'BPM', 'EApertures', [0.006 0.006]);... + atmarker('VANNE_END', 'EApertures', [0.01 0.01]);... + atdrift('SD1M_14', 0.287381847814076, 'Action', 'BPM', 'RApertures', [-0.0045 0.004 -0.0035 0.0035]);... + atmarker('ONDULEURMARK_START', 'EApertures', [0.0045 0.0035]);... + atdrift('SD1M_15', 1.29, 'Action', 'BPM', 'EApertures', [0.0045 0.0035]);... + atmarker('SD15MCCENTER', 'EApertures', [0.0045 0.0035]);... + atdrift('SD1M_16', 1.29, 'Action', 'BPM', 'EApertures', [0.0045 0.0035]);... + atmarker('ONDULEURMARK_END', 'EApertures', [0.0045 0.0035]);... + atdrift('SD1M_17', 0.287381847814076, 'Action', 'BPM', 'EApertures', [0.00660294117647059 0.00598529411764706]);... + atmarker('VANNE_START', 'EApertures', [0.01 0.01]);... + atdrift('SD1M_18', 0.322, 'Action', 'BPM', 'EApertures', [0.00838095238095238 0.00838095238095238]);... + atmarker('FCOR_15_2', 'UUID', 'FCOR_15_2_001');... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BPM_125');... + atmarker('VANNE_END', 'EApertures', [0.006 0.006]);... + atmarker('SD15MCEND', 'EApertures', [0.006 0.006]);... + atmarker('AN-C15START', 'EApertures', [0.006 0.006]);... + atmarker('GIRDERSTART', 'EApertures', [0.006 0.006]);... + atquadrupole('Q12', 0.0785288819736742, -13.6759084023114, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.07, 'EApertures', [0.006 0.006], 'UUID', 'Q12_006');... + atdrift('D031HM', 0.048, 'EApertures', [0.006 0.006]);... + atmultipole('OH10_QCORROCT_113_QT', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'MaxOrder', 3, 'UUID', 'OH10_QCORROCT_113_QT_001');... + atdrift('D022HM', 0.06, 'EApertures', [0.006 0.006]);... + atsextupole('SH10_COR', 0.06, 767.610099578133, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SH10_COR_006');... + atdrift('D032HM', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('Q13', 0.105549024737856, 14.4734284467452, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.098, 'EApertures', [0.006 0.006], 'UUID', 'Q13_006');... + atdrift('D06HM', 0.13, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.0064 0.0064], 'UUID', 'BPM_126');... + atmultipole('OH11_QCORROCT_114', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'MaxOrder', 3, 'UUID', 'OH11_QCORROCT_114_001');... + atdrift('D022HM', 0.06, 'EApertures', [0.006 0.006]);... + atsextupole('SH11', 0.06, -342.377584906705, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'UUID', 'SH11_006');... + atdrift('D03HM', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('Q14', 0.0669654375650683, 13.020316581933, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.058, 'EApertures', [0.006 0.006], 'UUID', 'Q14_006');... + atdrift('D040HMQ', 0.108, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'QCORR_145');... + atdrift('D022HMQ', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH12_COR', 0.06, -549.693929899786, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SH12_COR_006');... + atdrift('D03HM', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('Q15', 0.0669665183225528, -13.0158117569202, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.058, 'EApertures', [0.006 0.006], 'UUID', 'Q15_006');... + atdrift('D05HM', 0.0250000000000106, 'EApertures', [0.006 0.006]);... + atdrift('LBD1M', 0.0395472975018047, 'EApertures', [0.006 0.006]);... + atsbend('BD27', 0.0284984341976272, 0.00225714925227518, -1.18160211440423, 'EApertures', [0.008 0.008], 'UUID', 'BD27_033');... + atsbend('BD17', 0.0959771205127194, 0.00913608259524086, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0205293144427562);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524086, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524086, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524086, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'ExitAngle', 0.0205293144427562);... + atsbend('BD27', 0.0284984341976272, 0.00225714925227518, -1.18160211440423, 'EApertures', [0.00766666666666667 0.00766666666666667]);... + atdrift('L03', 0.176061846245862, 'EApertures', [0.006 0.006]);... + atsextupole('SXD51', 0.09, -647.766469752565, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0075, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'SXD51_003');... + atmarker('CROTCH_15_1', 'EApertures', [0.006 0.006]);... + atdrift('L04', 0.111275514615956, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF5_QCORROCT_115_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. 353.486738211295], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'OCTF5_QCORROCT_115_QT_001');... + atdrift('L084', 0.048820499745398, 'EApertures', [0.006 0.006]);... + atsbend('BQ4H7', 0.0577872115264688, -0.000403189428060752, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.000403189428060752, 'UUID', 'BQ4H7_033');... + atsbend('BQ4H7', 0.0577872115264688, -0.000403189428060752, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'ExitAngle', -0.000403189428060752);... + atdrift('L084', 0.048820499745398, 'EApertures', [0.006 0.006]);... + atsextupole('SXF51_HCOR', 0.12, 840.822202380127, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXF51_HCOR_003');... + atdrift('L082', 0.0471064301693061, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444587, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444587, 'UUID', 'BQ6H7_129');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444587, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444587);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BPM_127');... + atsextupole('SXD51_VCOR', 0.09, -647.766469752565, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXD51_VCOR_003');... + atdrift('L071', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'QCORR_146');... + atmarker('GIRDEREND', 'EApertures', [0.006 0.006]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.0076 0.0076]);... + atmarker('GIRDERSTART', 'EApertures', [0.008 0.008]);... + atsbend('BD4H7', 0.0393049032024916, 0.0024512298026507, -1.11997137375817, 'EApertures', [0.008 0.008], 'UUID', 'BD4H7_065');... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702363, -1.86297299994296, 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0342430714728858);... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702363, -1.86297299994296, 'EApertures', [0.008 0.008], 'ExitAngle', 0.0342430714728858);... + atsbend('BD4H7', 0.0393049032024916, 0.0024512298026507, -1.11997137375817, 'EApertures', [0.008 0.008]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00758974358974359 0.00758974358974359]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00717948717948718 0.00717948717948718], 'UUID', 'QCORR_147');... + atdrift('L071', 0.048, 'EApertures', [0.00666666666666667 0.00666666666666667]);... + atsextupole('SXD5', 0.09, -673.701263957563, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'SXD5_007');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_15_2', 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444587, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444587, 'UUID', 'BQ6H7_131');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444587, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444587);... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF5_QCORROCT_116_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. 353.486738211295], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'OCTF5_QCORROCT_116_QT_001');... + atdrift('L081', 0.06, 'EApertures', [0.006 0.006]);... + atsextupole('SXF5_HCOR', 0.12, 715.553794609745, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXF5_HCOR_005');... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444587, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444587, 'UUID', 'BQ6H7_133');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444587, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444587);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BPM_128');... + atsextupole('SXD5_VCOR', 0.09, -673.701263957563, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXD5_VCOR_007');... + atdrift('L071', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'QCORR_148');... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.008 0.008]);... + atsbend('BD4H7', 0.0393049032024916, 0.0024512298026507, -1.11997137375817, 'EApertures', [0.008 0.008], 'UUID', 'BD4H7_067');... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702363, -1.86297299994296, 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0342430714728858);... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702352, -1.86297299994296, 'EApertures', [0.008 0.008], 'ExitAngle', 0.0342430714728858);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008]);... + atmarker('GIRDEREND', 'EApertures', [0.00784615384615385 0.00784615384615385]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00758974358974359 0.00758974358974359]);... + atmarker('GIRDERSTART', 'EApertures', [0.00733333333333333 0.00733333333333333]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00712820512820513 0.00712820512820513], 'UUID', 'QCORR_149');... + atdrift('L071', 0.048, 'EApertures', [0.00661538461538461 0.00661538461538461]);... + atsextupole('SXD5', 0.09, -673.701263957563, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'SXD5_008');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_15_3', 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444582, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444582, 'UUID', 'BQ6H7_135');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444582, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444582);... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF5_QCORROCT_117_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. 353.486738211295], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'OCTF5_QCORROCT_117_QT_001');... + atdrift('L081', 0.06, 'EApertures', [0.006 0.006]);... + atsextupole('SXF53_HCOR', 0.12, 711.229968977946, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXF53_HCOR_005');... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsbend('BQ6HC7', 0.0689196396343699, -0.00144054604712974, 8.95984862959226, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00144054604712974, 'UUID', 'BQ6HC7_033');... + atsbend('BQ6HC7', 0.0689196396343699, -0.00144054604712974, 8.95984862959226, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00144054604712974);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BPM_129');... + atsextupole('SXD53_VCOR', 0.09, -625.758067765939, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXD53_VCOR_003');... + atdrift('L071C', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'QCORR_150');... + atdrift('L073C', 0.0430773209057085, 'EApertures', [0.00725 0.00725]);... + atsbend('BD3HC7', 0.01, 0.000258818071001969, -1.37551837900507, 'EApertures', [0.008 0.00789655172413793], 'UUID', 'BD3HC7_017');... + atsbend('BD4HC71', 0.03, 0.00188018240208164, -2.57765200910186, 'EApertures', [0.008 0.00768965517241379], 'EntranceAngle', 0.00982777557557598);... + atsbend('BD4HC7', 0.253621983633988, 0.0158951863469887, -2.57765200910186, 'EApertures', [0.008 0.00631034482758621]);... + atsbend('BD4HC71', 0.03, 0.00188018240208164, -2.57765200910186, 'EApertures', [0.008 0.005], 'ExitAngle', 0.00982777557557598);... + atsbend('BD5HC7', 0.0231155237960032, 0.00240516115877823, 0.0, 'EApertures', [0.008 0.005]);... + atsbend('BD6HC7', 0.0856857672699483, 0.0117810198825822, 0.0, 'EApertures', [0.008 0.00425]);... + atsbend('BD6HC7', 0.0856857672699483, 0.0117810198825822, 0.0, 'EApertures', [0.008 0.0046]);... + atsbend('BD5HC7', 0.0231155237960032, 0.00240516115877823, 0.0, 'EApertures', [0.008 0.005]);... + atsbend('BD4HC71', 0.03, 0.00188018240208164, -2.57765200910186, 'EApertures', [0.008 0.00518367346938775], 'EntranceAngle', 0.00982777557557598);... + atsbend('BD4HC7', 0.253621983633988, 0.0158951863469887, -2.57765200910186, 'EApertures', [0.008 0.00640816326530612]);... + atsbend('BD4HC71', 0.03, 0.00188018240208164, -2.57765200910186, 'EApertures', [0.008 0.00763265306122449], 'ExitAngle', 0.00982777557557598);... + atsbend('BD3HC7', 0.01, 0.000258818071001969, -1.37551837900507, 'EApertures', [0.008 0.00781632653061225]);... + atdrift('L073C', 0.0430773209057085, 'EApertures', [0.008 0.008]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00739393939393939 0.00739393939393939], 'UUID', 'QCORR_151');... + atdrift('L071C', 0.048, 'EApertures', [0.00678787878787879 0.00678787878787879]);... + atsextupole('SXD53', 0.09, -625.758067765939, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.007, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'SXD53_003');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_15_4', 'EApertures', [0.006 0.006]);... + atsbend('BQ6HC7', 0.0689196396343699, -0.00144054604712974, 8.95984862959226, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00144054604712974, 'UUID', 'BQ6HC7_035');... + atsbend('BQ6HC7', 0.0689196396343699, -0.00144054604712974, 8.95984862959226, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00144054604712974);... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsextupole('SXF53_HCOR', 0.12, 711.229968977946, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXF53_HCOR_006');... + atdrift('L081', 0.06, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF5_QCORROCT_118_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. 353.486738211295], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'OCTF5_QCORROCT_118_QT_001');... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444582, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444582, 'UUID', 'BQ6H7_137');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444582, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444582);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BPM_130');... + atsextupole('SXD5_VCOR', 0.09, -673.701263957563, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXD5_VCOR_008');... + atdrift('L071', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'QCORR_152');... + atmarker('GIRDEREND', 'EApertures', [0.006 0.006]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00766666666666667 0.00766666666666667]);... + atmarker('GIRDERSTART', 'EApertures', [0.008 0.008]);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008], 'UUID', 'BD4H7_069');... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702352, -1.86297299994296, 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0342430714728858);... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702363, -1.86297299994296, 'EApertures', [0.008 0.008], 'ExitAngle', 0.0342430714728858);... + atsbend('BD4H7', 0.0393049032024916, 0.0024512298026507, -1.11997137375817, 'EApertures', [0.008 0.008]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00758974358974359 0.00758974358974359]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00717948717948718 0.00717948717948718], 'UUID', 'QCORR_153');... + atdrift('L071', 0.048, 'EApertures', [0.00666666666666667 0.00666666666666667]);... + atsextupole('SXD5', 0.09, -673.701263957563, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'SXD5_009');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_15_5', 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444587, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444587, 'UUID', 'BQ6H7_139');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444587, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444587);... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsextupole('SXF5_HCOR', 0.12, 715.553794609745, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXF5_HCOR_006');... + atdrift('L081', 0.06, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF5_QCORROCT_119_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. 353.486738211295], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'OCTF5_QCORROCT_119_QT_001');... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444587, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444587, 'UUID', 'BQ6H7_141');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444587, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444587);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BPM_131');... + atsextupole('SXD5_VCOR', 0.09, -673.701263957563, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXD5_VCOR_009');... + atdrift('L071', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'QCORR_154');... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.008 0.008]);... + atsbend('BD4H1', 0.0393049032024916, 0.00245617208465066, -1.11997137375817, 'EApertures', [0.008 0.008], 'UUID', 'BD4H1_001');... + atsbend('BD5H1', 0.398927492296932, 0.0318559418401438, -1.86297299994296, 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0342430714728858);... + atsbend('BD5H1', 0.398927492296932, 0.0318559418401438, -1.86297299994296, 'EApertures', [0.008 0.008], 'ExitAngle', 0.0342430714728858);... + atsbend('BD4H1', 0.0393049032024916, 0.00245617208465066, -1.11997137375817, 'EApertures', [0.008 0.008]);... + atmarker('GIRDEREND', 'EApertures', [0.00784615384615385 0.00784615384615385]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00758974358974359 0.00758974358974359]);... + atmarker('GIRDERSTART', 'EApertures', [0.00733333333333333 0.00733333333333333]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00717948717948718 0.00717948717948718], 'UUID', 'QCORR_155');... + atdrift('L071', 0.048, 'EApertures', [0.00661538461538461 0.00661538461538461]);... + atsextupole('SXD52', 0.09, -734.183150728341, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'SXD52_003');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H1', 0.0689196396343699, -0.00140236294993324, 8.79568061387988, 'Action', 'FocTune', 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444587, 'UUID', 'BQ6H1_001');... + atmarker('CROTCH_15_6', 'EApertures', [0.006 0.006]);... + atsbend('BQ6H1', 0.0689196396343699, -0.00140236294993324, 8.79568061387988, 'Action', 'FocTune', 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444587);... + atdrift('L082', 0.0471064301693061, 'EApertures', [0.006 0.006]);... + atsextupole('SXF52_HCOR', 0.12, 788.330339912278, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXF52_HCOR_003');... + atdrift('L084', 0.048820499745398, 'EApertures', [0.006 0.006]);... + atsbend('BQ4H7', 0.0577872115264688, -0.000403189428060752, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.000403189428060752, 'UUID', 'BQ4H7_035');... + atsbend('BQ4H7', 0.0577872115264688, -0.000403189428060752, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'ExitAngle', -0.000403189428060752);... + atdrift('L085', 0.100096014361354, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF5_QCORROCT_120_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. 353.486738211295], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'OCTF5_QCORROCT_120_QT_001');... + atdrift('L05', 0.06, 'EApertures', [0.006 0.006]);... + atsextupole('SXD52_VCOR', 0.09, -734.183150728341, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXD52_VCOR_003');... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BPM_132');... + atdrift('L03', 0.176061846245862, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atsbend('BD21', 0.0284984341976272, 0.00221003821940246, -1.18160211440423, 'EApertures', [0.008 0.008], 'UUID', 'BD21_001');... + atsbend('BD11', 0.0959771205127194, 0.00894539503346868, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0205293144427562);... + atsbend('BD11', 0.0959771205127194, 0.00894539503346868, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD11', 0.0959771205127194, 0.00894539503346868, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD11', 0.0959771205127194, 0.00894539503346868, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'ExitAngle', 0.0205293144427562);... + atsbend('BD21', 0.0284984341976272, 0.00221003821940246, -1.18160211440423, 'EApertures', [0.0085 0.0085]);... + atdrift('LBD1T', 0.0395472975018047, 'EApertures', [0.0085 0.0085]);... + atdrift('D021HTQ', 0.0529998883331588, 'EApertures', [0.0085 0.0085]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.0085 0.0085], 'UUID', 'QCORR_156');... + atdrift('D022HTQ', 0.048, 'EApertures', [0.0085 0.0085]);... + atsextupole('SH15_VCOR', 0.075, -151.263624499999, 'Action', 'SxtHarm', 'BoDiameter', 0.021, 'BoGap', 0.01, 'BoLength', 0.075, 'EApertures', [0.0085 0.0085], 'KickAngle', [0. 0.], 'UUID', 'SH15_VCOR_003');... + atdrift('D05HT', 0.22, 'EApertures', [0.0085 0.0085]);... + atquadrupole('Q21', 0.118594861317721, -8.24976089349076, 'BoDiameter', 0.023, 'BoGap', 0.01, 'BoLength', 0.106, 'EApertures', [0.0085 0.0085], 'UUID', 'Q21_003');... + atmonitor('BPM', 'EApertures', [0.0085 0.0085], 'UUID', 'BPM_133');... + atdrift('D041HT', 0.18, 'Action', 'BPM', 'EApertures', [0.0085 0.0085]);... + atmarker('CROTCH_15_7', 'EApertures', [0.0085 0.0085]);... + atquadrupole('Q20', 0.122440853589187, 8.42972886822337, 'BoDiameter', 0.023, 'BoGap', 0.01, 'BoLength', 0.11, 'EApertures', [0.0085 0.0085], 'UUID', 'Q20_003');... + atdrift('D03HT', 0.048, 'EApertures', [0.0085 0.0085]);... + atsextupole('SH14_HCOR', 0.075, -335.348316276613, 'Action', 'SxtHarm', 'BoDiameter', 0.021, 'BoGap', 0.01, 'BoLength', 0.075, 'EApertures', [0.0085 0.0085], 'KickAngle', [0. 0.], 'UUID', 'SH14_HCOR_003');... + atdrift('D022HT', 0.06, 'EApertures', [0.0085 0.0085]);... + atmultipole('OH141_QCORROCT_121', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.0085 0.0085], 'MaxOrder', 3, 'UUID', 'OH141_QCORROCT_121_001');... + atdrift('D03HT', 0.048, 'EApertures', [0.0085 0.0085]);... + atquadrupole('Q19', 0.118733643867383, 8.01541064610388, 'BoDiameter', 0.023, 'BoGap', 0.01, 'BoLength', 0.106, 'EApertures', [0.0085 0.0085], 'UUID', 'Q19_003');... + atdrift('D03HT', 0.048, 'EApertures', [0.0085 0.0085]);... + atsextupole('SH13_COR', 0.075, 476.313437796132, 'Action', 'SxtHarm', 'BoDiameter', 0.021, 'BoGap', 0.01, 'BoLength', 0.075, 'EApertures', [0.0085 0.0085], 'KickAngle', [0. 0.], 'UUID', 'SH13_COR_003');... + atdrift('D022HT', 0.06, 'EApertures', [0.008 0.008]);... + atmultipole('OH131_QCORROCT_122', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.008 0.008], 'MaxOrder', 3, 'UUID', 'OH131_QCORROCT_122_001');... + atdrift('D03HT', 0.048, 'EApertures', [0.008 0.008]);... + atquadrupole('Q18', 0.0932053766613153, -7.2301598888015, 'BoDiameter', 0.023, 'BoGap', 0.01, 'BoLength', 0.08, 'EApertures', [0.008 0.008], 'UUID', 'Q18_003');... + atmarker('GIRDEREND', 'EApertures', [0.008 0.008]);... + atmarker('AN-C15END', 'EApertures', [0.008 0.008]);... + atmarker('SD16LSTART', 'EApertures', [0.008 0.008]);... + atmarker('VANNE_START', 'EApertures', [0.008 0.008]);... + atmarker('FCOR_16_1', 'UUID', 'FCOR_16_1_001');... + atmonitor('BPM', 'EApertures', [0.008 0.008], 'UUID', 'BPM_134');... + atdrift('SD12_1', 0.272, 'Action', 'BPM', 'EApertures', [0.0107619047619048 0.0107619047619048]);... + atmarker('VANNE_END', 'EApertures', [0.012 0.012]);... + atmarker('ANATOMIX_START', 'EApertures', [0.012 0.012]);... + atdrift('SD12_2', 0.396170347288528, 'Action', 'BPM', 'EApertures', [0.0408461538461539 0.0124807692307692]);... + atmarker('ONDULEURMARK_START', 'EApertures', [0.0475 0.0025]);... + atdrift('SD12_3', 1.0, 'Action', 'BPM', 'EApertures', [0.0475 0.0025]);... + atmarker('SD16LACENTER', 'EApertures', [0.0475 0.0025]);... + atdrift('SD12_4', 1.0, 'Action', 'BPM', 'EApertures', [0.0475 0.0025]);... + atmarker('ONDULEURMARK_END', 'EApertures', [0.0475 0.0025]);... + atdrift('SD12_5', 0.396170347288528, 'Action', 'BPM', 'EApertures', [0.027 0.01225]);... + atmarker('ANATOMIX_END', 'EApertures', [0.012 0.012]);... + atmarker('VANNE_START', 'EApertures', [0.012 0.012]);... + atdrift('SD12_6', 0.272, 'Action', 'BPM', 'EApertures', [0.01 0.01]);... + atmarker('FCOR_16_2', 'UUID', 'FCOR_16_2_001');... + atmonitor('BPM', 'EApertures', [0.01 0.01], 'UUID', 'BPM_135');... + atmarker('VANNE_END', 'EApertures', [0.01 0.01]);... + atmarker('GIRDERSTART', 'EApertures', [0.008 0.008]);... + atsbend('CHIC2', 0.2, -0.0126637486005222, 0.0, 'EApertures', [0.01 0.01], 'EntranceAngle', -0.006, 'ExitAngle', -0.006, 'UUID', 'CHIC2_001');... + atdrift('SD23T', 0.35011537936444, 'EApertures', [0.0085 0.0085]);... + atquadrupole('Q17', 0.0929982217794612, -7.83896314384854, 'BoDiameter', 0.023, 'BoGap', 0.01, 'BoLength', 0.08, 'EApertures', [0.0085 0.0085], 'UUID', 'Q17_003');... + atdrift('D032HT', 0.048, 'EApertures', [0.0085 0.0085]);... + atmultipole('OH16_QCORROCT_123', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.021, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.0085 0.0085], 'MaxOrder', 3, 'UUID', 'OH16_QCORROCT_123_001');... + atdrift('D022HT', 0.06, 'EApertures', [0.0085 0.0085]);... + atsextupole('SH16_COR', 0.075, 0.0, 'Action', 'SxtHarm', 'BoDiameter', 0.021, 'BoGap', 0.01, 'BoLength', 0.075, 'EApertures', [0.0085 0.0085], 'KickAngle', [0. 0.], 'UUID', 'SH16_COR_003');... + atdrift('D031HT', 0.048, 'EApertures', [0.0085 0.0085]);... + atquadrupole('Q16', 0.132220666360538, 8.59624027008373, 'BoDiameter', 0.023, 'BoGap', 0.01, 'BoLength', 0.12, 'EApertures', [0.0085 0.0085], 'UUID', 'Q16_002');... + atdrift('D031HT', 0.048, 'EApertures', [0.0085 0.0085]);... + atsextupole('SH16_COR', 0.075, 0.0, 'Action', 'SxtHarm', 'BoDiameter', 0.021, 'BoGap', 0.01, 'BoLength', 0.075, 'EApertures', [0.0085 0.0085], 'KickAngle', [0. 0.], 'UUID', 'SH16_COR_004');... + atdrift('D022HT', 0.06, 'EApertures', [0.0085 0.0085]);... + atmultipole('OH16_QCORROCT_124', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.021, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.0085 0.0085], 'MaxOrder', 3, 'UUID', 'OH16_QCORROCT_124_001');... + atdrift('D032HT', 0.048, 'EApertures', [0.0085 0.0085]);... + atquadrupole('Q17', 0.0929982217794612, -7.83896314384854, 'BoDiameter', 0.023, 'BoGap', 0.01, 'BoLength', 0.08, 'EApertures', [0.0085 0.0085], 'UUID', 'Q17_004');... + atdrift('SD23T', 0.35011537936444, 'EApertures', [0.00850340136054422 0.00850340136054422]);... + atsbend('CHIC3', 0.2, 0.0191637486005153, 0.0, 'EApertures', [0.00956462585034014 0.00956462585034014], 'EntranceAngle', 0.00925, 'ExitAngle', 0.00925, 'UUID', 'CHIC3_001');... + atmarker('GIRDEREND', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.00994557823129252 0.00994557823129252], 'UUID', 'BPM_136');... + atmarker('VANNE_START', 'EApertures', [0.00994557823129252 0.00994557823129252]);... + atmarker('FCOR_16_3', 'UUID', 'FCOR_16_3_001');... + atdrift('SD34_1', 0.272, 'Action', 'BPM', 'EApertures', [0.012 0.012]);... + atmarker('VANNE_END', 'EApertures', [0.012 0.012]);... + atmarker('NANOSCOPIUM_START', 'EApertures', [0.012 0.012]);... + atdrift('SD34_2', 0.396170347288528, 'Action', 'BPM', 'EApertures', [0.0205714285714286 0.0121428571428571]);... + atmarker('ONDULEURMARK_START', 'EApertures', [0.0475 0.0025]);... + atdrift('SD34_3', 1.0, 'Action', 'BPM', 'EApertures', [0.0475 0.0025]);... + atmarker('SD16LBCENTER', 'EApertures', [0.0475 0.0025]);... + atdrift('SD34_4', 1.0, 'Action', 'BPM', 'EApertures', [0.0475 0.0025]);... + atmarker('ONDULEURMARK_END', 'EApertures', [0.0475 0.0025]);... + atdrift('SD34_5', 0.396170347288528, 'Action', 'BPM', 'RApertures', [-0.0288157894736842 0.0176052631578947 -0.0101630434782609 0.0101630434782609]);... + atmarker('NANOSCOPIUM_END', 'EApertures', [0.012 0.012]);... + atmarker('VANNE_START', 'EApertures', [0.012 0.012]);... + atdrift('SD34_6', 0.272, 'Action', 'BPM', 'RApertures', [-0.01 0.0095 -0.01 0.01 ]);... + atmarker('FCOR_16_4', 'UUID', 'FCOR_16_4_001');... + atmarker('VANNE_END', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.008 0.008], 'UUID', 'BPM_137');... + atmarker('SD16LEND', 'EApertures', [0.008 0.008]);... + atmarker('AN-C16START', 'EApertures', [0.008 0.008]);... + atmarker('GIRDERSTART', 'EApertures', [0.008 0.008]);... + atquadrupole('Q18', 0.0932053766613153, -7.2301598888015, 'BoDiameter', 0.023, 'BoGap', 0.01, 'BoLength', 0.08, 'EApertures', [0.008 0.008], 'UUID', 'Q18_004');... + atdrift('D03HT', 0.048, 'EApertures', [0.008 0.008]);... + atmultipole('OH132_QCORROCT_125', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.008 0.008], 'MaxOrder', 3, 'UUID', 'OH132_QCORROCT_125_001');... + atdrift('D022HT', 0.06, 'EApertures', [0.008 0.008]);... + atsextupole('SH13_COR', 0.075, 476.313437796132, 'Action', 'SxtHarm', 'BoDiameter', 0.021, 'BoGap', 0.01, 'BoLength', 0.075, 'EApertures', [0.0085 0.0085], 'KickAngle', [0. 0.], 'UUID', 'SH13_COR_004');... + atdrift('D03HT', 0.048, 'EApertures', [0.0085 0.0085]);... + atquadrupole('Q19', 0.118733643867383, 8.01541064610388, 'BoDiameter', 0.023, 'BoGap', 0.01, 'BoLength', 0.106, 'EApertures', [0.0085 0.0085], 'UUID', 'Q19_004');... + atdrift('D03HT', 0.048, 'EApertures', [0.0085 0.0085]);... + atmultipole('OH142_QCORROCT_126', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.0085 0.0085], 'MaxOrder', 3, 'UUID', 'OH142_QCORROCT_126_001');... + atdrift('D022HT', 0.06, 'EApertures', [0.0085 0.0085]);... + atsextupole('SH14_HCOR', 0.075, -335.348316276613, 'Action', 'SxtHarm', 'BoDiameter', 0.021, 'BoGap', 0.01, 'BoLength', 0.075, 'EApertures', [0.0085 0.0085], 'KickAngle', [0. 0.], 'UUID', 'SH14_HCOR_004');... + atdrift('D03HT', 0.048, 'EApertures', [0.0085 0.0085]);... + atquadrupole('Q20', 0.122440853589187, 8.42972886822337, 'BoDiameter', 0.023, 'BoGap', 0.01, 'BoLength', 0.11, 'EApertures', [0.0085 0.0085], 'UUID', 'Q20_004');... + atdrift('D041HT', 0.18, 'Action', 'BPM', 'EApertures', [0.0085 0.0085]);... + atmonitor('BPM', 'EApertures', [0.0085 0.0085], 'UUID', 'BPM_138');... + atquadrupole('Q21', 0.118594861317721, -8.24976089349076, 'BoDiameter', 0.023, 'BoGap', 0.01, 'BoLength', 0.106, 'EApertures', [0.0085 0.0085], 'UUID', 'Q21_004');... + atdrift('D05HTC', 0.06, 'EApertures', [0.0085 0.0085]);... + atsbend('CHIC4', 0.1, -0.0118434756989878, 0.0, 'EApertures', [0.0085 0.0085], 'EntranceAngle', -0.0029, 'ExitAngle', -0.0029, 'UUID', 'CHIC4_001');... + atdrift('D022HT', 0.06, 'EApertures', [0.0085 0.0085]);... + atsextupole('SH15_VCOR', 0.075, -151.263624499999, 'Action', 'SxtHarm', 'BoDiameter', 0.021, 'BoGap', 0.01, 'BoLength', 0.075, 'EApertures', [0.0085 0.0085], 'KickAngle', [0. 0.], 'UUID', 'SH15_VCOR_004');... + atdrift('D022HTQ', 0.048, 'EApertures', [0.0085 0.0085]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.0085 0.0085], 'UUID', 'QCORR_157');... + atdrift('D021HTQ', 0.0529998883331588, 'EApertures', [0.0085 0.0085]);... + atdrift('LBD1T', 0.0395472975018047, 'EApertures', [0.0085 0.0085]);... + atsbend('BD22', 0.0284984341976272, 0.00259580023151625, -1.18160211440423, 'EApertures', [0.008 0.008], 'UUID', 'BD22_001');... + atsbend('BD12', 0.0959771205127194, 0.0105068130926535, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0205293144427562);... + atsbend('BD12', 0.0959771205127194, 0.0105068130926535, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD12', 0.0959771205127194, 0.0105068130926535, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD12', 0.0959771205127194, 0.0105068130926535, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'ExitAngle', 0.0205293144427562);... + atsbend('BD22', 0.0284984341976272, 0.00259580023151625, -1.18160211440423, 'EApertures', [0.00766666666666667 0.00766666666666667]);... + atdrift('L03', 0.176061846245862, 'EApertures', [0.006 0.006]);... + atsextupole('SXD52', 0.09, -734.183150728341, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0075, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'SXD52_004');... + atmarker('CROTCH_16_1', 'EApertures', [0.006 0.006]);... + atdrift('L04', 0.111275514615956, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF5_QCORROCT_127_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. 353.486738211295], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'OCTF5_QCORROCT_127_QT_001');... + atdrift('L084', 0.048820499745398, 'EApertures', [0.006 0.006]);... + atsbend('BQ4H7', 0.0577872115264688, -0.000403189428060752, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.000403189428060752, 'UUID', 'BQ4H7_037');... + atsbend('BQ4H7', 0.0577872115264688, -0.000403189428060752, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'ExitAngle', -0.000403189428060752);... + atdrift('L084', 0.048820499745398, 'EApertures', [0.006 0.006]);... + atsextupole('SXF52_HCOR', 0.12, 788.330339912278, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXF52_HCOR_004');... + atdrift('L082', 0.0471064301693061, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444587, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444587, 'UUID', 'BQ6H7_143');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444587, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444587);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BPM_139');... + atsextupole('SXD52_VCOR', 0.09, -734.183150728341, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXD52_VCOR_004');... + atdrift('L071', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'QCORR_158');... + atmarker('GIRDEREND', 'EApertures', [0.006 0.006]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.008 0.008]);... + atmarker('GIRDERSTART', 'EApertures', [0.008 0.008]);... + atsbend('BD4H2', 0.0393049032024916, 0.00243989287061025, -1.11997137375817, 'EApertures', [0.008 0.008], 'UUID', 'BD4H2_001');... + atsbend('BD5H2', 0.398927492296932, 0.0316448044776945, -1.86297299994296, 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0342430714728858);... + atsbend('BD5H2', 0.398927492296932, 0.0316448044776945, -1.86297299994296, 'EApertures', [0.008 0.008], 'ExitAngle', 0.0342430714728858);... + atsbend('BD4H2', 0.0393049032024916, 0.00243989287061025, -1.11997137375817, 'EApertures', [0.008 0.008]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00758974358974359 0.00758974358974359]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00717948717948718 0.00717948717948718], 'UUID', 'QCORR_159');... + atdrift('L071', 0.048, 'EApertures', [0.00661538461538461 0.00661538461538461]);... + atsextupole('SXD5', 0.09, -673.701263957563, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'SXD5_010');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_16_2', 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444587, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444587, 'UUID', 'BQ6H7_145');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444587, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444587);... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF5_QCORROCT_128_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. 353.486738211295], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'OCTF5_QCORROCT_128_QT_001');... + atdrift('L081', 0.06, 'EApertures', [0.006 0.006]);... + atsextupole('SXF5_HCOR', 0.12, 715.553794609745, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXF5_HCOR_007');... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444587, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444587, 'UUID', 'BQ6H7_147');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444587, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444587);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BPM_140');... + atsextupole('SXD5_VCOR', 0.09, -673.701263957563, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXD5_VCOR_010');... + atdrift('L071', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'QCORR_160');... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00766666666666667 0.00766666666666667]);... + atsbend('BD4H7', 0.0393049032024916, 0.0024512298026507, -1.11997137375817, 'EApertures', [0.008 0.008], 'UUID', 'BD4H7_071');... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702363, -1.86297299994296, 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0342430714728858);... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702352, -1.86297299994296, 'EApertures', [0.008 0.008], 'ExitAngle', 0.0342430714728858);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008]);... + atmarker('GIRDEREND', 'EApertures', [0.00785 0.00785]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.0076 0.0076]);... + atmarker('GIRDERSTART', 'EApertures', [0.00735 0.00735]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00715 0.00715], 'UUID', 'QCORR_161');... + atdrift('L071', 0.048, 'EApertures', [0.00665 0.00665]);... + atsextupole('SXD5', 0.09, -673.701263957563, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'SXD5_011');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_16_3', 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444582, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444582, 'UUID', 'BQ6H7_149');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444582, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444582);... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF5_QCORROCT_129_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. 353.486738211295], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'OCTF5_QCORROCT_129_QT_001');... + atdrift('L081', 0.06, 'EApertures', [0.006 0.006]);... + atsextupole('SXF53_HCOR', 0.12, 711.229968977946, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXF53_HCOR_007');... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsbend('BQ6HC7', 0.0689196396343699, -0.00144054604712974, 8.95984862959226, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00144054604712974, 'UUID', 'BQ6HC7_037');... + atsbend('BQ6HC7', 0.0689196396343699, -0.00144054604712974, 8.95984862959226, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00144054604712974);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BPM_141');... + atsextupole('SXD53_VCOR', 0.09, -625.758067765939, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXD53_VCOR_004');... + atdrift('L071C', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'QCORR_162');... + atdrift('L073C', 0.0430773209057085, 'EApertures', [0.00714285714285714 0.00714285714285714]);... + atsbend('BD3HC7', 0.01, 0.000258818071001969, -1.37551837900507, 'EApertures', [0.008 0.00786363636363636], 'UUID', 'BD3HC7_019');... + atsbend('BD4HC71', 0.03, 0.00188018240208164, -2.57765200910186, 'EApertures', [0.008 0.00769318181818182], 'EntranceAngle', 0.00982777557557598);... + atsbend('BD4HC7', 0.253621983633988, 0.0158951863469887, -2.57765200910186, 'EApertures', [0.008 0.00632954545454545]);... + atsbend('BD4HC71', 0.03, 0.00188018240208164, -2.57765200910186, 'EApertures', [0.008 0.005], 'ExitAngle', 0.00982777557557598);... + atsbend('BD5HC7', 0.0231155237960032, 0.00240516115877823, 0.0, 'EApertures', [0.008 0.005]);... + atsbend('BD6HC7', 0.0856857672699483, 0.0117810198825822, 0.0, 'EApertures', [0.008 0.00425]);... + atsbend('BD6HC7', 0.0856857672699483, 0.0117810198825822, 0.0, 'EApertures', [0.008 0.00457894736842105]);... + atsbend('BD5HC7', 0.0231155237960032, 0.00240516115877823, 0.0, 'EApertures', [0.008 0.005]);... + atsbend('BD4HC71', 0.03, 0.00188018240208164, -2.57765200910186, 'EApertures', [0.008 0.00518367346938775], 'EntranceAngle', 0.00982777557557598);... + atsbend('BD4HC7', 0.253621983633988, 0.0158951863469887, -2.57765200910186, 'EApertures', [0.008 0.00640816326530612]);... + atsbend('BD4HC71', 0.03, 0.00188018240208164, -2.57765200910186, 'EApertures', [0.008 0.00763265306122449], 'ExitAngle', 0.00982777557557598);... + atsbend('BD3HC7', 0.01, 0.000258818071001969, -1.37551837900507, 'EApertures', [0.008 0.00781632653061225]);... + atdrift('L073C', 0.0430773209057085, 'EApertures', [0.00793939393939394 0.00793939393939394]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00739393939393939 0.00739393939393939], 'UUID', 'QCORR_163');... + atdrift('L071C', 0.048, 'EApertures', [0.00678787878787879 0.00678787878787879]);... + atsextupole('SXD53', 0.09, -625.758067765939, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.007, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'SXD53_004');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_16_4', 'EApertures', [0.006 0.006]);... + atsbend('BQ6HC7', 0.0689196396343699, -0.00144054604712974, 8.95984862959226, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00144054604712974, 'UUID', 'BQ6HC7_039');... + atsbend('BQ6HC7', 0.0689196396343699, -0.00144054604712974, 8.95984862959226, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00144054604712974);... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsextupole('SXF53_HCOR', 0.12, 711.229968977946, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXF53_HCOR_008');... + atdrift('L081', 0.06, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF5_QCORROCT_130_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. 353.486738211295], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'OCTF5_QCORROCT_130_QT_001');... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444582, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444582, 'UUID', 'BQ6H7_151');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444582, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444582);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BPM_142');... + atsextupole('SXD5_VCOR', 0.09, -673.701263957563, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXD5_VCOR_011');... + atdrift('L071', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'QCORR_164');... + atmarker('GIRDEREND', 'EApertures', [0.006 0.006]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.008 0.008]);... + atmarker('GIRDERSTART', 'EApertures', [0.008 0.008]);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008], 'UUID', 'BD4H7_073');... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702352, -1.86297299994296, 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0342430714728858);... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702363, -1.86297299994296, 'EApertures', [0.008 0.008], 'ExitAngle', 0.0342430714728858);... + atsbend('BD4H7', 0.0393049032024916, 0.0024512298026507, -1.11997137375817, 'EApertures', [0.008 0.008]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00758974358974359 0.00758974358974359]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00717948717948718 0.00717948717948718], 'UUID', 'QCORR_165');... + atdrift('L071', 0.048, 'EApertures', [0.00661538461538461 0.00661538461538461]);... + atsextupole('SXD5', 0.09, -673.701263957563, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'SXD5_012');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_16_5', 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444587, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444587, 'UUID', 'BQ6H7_153');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444587, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444587);... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsextupole('SXF5_HCOR', 0.12, 715.553794609745, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXF5_HCOR_008');... + atdrift('L081', 0.06, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF5_QCORROCT_131_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. 353.486738211295], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'OCTF5_QCORROCT_131_QT_001');... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444587, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444587, 'UUID', 'BQ6H7_155');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444587, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444587);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BPM_143');... + atsextupole('SXD5_VCOR', 0.09, -673.701263957563, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXD5_VCOR_012');... + atdrift('L071', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'QCORR_166');... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.008 0.008]);... + atsbend('BD4H7', 0.0393049032024916, 0.0024512298026507, -1.11997137375817, 'EApertures', [0.008 0.008], 'UUID', 'BD4H7_075');... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702363, -1.86297299994296, 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0342430714728858);... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702363, -1.86297299994296, 'EApertures', [0.008 0.008], 'ExitAngle', 0.0342430714728858);... + atsbend('BD4H7', 0.0393049032024916, 0.0024512298026507, -1.11997137375817, 'EApertures', [0.008 0.008]);... + atmarker('GIRDEREND', 'EApertures', [0.00784615384615385 0.00784615384615385]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00758974358974359 0.00758974358974359]);... + atmarker('GIRDERSTART', 'EApertures', [0.00733333333333333 0.00733333333333333]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00712820512820513 0.00712820512820513], 'UUID', 'QCORR_167');... + atdrift('L071', 0.048, 'EApertures', [0.00661538461538461 0.00661538461538461]);... + atsextupole('SXD51', 0.09, -647.766469752565, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'SXD51_004');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444587, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444587, 'UUID', 'BQ6H7_157');... + atmarker('CROTCH_16_6', 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444587, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444587);... + atdrift('L082', 0.0471064301693061, 'EApertures', [0.006 0.006]);... + atsextupole('SXF51_HCOR', 0.12, 840.822202380127, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXF51_HCOR_004');... + atdrift('L084', 0.048820499745398, 'EApertures', [0.006 0.006]);... + atsbend('BQ4H7', 0.0577872115264688, -0.000403189428060752, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.000403189428060752, 'UUID', 'BQ4H7_039');... + atsbend('BQ4H7', 0.0577872115264688, -0.000403189428060752, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'ExitAngle', -0.000403189428060752);... + atdrift('L085', 0.100096014361354, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF5_QCORROCT_132_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. 353.486738211295], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'OCTF5_QCORROCT_132_QT_001');... + atdrift('L05', 0.06, 'EApertures', [0.006 0.006]);... + atsextupole('SXD51_VCOR', 0.09, -647.766469752565, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXD51_VCOR_004');... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BPM_144');... + atdrift('L03', 0.176061846245862, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atsbend('BD27', 0.0284984341976272, 0.00225714925227518, -1.18160211440423, 'EApertures', [0.008 0.008], 'UUID', 'BD27_035');... + atsbend('BD17', 0.0959771205127194, 0.00913608259524086, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0205293144427562);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524086, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524086, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524086, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'ExitAngle', 0.0205293144427562);... + atsbend('BD27', 0.0284984341976272, 0.00225714925227518, -1.18160211440423, 'EApertures', [0.00755555555555556 0.00755555555555556]);... + atdrift('LBD1M', 0.0395472975018047, 'EApertures', [0.00644444444444444 0.00644444444444444]);... + atdrift('D05HM', 0.0250000000000106, 'EApertures', [0.006 0.006]);... + atquadrupole('Q15', 0.0669665183225528, -13.0158117569202, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.058, 'EApertures', [0.006 0.006], 'UUID', 'Q15_007');... + atdrift('D03HM', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH12_COR', 0.06, -549.693929899786, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SH12_COR_007');... + atdrift('D022HMQ', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'QCORR_168');... + atdrift('D040HMQ', 0.108, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_16_7', 'EApertures', [0.006 0.006]);... + atquadrupole('Q14', 0.0669654375650683, 13.020316581933, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.058, 'EApertures', [0.006 0.006], 'UUID', 'Q14_007');... + atdrift('D03HM', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH11', 0.06, -342.377584906705, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'UUID', 'SH11_007');... + atdrift('D022HM', 0.06, 'EApertures', [0.006 0.006]);... + atmultipole('OH11_QCORROCT_133', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'MaxOrder', 3, 'UUID', 'OH11_QCORROCT_133_001');... + atmonitor('BPM', 'EApertures', [0.008 0.008], 'UUID', 'BPM_145');... + atdrift('D06HM', 0.13, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atquadrupole('Q13', 0.105549024737856, 14.4734284467452, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.098, 'EApertures', [0.006 0.006], 'UUID', 'Q13_007');... + atdrift('D032HM', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH10_COR', 0.06, 767.610099578133, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SH10_COR_007');... + atdrift('D022HM', 0.06, 'EApertures', [0.006 0.006]);... + atmultipole('OH10_QCORROCT_134_QT', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'MaxOrder', 3, 'UUID', 'OH10_QCORROCT_134_QT_001');... + atdrift('D031HM', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('Q12', 0.0785288819736742, -13.6759084023114, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.07, 'EApertures', [0.006 0.006], 'UUID', 'Q12_007');... + atmarker('GIRDEREND', 'EApertures', [0.0076 0.0076]);... + atmarker('AN-C16END', 'EApertures', [0.0076 0.0076]);... + atmarker('SD17MCSTART', 'EApertures', [0.0076 0.0076]);... + atmarker('VANNE_START', 'EApertures', [0.0076 0.0076]);... + atmarker('FCOR_17_1', 'UUID', 'FCOR_17_1_001');... + atmonitor('BPM', 'EApertures', [0.0076 0.0076], 'UUID', 'BPM_146');... + atdrift('SD1M_19', 0.322, 'Action', 'BPM', 'EApertures', [0.006 0.006]);... + atmarker('VANNE_END', 'EApertures', [0.01 0.01]);... + atdrift('SD1M_20', 0.287381847814076, 'Action', 'BPM', 'RApertures', [-0.0045 0.004 -0.0035 0.0035]);... + atmarker('ONDULEURMARK_START', 'EApertures', [0.0045 0.0035]);... + atdrift('SD1M_21', 1.29, 'Action', 'BPM', 'EApertures', [0.0045 0.0035]);... + atmarker('SD17MCCENTER', 'EApertures', [0.0045 0.0035]);... + atdrift('SD1M_22', 1.29, 'Action', 'BPM', 'EApertures', [0.0045 0.0035]);... + atmarker('ONDULEURMARK_END', 'EApertures', [0.0045 0.0035]);... + atdrift('SD1M_23', 0.287381847814076, 'Action', 'BPM', 'EApertures', [0.00644117647058823 0.00579411764705882]);... + atmarker('VANNE_START', 'EApertures', [0.01 0.01]);... + atdrift('SD1M_24', 0.322, 'Action', 'BPM', 'EApertures', [0.00836363636363636 0.00836363636363636]);... + atmarker('FCOR_17_2', 'UUID', 'FCOR_17_2_001');... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BPM_147');... + atmarker('VANNE_END', 'EApertures', [0.006 0.006]);... + atmarker('SD17MCEND', 'EApertures', [0.006 0.006]);... + atmarker('AN-C17START', 'EApertures', [0.006 0.006]);... + atmarker('GIRDERSTART', 'EApertures', [0.006 0.006]);... + atquadrupole('Q12', 0.0785288819736742, -13.6759084023114, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.07, 'EApertures', [0.006 0.006], 'UUID', 'Q12_008');... + atdrift('D031HM', 0.048, 'EApertures', [0.006 0.006]);... + atmultipole('OH10_QCORROCT_135_QT', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'MaxOrder', 3, 'UUID', 'OH10_QCORROCT_135_QT_001');... + atdrift('D022HM', 0.06, 'EApertures', [0.006 0.006]);... + atsextupole('SH10_COR', 0.06, 767.610099578133, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SH10_COR_008');... + atdrift('D032HM', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('Q13', 0.105549024737856, 14.4734284467452, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.098, 'EApertures', [0.006 0.006], 'UUID', 'Q13_008');... + atdrift('D06HM', 0.13, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.0072 0.0072], 'UUID', 'BPM_148');... + atmultipole('OH11_QCORROCT_136', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'MaxOrder', 3, 'UUID', 'OH11_QCORROCT_136_001');... + atdrift('D022HM', 0.06, 'EApertures', [0.006 0.006]);... + atsextupole('SH11', 0.06, -342.377584906705, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'UUID', 'SH11_008');... + atdrift('D03HM', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('Q14', 0.0669654375650683, 13.020316581933, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.058, 'EApertures', [0.006 0.006], 'UUID', 'Q14_008');... + atdrift('D040HMQ', 0.108, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'QCORR_169');... + atdrift('D022HMQ', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH12_COR', 0.06, -549.693929899786, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SH12_COR_008');... + atdrift('D03HM', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('Q15', 0.0669665183225528, -13.0158117569202, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.058, 'EApertures', [0.006 0.006], 'UUID', 'Q15_008');... + atdrift('D05HM', 0.0250000000000106, 'EApertures', [0.006 0.006]);... + atdrift('LBD1M', 0.0395472975018047, 'EApertures', [0.006 0.006]);... + atsbend('BD24', 0.0284984341976272, 0.00215787898333112, -1.18160211440423, 'EApertures', [0.008 0.008], 'UUID', 'BD24_025');... + atsbend('BD14', 0.0959771205127194, 0.00873427426315538, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0205293144427562);... + atsbend('BD14', 0.0959771205127194, 0.00873427426315538, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD14', 0.0959771205127194, 0.00873427426315538, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD14', 0.0959771205127194, 0.00873427426315538, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'ExitAngle', 0.0205293144427562);... + atsbend('BD24', 0.0284984341976272, 0.00215787898333112, -1.18160211440423, 'EApertures', [0.00786666666666667 0.00786666666666667]);... + atdrift('L03', 0.176061846245862, 'EApertures', [0.006 0.006]);... + atsextupole('SXD42', 0.09, -652.433055715131, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0075, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'SXD42_004');... + atdrift('L04', 0.111275514615956, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_17_1', 'EApertures', [0.006 0.006]);... + atmultipole('OCTF4_QCORROCT_137_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -183.939387091905], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'OCTF4_QCORROCT_137_QT_001');... + atdrift('L084', 0.048820499745398, 'EApertures', [0.006 0.006]);... + atsbend('BQ4H4', 0.0577872115264688, -0.000385457006104762, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.000385457006104762, 'UUID', 'BQ4H4_025');... + atsbend('BQ4H4', 0.0577872115264688, -0.000385457006104762, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'ExitAngle', -0.000385457006104762);... + atdrift('L084', 0.048820499745398, 'EApertures', [0.006 0.006]);... + atsextupole('SXF42_HCOR', 0.12, 832.798385062542, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXF42_HCOR_004');... + atdrift('L082', 0.0471064301693061, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H4', 0.0689196396343699, -0.00144531683192883, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00144531683192883, 'UUID', 'BQ6H4_049');... + atsbend('BQ6H4', 0.0689196396343699, -0.00144531683192883, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00144531683192883);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BPM_149');... + atsextupole('SXD42_VCOR', 0.09, -652.433055715131, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXD42_VCOR_004');... + atdrift('L071', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'QCORR_170');... + atmarker('GIRDEREND', 'EApertures', [0.006 0.006]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.0068 0.0068]);... + atmarker('GIRDERSTART', 'EApertures', [0.008 0.008]);... + atsbend('BD4H4', 0.0393049032024916, 0.00234342379845867, -1.11997137375817, 'EApertures', [0.008 0.008], 'UUID', 'BD4H4_025');... + atsbend('BD5H4', 0.398927492296932, 0.0303936245742024, -1.86297299994296, 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0342430714728858);... + atsbend('BD5H4', 0.398927492296932, 0.0303936245742024, -1.86297299994296, 'EApertures', [0.008 0.008], 'ExitAngle', 0.0342430714728858);... + atsbend('BD4H4', 0.0393049032024916, 0.00234342379845867, -1.11997137375817, 'EApertures', [0.008 0.008]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00774358974358974 0.00774358974358974]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00728205128205128 0.00728205128205128], 'UUID', 'QCORR_171');... + atdrift('L071', 0.048, 'EApertures', [0.00676923076923077 0.00676923076923077]);... + atsextupole('SXD4', 0.09, -748.397964225485, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'SXD4_004');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_17_2', 'EApertures', [0.006 0.006]);... + atsbend('BQ6H4', 0.0689196396343699, -0.00144531683192883, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00144531683192883, 'UUID', 'BQ6H4_051');... + atsbend('BQ6H4', 0.0689196396343699, -0.00144531683192883, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00144531683192883);... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF4_QCORROCT_138_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -183.939387091905], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'OCTF4_QCORROCT_138_QT_001');... + atdrift('L081', 0.06, 'EApertures', [0.006 0.006]);... + atsextupole('SXF4_HCOR', 0.12, 811.758492840009, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXF4_HCOR_004');... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H4', 0.0689196396343699, -0.00144531683192883, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00144531683192883, 'UUID', 'BQ6H4_053');... + atsbend('BQ6H4', 0.0689196396343699, -0.00144531683192883, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00144531683192883);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BPM_150');... + atsextupole('SXD4_VCOR', 0.09, -748.397964225485, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXD4_VCOR_004');... + atdrift('L071', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'QCORR_172');... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00666666666666667 0.00666666666666667]);... + atsbend('BD4H4', 0.0393049032024916, 0.00234342379845867, -1.11997137375817, 'EApertures', [0.008 0.008], 'UUID', 'BD4H4_027');... + atsbend('BD5H4', 0.398927492296932, 0.0303936245742024, -1.86297299994296, 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0342430714728858);... + atsbend('BD5H4', 0.398927492296932, 0.0303936245742024, -1.86297299994296, 'EApertures', [0.008 0.008], 'ExitAngle', 0.0342430714728858);... + atsbend('BD4H4', 0.0393049032024916, 0.00234342379845867, -1.11997137375817, 'EApertures', [0.008 0.008]);... + atmarker('GIRDEREND', 'EApertures', [0.008 0.008]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00775 0.00775]);... + atmarker('GIRDERSTART', 'EApertures', [0.00745 0.00745]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.0073 0.0073], 'UUID', 'QCORR_173');... + atdrift('L071', 0.048, 'EApertures', [0.0068 0.0068]);... + atsextupole('SXD41', 0.09, -735.729130725313, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'SXD41_004');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_17_3', 'EApertures', [0.006 0.006]);... + atsbend('BQ6H4', 0.0689196396343699, -0.00144531683192883, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00144531683192883, 'UUID', 'BQ6H4_055');... + atsbend('BQ6H4', 0.0689196396343699, -0.00144531683192883, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00144531683192883);... + atdrift('L082', 0.0471064301693061, 'EApertures', [0.006 0.006]);... + atsextupole('SXF41_HCOR', 0.12, 846.26087738574, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXF41_HCOR_004');... + atdrift('L084', 0.048820499745398, 'EApertures', [0.006 0.006]);... + atsbend('BQ4H4', 0.0577872115264688, -0.000385457006104762, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.000385457006104762, 'UUID', 'BQ4H4_027');... + atsbend('BQ4H4', 0.0577872115264688, -0.000385457006104762, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'ExitAngle', -0.000385457006104762);... + atdrift('L085', 0.100096014361354, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF4_QCORROCT_139_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -183.939387091905], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'OCTF4_QCORROCT_139_QT_001');... + atdrift('L05', 0.06, 'EApertures', [0.008 0.008]);... + atsextupole('SXD41_VCOR', 0.09, -735.729130725313, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.00666666666666667 0.00666666666666667], 'KickAngle', [0. 0.], 'UUID', 'SXD41_VCOR_004');... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BPM_151');... + atdrift('L03', 0.176061846245862, 'Action', 'BPM', 'EApertures', [0.006 0.006]);... + atsbend('BD24', 0.0284984341976272, 0.00215787898333112, -1.18160211440423, 'EApertures', [0.008 0.008], 'UUID', 'BD24_027');... + atsbend('BD14', 0.0959771205127194, 0.00873427426315538, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0205293144427562);... + atsbend('BD14', 0.0959771205127194, 0.00873427426315538, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD14', 0.0959771205127194, 0.00873427426315538, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD14', 0.0959771205127194, 0.00873427426315538, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'ExitAngle', 0.0205293144427562);... + atsbend('BD24', 0.0284984341976272, 0.00215787898333112, -1.18160211440423, 'EApertures', [0.00711111111111111 0.00711111111111111]);... + atdrift('LBD1C', 0.0395472975018047, 'EApertures', [0.00611111111111111 0.00611111111111111]);... + atdrift('D05HC', 0.00499988833315879, 'EApertures', [0.006 0.006]);... + atquadrupole('Q11', 0.0789546761676337, -12.3862992113073, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.07, 'EApertures', [0.006 0.006], 'UUID', 'Q11_013');... + atdrift('D03HC', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH9_COR', 0.06, -668.536791100884, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SH9_COR_013');... + atdrift('D022HCQ', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'QCORR_174');... + atdrift('D041HCQ', 0.108, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_17_4', 'EApertures', [0.006 0.006]);... + atquadrupole('Q10', 0.0844113331477278, 13.6568508102765, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.076, 'EApertures', [0.006 0.006], 'UUID', 'Q10_013');... + atdrift('D03HC', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH8', 0.06, -366.603155097304, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'UUID', 'SH8_013');... + atdrift('D022HCQ', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'QCORR_175');... + atmonitor('BPM', 'EApertures', [0.00633333333333333 0.00633333333333333], 'UUID', 'BPM_152');... + atdrift('D06HCQ', 0.158, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atquadrupole('Q9', 0.106409911705093, 12.8349230947647, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.098, 'EApertures', [0.006 0.006], 'UUID', 'Q9_013');... + atdrift('D032HC', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH7_COR', 0.06, 832.664084881681, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SH7_COR_013');... + atdrift('D022HC', 0.06, 'EApertures', [0.006 0.006]);... + atmultipole('OH7_QCORROCT_140_QT', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'MaxOrder', 3, 'UUID', 'OH7_QCORROCT_140_QT_001');... + atdrift('D031HC', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('Q8', 0.0786666675115942, -13.273182641893, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.07, 'EApertures', [0.006 0.006], 'UUID', 'Q8_013');... + atmarker('GIRDEREND', 'EApertures', [0.00733333333333333 0.00733333333333333]);... + atmarker('AN-C17END', 'EApertures', [0.00733333333333333 0.00733333333333333]);... + atmarker('SD18CSTART', 'EApertures', [0.00733333333333333 0.00733333333333333]);... + atmarker('VANNE_START', 'EApertures', [0.00733333333333333 0.00733333333333333]);... + atmarker('FCOR_18_1', 'UUID', 'FCOR_18_1_001');... + atmonitor('BPM', 'EApertures', [0.00733333333333333 0.00733333333333333], 'UUID', 'BPM_153');... + atdrift('SD1C_37', 0.322, 'Action', 'BPM', 'EApertures', [0.00847619047619048 0.00847619047619048]);... + atmarker('VANNE_END', 'EApertures', [0.01 0.01]);... + atdrift('SD1C_38', 0.0835458676300582, 'Action', 'BPM', 'EApertures', [0.01 0.01]);... + atmarker('ONDULEURMARK_START', 'EApertures', [0.042 0.0125]);... + atdrift('SD1C_39', 1.189, 'Action', 'BPM', 'EApertures', [0.0475 0.002 ]);... + atmarker('SD18CCENTER', 'EApertures', [0.0475 0.002 ]);... + atdrift('SD1C_40', 1.189, 'Action', 'BPM', 'EApertures', [0.0475 0.002 ]);... + atmarker('ONDULEURMARK_END', 'EApertures', [0.042 0.0125]);... + atdrift('SD1C_41', 0.0835458676300582, 'Action', 'BPM', 'EApertures', [0.01 0.01]);... + atmarker('VANNE_START', 'EApertures', [0.01 0.01]);... + atdrift('SD1C_42', 0.322, 'Action', 'BPM', 'EApertures', [0.00847619047619048 0.00847619047619048]);... + atmarker('FCOR_18_2', 'UUID', 'FCOR_18_2_001');... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BPM_154');... + atmarker('VANNE_END', 'EApertures', [0.006 0.006]);... + atmarker('SD18CEND', 'EApertures', [0.006 0.006]);... + atmarker('AN-C18START', 'EApertures', [0.006 0.006]);... + atmarker('GIRDERSTART', 'EApertures', [0.006 0.006]);... + atquadrupole('Q8', 0.0786666675115942, -13.273182641893, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.07, 'EApertures', [0.006 0.006], 'UUID', 'Q8_014');... + atdrift('D031HC', 0.048, 'EApertures', [0.006 0.006]);... + atmultipole('OH7_QCORROCT_141_QT', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'MaxOrder', 3, 'UUID', 'OH7_QCORROCT_141_QT_001');... + atdrift('D022HC', 0.06, 'EApertures', [0.006 0.006]);... + atsextupole('SH7_COR', 0.06, 832.664084881681, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SH7_COR_014');... + atdrift('D032HC', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('Q9', 0.106409911705093, 12.8349230947647, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.098, 'EApertures', [0.006 0.006], 'UUID', 'Q9_014');... + atdrift('D06HCQ', 0.158, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BPM_155');... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'QCORR_176');... + atdrift('D022HCQ', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH8', 0.06, -366.603155097304, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'UUID', 'SH8_014');... + atdrift('D03HC', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('Q10', 0.0844113331477278, 13.6568508102765, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.076, 'EApertures', [0.006 0.006], 'UUID', 'Q10_014');... + atdrift('D041HCQ', 0.108, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'QCORR_177');... + atdrift('D022HCQ', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH9_COR', 0.06, -668.536791100884, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SH9_COR_014');... + atdrift('D03HC', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('Q11', 0.0789546761676337, -12.3862992113073, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.07, 'EApertures', [0.006 0.006], 'UUID', 'Q11_014');... + atdrift('D05HC', 0.00499988833315879, 'EApertures', [0.006 0.006]);... + atdrift('LBD1C', 0.0395472975018047, 'EApertures', [0.006 0.006]);... + atsbend('BD27', 0.0284984341976272, 0.00225714925227511, -1.18160211440423, 'EApertures', [0.008 0.008], 'UUID', 'BD27_037');... + atsbend('BD17', 0.0959771205127194, 0.00913608259524057, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0205293144427562);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524057, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524057, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524057, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'ExitAngle', 0.0205293144427562);... + atsbend('BD27', 0.0284984341976272, 0.00225714925227511, -1.18160211440423, 'EApertures', [0.00766666666666667 0.00766666666666667]);... + atdrift('L03', 0.176061846245862, 'EApertures', [0.006 0.006]);... + atsextupole('SXD32', 0.09, -729.521731325636, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0075, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'SXD32_004');... + atmarker('CROTCH_18_1', 'EApertures', [0.006 0.006]);... + atdrift('L04', 0.111275514615956, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF3_QCORROCT_142_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -440.259660850112], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'OCTF3_QCORROCT_142_QT_001');... + atdrift('L084', 0.048820499745398, 'EApertures', [0.006 0.006]);... + atsbend('BQ4H7', 0.0577872115264688, -0.000403189428060739, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.000403189428060739, 'UUID', 'BQ4H7_041');... + atsbend('BQ4H7', 0.0577872115264688, -0.000403189428060739, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'ExitAngle', -0.000403189428060739);... + atdrift('L084', 0.048820499745398, 'EApertures', [0.006 0.006]);... + atsextupole('SXF32_HCOR', 0.12, 782.043582880113, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXF32_HCOR_004');... + atdrift('L082', 0.0471064301693061, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444583, 'UUID', 'BQ6H7_159');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444583);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BPM_156');... + atsextupole('SXD32_VCOR', 0.09, -729.521731325636, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXD32_VCOR_004');... + atdrift('L071', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'QCORR_178');... + atmarker('GIRDEREND', 'EApertures', [0.006 0.006]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.0076 0.0076]);... + atmarker('GIRDERSTART', 'EApertures', [0.008 0.008]);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008], 'UUID', 'BD4H7_077');... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702353, -1.86297299994296, 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0342430714728858);... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702353, -1.86297299994296, 'EApertures', [0.008 0.008], 'ExitAngle', 0.0342430714728858);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00758974358974359 0.00758974358974359]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00717948717948718 0.00717948717948718], 'UUID', 'QCORR_179');... + atdrift('L071', 0.048, 'EApertures', [0.00666666666666667 0.00666666666666667]);... + atsextupole('SXD3', 0.09, -753.118527609963, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'SXD3_010');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_18_2', 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444583, 'UUID', 'BQ6H7_161');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444583);... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF3_QCORROCT_143_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -440.259660850112], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'OCTF3_QCORROCT_143_QT_001');... + atdrift('L081', 0.06, 'EApertures', [0.006 0.006]);... + atsextupole('SXF3_HCOR', 0.12, 675.00095481734, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXF3_HCOR_007');... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444583, 'UUID', 'BQ6H7_163');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444583);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BPM_157');... + atsextupole('SXD3_VCOR', 0.09, -753.118527609963, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXD3_VCOR_010');... + atdrift('L071', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'QCORR_180');... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.008 0.008]);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008], 'UUID', 'BD4H7_079');... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702353, -1.86297299994296, 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0342430714728858);... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702352, -1.86297299994296, 'EApertures', [0.008 0.008], 'ExitAngle', 0.0342430714728858);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008]);... + atmarker('GIRDEREND', 'EApertures', [0.00784615384615385 0.00784615384615385]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00758974358974359 0.00758974358974359]);... + atmarker('GIRDERSTART', 'EApertures', [0.00733333333333333 0.00733333333333333]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00712820512820513 0.00712820512820513], 'UUID', 'QCORR_181');... + atdrift('L071', 0.048, 'EApertures', [0.00661538461538461 0.00661538461538461]);... + atsextupole('SXD3', 0.09, -753.118527609963, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'SXD3_011');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_18_3', 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444582, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444582, 'UUID', 'BQ6H7_165');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444582, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444582);... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF3_QCORROCT_144_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -440.259660850112], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'OCTF3_QCORROCT_144_QT_001');... + atdrift('L081', 0.06, 'EApertures', [0.006 0.006]);... + atsextupole('SXF33_HCOR', 0.12, 686.795497427942, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXF33_HCOR_007');... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsbend('BQ6HC7', 0.0689196396343699, -0.00144054604712974, 8.95984862959226, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00144054604712974, 'UUID', 'BQ6HC7_041');... + atsbend('BQ6HC7', 0.0689196396343699, -0.00144054604712974, 8.95984862959226, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00144054604712974);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BPM_158');... + atsextupole('SXD33_VCOR', 0.09, -764.318658802759, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXD33_VCOR_004');... + atdrift('L071C', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'QCORR_182');... + atdrift('L073C', 0.0430773209057085, 'EApertures', [0.00725 0.00725]);... + atsbend('BD3HC7', 0.01, 0.000258818071001969, -1.37551837900507, 'EApertures', [0.008 0.00789655172413793], 'UUID', 'BD3HC7_021');... + atsbend('BD4HC71', 0.03, 0.00188018240208164, -2.57765200910186, 'EApertures', [0.008 0.00768965517241379], 'EntranceAngle', 0.00982777557557598);... + atsbend('BD4HC7', 0.253621983633988, 0.0158951863469887, -2.57765200910186, 'EApertures', [0.008 0.00631034482758621]);... + atsbend('BD4HC71', 0.03, 0.00188018240208164, -2.57765200910186, 'EApertures', [0.008 0.005], 'ExitAngle', 0.00982777557557598);... + atsbend('BD5HC7', 0.0231155237960032, 0.00240516115877823, 0.0, 'EApertures', [0.008 0.005]);... + atsbend('BD6HC7', 0.0856857672699483, 0.0117810198825822, 0.0, 'EApertures', [0.008 0.00425]);... + atsbend('BD6HC7', 0.0856857672699483, 0.0117810198825822, 0.0, 'EApertures', [0.008 0.0046]);... + atsbend('BD5HC7', 0.0231155237960032, 0.00240516115877823, 0.0, 'EApertures', [0.008 0.005]);... + atsbend('BD4HC71', 0.03, 0.00188018240208164, -2.57765200910186, 'EApertures', [0.008 0.00518367346938775], 'EntranceAngle', 0.00982777557557598);... + atsbend('BD4HC7', 0.253621983633988, 0.0158951863469887, -2.57765200910186, 'EApertures', [0.008 0.00640816326530612]);... + atsbend('BD4HC71', 0.03, 0.00188018240208164, -2.57765200910186, 'EApertures', [0.008 0.00763265306122449], 'ExitAngle', 0.00982777557557598);... + atsbend('BD3HC7', 0.01, 0.000258818071001969, -1.37551837900507, 'EApertures', [0.008 0.00781632653061225]);... + atdrift('L073C', 0.0430773209057085, 'EApertures', [0.008 0.008]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00739393939393939 0.00739393939393939], 'UUID', 'QCORR_183');... + atdrift('L071C', 0.048, 'EApertures', [0.00678787878787879 0.00678787878787879]);... + atsextupole('SXD33', 0.09, -764.318658802759, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.007, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'SXD33_004');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_18_4', 'EApertures', [0.006 0.006]);... + atsbend('BQ6HC7', 0.0689196396343699, -0.00144054604712974, 8.95984862959226, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00144054604712974, 'UUID', 'BQ6HC7_043');... + atsbend('BQ6HC7', 0.0689196396343699, -0.00144054604712974, 8.95984862959226, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00144054604712974);... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsextupole('SXF33_HCOR', 0.12, 686.795497427942, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXF33_HCOR_008');... + atdrift('L081', 0.06, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF3_QCORROCT_145_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -440.259660850112], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'OCTF3_QCORROCT_145_QT_001');... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444582, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444582, 'UUID', 'BQ6H7_167');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444582, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444582);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BPM_159');... + atsextupole('SXD3_VCOR', 0.09, -753.118527609963, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXD3_VCOR_011');... + atdrift('L071', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'QCORR_184');... + atmarker('GIRDEREND', 'EApertures', [0.006 0.006]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00766666666666667 0.00766666666666667]);... + atmarker('GIRDERSTART', 'EApertures', [0.008 0.008]);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008], 'UUID', 'BD4H7_081');... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702352, -1.86297299994296, 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0342430714728858);... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702353, -1.86297299994296, 'EApertures', [0.008 0.008], 'ExitAngle', 0.0342430714728858);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00758974358974359 0.00758974358974359]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00717948717948718 0.00717948717948718], 'UUID', 'QCORR_185');... + atdrift('L071', 0.048, 'EApertures', [0.00666666666666667 0.00666666666666667]);... + atsextupole('SXD3', 0.09, -753.118527609963, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'SXD3_012');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_18_5', 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444583, 'UUID', 'BQ6H7_169');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444583);... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsextupole('SXF3_HCOR', 0.12, 675.00095481734, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXF3_HCOR_008');... + atdrift('L081', 0.06, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF3_QCORROCT_146_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -440.259660850112], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'OCTF3_QCORROCT_146_QT_001');... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444583, 'UUID', 'BQ6H7_171');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444583);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BPM_160');... + atsextupole('SXD3_VCOR', 0.09, -753.118527609963, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXD3_VCOR_012');... + atdrift('L071', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'QCORR_186');... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.008 0.008]);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008], 'UUID', 'BD4H7_083');... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702353, -1.86297299994296, 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0342430714728858);... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702353, -1.86297299994296, 'EApertures', [0.008 0.008], 'ExitAngle', 0.0342430714728858);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008]);... + atmarker('GIRDEREND', 'EApertures', [0.00784615384615385 0.00784615384615385]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00758974358974359 0.00758974358974359]);... + atmarker('GIRDERSTART', 'EApertures', [0.00733333333333333 0.00733333333333333]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00717948717948718 0.00717948717948718], 'UUID', 'QCORR_187');... + atdrift('L071', 0.048, 'EApertures', [0.00661538461538461 0.00661538461538461]);... + atsextupole('SXD31', 0.09, -681.129428046866, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'SXD31_004');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_18_6', 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444583, 'UUID', 'BQ6H7_173');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444583);... + atdrift('L082', 0.0471064301693061, 'EApertures', [0.006 0.006]);... + atsextupole('SXF31_HCOR', 0.12, 734.143510940683, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXF31_HCOR_004');... + atdrift('L084', 0.048820499745398, 'EApertures', [0.006 0.006]);... + atsbend('BQ4H7', 0.0577872115264688, -0.000403189428060739, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.000403189428060739, 'UUID', 'BQ4H7_043');... + atsbend('BQ4H7', 0.0577872115264688, -0.000403189428060739, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'ExitAngle', -0.000403189428060739);... + atdrift('L085', 0.100096014361354, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF3_QCORROCT_147_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -440.259660850112], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'OCTF3_QCORROCT_147_QT_001');... + atdrift('L05', 0.06, 'EApertures', [0.006 0.006]);... + atsextupole('SXD31_VCOR', 0.09, -681.129428046866, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXD31_VCOR_004');... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BPM_161');... + atdrift('L03', 0.176061846245862, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atsbend('BD27', 0.0284984341976272, 0.00225714925227511, -1.18160211440423, 'EApertures', [0.008 0.008], 'UUID', 'BD27_039');... + atsbend('BD17', 0.0959771205127194, 0.00913608259524057, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0205293144427562);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524057, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524057, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524057, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'ExitAngle', 0.0205293144427562);... + atsbend('BD27', 0.0284984341976272, 0.00225714925227511, -1.18160211440423, 'EApertures', [0.00747368421052632 0.00747368421052632]);... + atdrift('LBD1C', 0.0395472975018047, 'EApertures', [0.00642105263157895 0.00642105263157895]);... + atdrift('D05HC', 0.00499988833315879, 'EApertures', [0.006 0.006]);... + atquadrupole('Q11', 0.0789546761676337, -12.3862992113073, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.07, 'EApertures', [0.006 0.006], 'UUID', 'Q11_015');... + atdrift('D03HC', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH9_COR', 0.06, -668.536791100884, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SH9_COR_015');... + atdrift('D022HCQ', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'QCORR_188');... + atdrift('D041HCQ', 0.108, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_18_7', 'EApertures', [0.006 0.006]);... + atquadrupole('Q10', 0.0844113331477278, 13.6568508102765, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.076, 'EApertures', [0.006 0.006], 'UUID', 'Q10_015');... + atdrift('D03HC', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH8', 0.06, -366.603155097304, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'UUID', 'SH8_015');... + atdrift('D022HCQ', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'QCORR_189');... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BPM_162');... + atdrift('D06HCQ', 0.158, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atquadrupole('Q9', 0.106409911705093, 12.8349230947647, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.098, 'EApertures', [0.006 0.006], 'UUID', 'Q9_015');... + atdrift('D032HC', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH7_COR', 0.06, 832.664084881681, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SH7_COR_015');... + atdrift('D022HC', 0.06, 'EApertures', [0.006 0.006]);... + atmultipole('OH7_QCORROCT_148_QT', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'MaxOrder', 3, 'UUID', 'OH7_QCORROCT_148_QT_001');... + atdrift('D031HC', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('Q8', 0.0786666675115942, -13.273182641893, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.07, 'EApertures', [0.006 0.006], 'UUID', 'Q8_015');... + atmarker('GIRDEREND', 'EApertures', [0.0064 0.0064]);... + atmarker('AN-C18END', 'EApertures', [0.0064 0.0064]);... + atmarker('SD19CSTART', 'EApertures', [0.0064 0.0064]);... + atmarker('VANNE_START', 'EApertures', [0.0064 0.0064]);... + atmarker('FCOR_19_1', 'UUID', 'FCOR_19_1_001');... + atmonitor('BPM', 'EApertures', [0.0064 0.0064], 'UUID', 'BPM_163');... + atdrift('SD1C_43', 0.322, 'Action', 'BPM', 'EApertures', [0.00847619047619048 0.00847619047619048]);... + atmarker('VANNE_END', 'EApertures', [0.01 0.01]);... + atdrift('SD1C_44', 0.0835458676300582, 'Action', 'BPM', 'RApertures', [-0.00903809523809524 0.00857142857142857 -0.00903809523809524 0.00903809523809524]);... + atmarker('ONDULEURMARK_START', 'RApertures', [-0.00884571428571429 0.00828571428571429 -0.00884571428571429 0.00884571428571429]);... + atdrift('SD1C_45', 1.189, 'Action', 'BPM', 'RApertures', [-0.0045 0.004 -0.0035 0.0035]);... + atmarker('SD19CCENTER', 'EApertures', [0.0045 0.0035]);... + atdrift('SD1C_46', 1.189, 'Action', 'BPM', 'EApertures', [0.0045 0.0035]);... + atmarker('ONDULEURMARK_END', 'EApertures', [0.00902941176470588 0.00885294117647059]);... + atdrift('SD1C_47', 0.0835458676300582, 'Action', 'BPM', 'EApertures', [0.01 0.01]);... + atmarker('VANNE_START', 'EApertures', [0.01 0.01]);... + atdrift('SD1C_48', 0.322, 'Action', 'BPM', 'EApertures', [0.00854545454545455 0.00854545454545455]);... + atmarker('FCOR_19_2', 'UUID', 'FCOR_19_2_001');... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BPM_164');... + atmarker('VANNE_END', 'EApertures', [0.006 0.006]);... + atmarker('SD19CEND', 'EApertures', [0.006 0.006]);... + atmarker('AN-C19START', 'EApertures', [0.006 0.006]);... + atmarker('GIRDERSTART', 'EApertures', [0.006 0.006]);... + atquadrupole('Q8', 0.0786666675115942, -13.273182641893, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.07, 'EApertures', [0.006 0.006], 'UUID', 'Q8_016');... + atdrift('D031HC', 0.048, 'EApertures', [0.006 0.006]);... + atmultipole('OH7_QCORROCT_149_QT', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'MaxOrder', 3, 'UUID', 'OH7_QCORROCT_149_QT_001');... + atdrift('D022HC', 0.06, 'EApertures', [0.006 0.006]);... + atsextupole('SH7_COR', 0.06, 832.664084881681, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SH7_COR_016');... + atdrift('D032HC', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('Q9', 0.106409911705093, 12.8349230947647, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.098, 'EApertures', [0.006 0.006], 'UUID', 'Q9_016');... + atdrift('D06HCQ', 0.158, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BPM_165');... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'QCORR_190');... + atdrift('D022HCQ', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH8', 0.06, -366.603155097304, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'UUID', 'SH8_016');... + atdrift('D03HC', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('Q10', 0.0844113331477278, 13.6568508102765, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.076, 'EApertures', [0.006 0.006], 'UUID', 'Q10_016');... + atdrift('D041HCQ', 0.108, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'QCORR_191');... + atdrift('D022HCQ', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH9_COR', 0.06, -668.536791100884, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SH9_COR_016');... + atdrift('D03HC', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('Q11', 0.0789546761676337, -12.3862992113073, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.07, 'EApertures', [0.006 0.006], 'UUID', 'Q11_016');... + atdrift('D05HC', 0.00499988833315879, 'EApertures', [0.006 0.006]);... + atdrift('LBD1C', 0.0395472975018047, 'EApertures', [0.006 0.006]);... + atsbend('BD24', 0.0284984341976272, 0.00215787898333112, -1.18160211440423, 'EApertures', [0.00766666666666667 0.00766666666666667], 'UUID', 'BD24_029');... + atsbend('BD14', 0.0959771205127194, 0.00873427426315538, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0205293144427562);... + atsbend('BD14', 0.0959771205127194, 0.00873427426315538, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD14', 0.0959771205127194, 0.00873427426315538, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD14', 0.0959771205127194, 0.00873427426315538, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'ExitAngle', 0.0205293144427562);... + atsbend('BD24', 0.0284984341976272, 0.00215787898333112, -1.18160211440423, 'EApertures', [0.00786666666666667 0.00786666666666667]);... + atdrift('L03', 0.176061846245862, 'EApertures', [0.006 0.006]);... + atsextupole('SXD22', 0.09, -636.039531358256, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0075, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'SXD22_004');... + atdrift('L04', 0.111275514615956, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_19_1', 'EApertures', [0.006 0.006]);... + atmultipole('OCTF2_QCORROCT_150_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -262.360558705412], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'OCTF2_QCORROCT_150_QT_001');... + atdrift('L084', 0.048820499745398, 'EApertures', [0.006 0.006]);... + atsbend('BQ4H4', 0.0577872115264688, -0.000385457006104762, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.000385457006104762, 'UUID', 'BQ4H4_029');... + atsbend('BQ4H4', 0.0577872115264688, -0.000385457006104762, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'ExitAngle', -0.000385457006104762);... + atdrift('L084', 0.048820499745398, 'EApertures', [0.006 0.006]);... + atsextupole('SXF22_HCOR', 0.12, 843.464304725645, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXF22_HCOR_004');... + atdrift('L082', 0.0471064301693061, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H4', 0.0689196396343699, -0.00144531683192883, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00144531683192883, 'UUID', 'BQ6H4_057');... + atsbend('BQ6H4', 0.0689196396343699, -0.00144531683192883, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00144531683192883);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BPM_166');... + atsextupole('SXD22_VCOR', 0.09, -636.039531358256, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXD22_VCOR_004');... + atdrift('L071', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'QCORR_192');... + atmarker('GIRDEREND', 'EApertures', [0.006 0.006]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00666666666666667 0.00666666666666667]);... + atmarker('GIRDERSTART', 'EApertures', [0.008 0.008]);... + atsbend('BD4H4', 0.0393049032024916, 0.00234342379845867, -1.11997137375817, 'EApertures', [0.008 0.008], 'UUID', 'BD4H4_029');... + atsbend('BD5H4', 0.398927492296932, 0.0303936245742024, -1.86297299994296, 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0342430714728858);... + atsbend('BD5H4', 0.398927492296932, 0.0303936245742024, -1.86297299994296, 'EApertures', [0.008 0.008], 'ExitAngle', 0.0342430714728858);... + atsbend('BD4H4', 0.0393049032024916, 0.00234342379845867, -1.11997137375817, 'EApertures', [0.008 0.008]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00775 0.00775]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.0073 0.0073], 'UUID', 'QCORR_193');... + atdrift('L071', 0.048, 'EApertures', [0.0068 0.0068]);... + atsextupole('SXD2', 0.09, -617.904418360321, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'SXD2_004');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_19_2', 'EApertures', [0.006 0.006]);... + atsbend('BQ6H4', 0.0689196396343699, -0.00144531683192883, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00144531683192883, 'UUID', 'BQ6H4_059');... + atsbend('BQ6H4', 0.0689196396343699, -0.00144531683192883, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00144531683192883);... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsextupole('SXF2_HCOR', 0.12, 741.112250869933, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXF2_HCOR_004');... + atdrift('L081', 0.06, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF2_QCORROCT_151_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -262.360558705412], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'OCTF2_QCORROCT_151_QT_001');... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H4', 0.0689196396343699, -0.00144531683192883, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00144531683192883, 'UUID', 'BQ6H4_061');... + atsbend('BQ6H4', 0.0689196396343699, -0.00144531683192883, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00144531683192883);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BPM_167');... + atsextupole('SXD2_VCOR', 0.09, -617.904418360321, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXD2_VCOR_004');... + atdrift('L071', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'QCORR_194');... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00666666666666667 0.00666666666666667]);... + atsbend('BD4H4', 0.0393049032024916, 0.00234342379845867, -1.11997137375817, 'EApertures', [0.008 0.008], 'UUID', 'BD4H4_031');... + atsbend('BD5H4', 0.398927492296932, 0.0303936245742024, -1.86297299994296, 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0342430714728858);... + atsbend('BD5H4', 0.398927492296932, 0.0303936245742024, -1.86297299994296, 'EApertures', [0.008 0.008], 'ExitAngle', 0.0342430714728858);... + atsbend('BD4H4', 0.0393049032024916, 0.00234342379845867, -1.11997137375817, 'EApertures', [0.008 0.008]);... + atmarker('GIRDEREND', 'EApertures', [0.008 0.008]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00775 0.00775]);... + atmarker('GIRDERSTART', 'EApertures', [0.00745 0.00745]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.0073 0.0073], 'UUID', 'QCORR_195');... + atdrift('L071', 0.048, 'EApertures', [0.0068 0.0068]);... + atsextupole('SXD21', 0.09, -655.116114720116, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'SXD21_004');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_19_3', 'EApertures', [0.006 0.006]);... + atsbend('BQ6H4', 0.0689196396343699, -0.00144531683192883, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00144531683192883, 'UUID', 'BQ6H4_063');... + atsbend('BQ6H4', 0.0689196396343699, -0.00144531683192883, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00144531683192883);... + atdrift('L082', 0.0471064301693061, 'EApertures', [0.006 0.006]);... + atsextupole('SXF21_HCOR', 0.12, 719.09699842571, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXF21_HCOR_004');... + atdrift('L084', 0.048820499745398, 'EApertures', [0.006 0.006]);... + atsbend('BQ4H4', 0.0577872115264688, -0.000385457006104762, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.000385457006104762, 'UUID', 'BQ4H4_031');... + atsbend('BQ4H4', 0.0577872115264688, -0.000385457006104762, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'ExitAngle', -0.000385457006104762);... + atdrift('L085', 0.100096014361354, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF2_QCORROCT_152_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -262.360558705412], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'OCTF2_QCORROCT_152_QT_001');... + atdrift('L05', 0.06, 'EApertures', [0.008 0.008]);... + atsextupole('SXD21_VCOR', 0.09, -655.116114720116, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.00666666666666667 0.00666666666666667], 'KickAngle', [0. 0.], 'UUID', 'SXD21_VCOR_004');... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BPM_168');... + atdrift('L03', 0.176061846245862, 'Action', 'BPM', 'EApertures', [0.006 0.006]);... + atsbend('BD24', 0.0284984341976272, 0.00215787898333112, -1.18160211440423, 'EApertures', [0.008 0.008], 'UUID', 'BD24_031');... + atsbend('BD14', 0.0959771205127194, 0.00873427426315538, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0205293144427562);... + atsbend('BD14', 0.0959771205127194, 0.00873427426315538, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD14', 0.0959771205127194, 0.00873427426315538, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD14', 0.0959771205127194, 0.00873427426315538, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'ExitAngle', 0.0205293144427562);... + atsbend('BD24', 0.0284984341976272, 0.00215787898333112, -1.18160211440423, 'EApertures', [0.00715789473684211 0.00715789473684211]);... + atdrift('LBD1M1', 0.0395472975018047, 'EApertures', [0.00621052631578947 0.00621052631578947]);... + atdrift('D05HM1', 0.05, 'EApertures', [0.006 0.006]);... + atquadrupole('Q7', 0.0672457254622836, -11.8140171585779, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.058, 'EApertures', [0.006 0.006], 'UUID', 'Q7_007');... + atdrift('D03HM1', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH6_COR', 0.06, -324.475203415205, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SH6_COR_007');... + atdrift('D022HM1Q', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'QCORR_196');... + atdrift('D040HM1Q', 0.128, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_19_4', 'EApertures', [0.006 0.006]);... + atquadrupole('Q6', 0.067209291601852, 11.9784555023184, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.058, 'EApertures', [0.006 0.006], 'UUID', 'Q6_007');... + atdrift('D03HM1', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH5', 0.06, -514.413524183539, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'UUID', 'SH5_007');... + atdrift('D022HM1', 0.06, 'EApertures', [0.006 0.006]);... + atmultipole('OH5_QCORROCT_153', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.008 0.008], 'MaxOrder', 3, 'UUID', 'OH5_QCORROCT_153_001');... + atmonitor('BPM', 'EApertures', [0.008 0.008], 'UUID', 'BPM_169');... + atdrift('D06HM1', 0.13, 'Action', 'BPM', 'EApertures', [0.006 0.006]);... + atquadrupole('Q5', 0.105773394525209, 14.0793630884634, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.098, 'EApertures', [0.006 0.006], 'UUID', 'Q5_007');... + atdrift('D032HM1', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH4_COR', 0.06, 682.544409709839, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SH4_COR_007');... + atdrift('D022HM1', 0.06, 'EApertures', [0.006 0.006]);... + atmultipole('OH4_QCORROCT_154_QT', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'MaxOrder', 3, 'UUID', 'OH4_QCORROCT_154_QT_001');... + atdrift('D031HM1', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('Q4', 0.0785476107439048, -13.6216098775293, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.07, 'EApertures', [0.006 0.006], 'UUID', 'Q4_007');... + atmarker('GIRDEREND', 'EApertures', [0.006 0.006]);... + atmarker('AN-C19END', 'EApertures', [0.006 0.006]);... + atmarker('SD20MLSTART', 'EApertures', [0.006 0.006]);... + atmarker('VANNE_START', 'EApertures', [0.006 0.006]);... + atmarker('FCOR_20_1', 'UUID', 'FCOR_20_1_001');... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BPM_170');... + atdrift('SD1M1_33', 0.322, 'Action', 'BPM', 'EApertures', [0.00881818181818182 0.00881818181818182]);... + atmarker('VANNE_END', 'EApertures', [0.01 0.01]);... + atdrift('SD1M1_34', 0.519986392245071, 'Action', 'BPM', 'RApertures', [-0.00895714285714286 0.00828571428571429 -0.00895714285714286 0.00895714285714286]);... + atmarker('ONDULEURMARK_START', 'RApertures', [-0.00895714285714286 0.00828571428571429 -0.00895714285714286 0.00895714285714286]);... + atdrift('SD1M1_35', 1.29, 'Action', 'BPM', 'RApertures', [-0.0045 0.004 -0.0035 0.0035]);... + atmarker('SD20MLCENTER', 'EApertures', [0.0045 0.0035]);... + atdrift('SD1M1_36', 1.29, 'Action', 'BPM', 'EApertures', [0.0045 0.0035]);... + atmarker('ONDULEURMARK_END', 'EApertures', [0.00902941176470588 0.00885294117647059]);... + atdrift('SD1M1_37', 0.519986392245071, 'Action', 'BPM', 'EApertures', [0.01 0.01]);... + atmarker('VANNE_START', 'EApertures', [0.01 0.01]);... + atdrift('SD1M1_38', 0.322, 'Action', 'BPM', 'EApertures', [0.00876190476190476 0.00876190476190476]);... + atmarker('FCOR_20_2', 'UUID', 'FCOR_20_2_001');... + atmonitor('BPM', 'EApertures', [0.008 0.008], 'UUID', 'BPM_171');... + atmarker('VANNE_END', 'EApertures', [0.008 0.008]);... + atmarker('SD20MLEND', 'EApertures', [0.008 0.008]);... + atmarker('AN-C20START', 'EApertures', [0.008 0.008]);... + atmarker('GIRDERSTART', 'EApertures', [0.008 0.008]);... + atquadrupole('Q4', 0.0785476107439048, -13.6216098775293, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.07, 'EApertures', [0.006 0.006], 'UUID', 'Q4_008');... + atdrift('D031HM1', 0.048, 'EApertures', [0.006 0.006]);... + atmultipole('OH4_QCORROCT_155_QT', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'MaxOrder', 3, 'UUID', 'OH4_QCORROCT_155_QT_001');... + atdrift('D022HM1', 0.06, 'EApertures', [0.006 0.006]);... + atsextupole('SH4_COR', 0.06, 682.544409709839, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SH4_COR_008');... + atdrift('D032HM1', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('Q5', 0.105773394525209, 14.0793630884634, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.098, 'EApertures', [0.006 0.006], 'UUID', 'Q5_008');... + atdrift('D06HM1', 0.13, 'Action', 'BPM', 'EApertures', [0.0064 0.0064]);... + atmonitor('BPM', 'EApertures', [0.008 0.008], 'UUID', 'BPM_172');... + atmultipole('OH5_QCORROCT_156', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.008 0.008], 'MaxOrder', 3, 'UUID', 'OH5_QCORROCT_156_001');... + atdrift('D022HM1', 0.06, 'EApertures', [0.006 0.006]);... + atsextupole('SH5', 0.06, -514.413524183539, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'UUID', 'SH5_008');... + atdrift('D03HM1', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('Q6', 0.067209291601852, 11.9784555023184, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.058, 'EApertures', [0.006 0.006], 'UUID', 'Q6_008');... + atdrift('D040HM1Q', 0.128, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'QCORR_197');... + atdrift('D022HM1Q', 0.048, 'EApertures', [0.006 0.006]);... + atsextupole('SH6_COR', 0.06, -324.475203415205, 'Action', 'SxtHarm', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.06, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SH6_COR_008');... + atdrift('D03HM1', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('Q7', 0.0672457254622836, -11.8140171585779, 'BoDiameter', 0.016, 'BoGap', 0.00635, 'BoLength', 0.058, 'EApertures', [0.006 0.006], 'UUID', 'Q7_008');... + atdrift('D05HM1', 0.05, 'EApertures', [0.006 0.006]);... + atdrift('LBD1M1', 0.0395472975018047, 'EApertures', [0.006 0.006]);... + atsbend('BD27', 0.0284984341976272, 0.00225714925227511, -1.18160211440423, 'EApertures', [0.008 0.008], 'UUID', 'BD27_041');... + atsbend('BD17', 0.0959771205127194, 0.00913608259524057, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0205293144427562);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524057, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524057, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524057, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'ExitAngle', 0.0205293144427562);... + atsbend('BD27', 0.0284984341976272, 0.00225714925227511, -1.18160211440423, 'EApertures', [0.00766666666666667 0.00766666666666667]);... + atdrift('L03', 0.176061846245862, 'EApertures', [0.006 0.006]);... + atsextupole('SXD12', 0.09, -749.191327132338, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0075, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'SXD12_004');... + atdrift('L04', 0.111275514615956, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_20_1', 'EApertures', [0.006 0.006]);... + atmultipole('OCTF1_QCORROCT_157_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -800.842486671932], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'OCTF1_QCORROCT_157_QT_001');... + atdrift('L084', 0.048820499745398, 'EApertures', [0.006 0.006]);... + atsbend('BQ4H7', 0.0577872115264688, -0.000403189428060739, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.000403189428060739, 'UUID', 'BQ4H7_045');... + atsbend('BQ4H7', 0.0577872115264688, -0.000403189428060739, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'ExitAngle', -0.000403189428060739);... + atdrift('L084', 0.048820499745398, 'EApertures', [0.006 0.006]);... + atsextupole('SXF12_HCOR', 0.12, 860.065976124029, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXF12_HCOR_004');... + atdrift('L082', 0.0471064301693061, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444583, 'UUID', 'BQ6H7_175');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444583);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BPM_173');... + atsextupole('SXD12_VCOR', 0.09, -749.191327132338, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXD12_VCOR_004');... + atdrift('L071', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'QCORR_198');... + atmarker('GIRDEREND', 'EApertures', [0.006 0.006]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.008 0.008]);... + atmarker('GIRDERSTART', 'EApertures', [0.008 0.008]);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008], 'UUID', 'BD4H7_085');... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702353, -1.86297299994296, 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0342430714728858);... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702353, -1.86297299994296, 'EApertures', [0.008 0.008], 'ExitAngle', 0.0342430714728858);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00758974358974359 0.00758974358974359]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00717948717948718 0.00717948717948718], 'UUID', 'QCORR_199');... + atdrift('L071', 0.048, 'EApertures', [0.00666666666666667 0.00666666666666667]);... + atsextupole('SXD1', 0.09, -688.075994596801, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'SXD1_010');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_20_2', 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444583, 'UUID', 'BQ6H7_177');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444583);... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF1_QCORROCT_158_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -800.842486671932], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'OCTF1_QCORROCT_158_QT_001');... + atdrift('L081', 0.06, 'EApertures', [0.006 0.006]);... + atsextupole('SXF1_HCOR', 0.12, 781.382308964691, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXF1_HCOR_007');... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444583, 'UUID', 'BQ6H7_179');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444583);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BPM_174');... + atsextupole('SXD1_VCOR', 0.09, -688.075994596801, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXD1_VCOR_010');... + atdrift('L071', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'QCORR_200');... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.008 0.008]);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008], 'UUID', 'BD4H7_087');... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702353, -1.86297299994296, 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0342430714728858);... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702352, -1.86297299994296, 'EApertures', [0.008 0.008], 'ExitAngle', 0.0342430714728858);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008]);... + atmarker('GIRDEREND', 'EApertures', [0.00785 0.00785]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.0076 0.0076]);... + atmarker('GIRDERSTART', 'EApertures', [0.00735 0.00735]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00715 0.00715], 'UUID', 'QCORR_201');... + atdrift('L071', 0.048, 'EApertures', [0.00665 0.00665]);... + atsextupole('SXD1', 0.09, -688.075994596801, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'SXD1_011');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_20_3', 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444582, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444582, 'UUID', 'BQ6H7_181');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444582, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444582);... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF1_QCORROCT_159_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -800.842486671932], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'OCTF1_QCORROCT_159_QT_001');... + atdrift('L081', 0.06, 'EApertures', [0.006 0.006]);... + atsextupole('SXF13_HCOR', 0.12, 750.901805779491, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXF13_HCOR_007');... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsbend('BQ6HC7', 0.0689196396343699, -0.00144054604712974, 8.95984862959226, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00144054604712974, 'UUID', 'BQ6HC7_045');... + atsbend('BQ6HC7', 0.0689196396343699, -0.00144054604712974, 8.95984862959226, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00144054604712974);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BPM_175');... + atsextupole('SXD13_VCOR', 0.09, -689.724579569546, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXD13_VCOR_004');... + atdrift('L071C', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'QCORR_202');... + atdrift('L073C', 0.0430773209057085, 'EApertures', [0.00714285714285714 0.00714285714285714]);... + atsbend('BD3HC7', 0.01, 0.000258818071001969, -1.37551837900507, 'EApertures', [0.008 0.00789772727272727], 'UUID', 'BD3HC7_023');... + atsbend('BD4HC71', 0.03, 0.00188018240208164, -2.57765200910186, 'EApertures', [0.008 0.00769318181818182], 'EntranceAngle', 0.00982777557557598);... + atsbend('BD4HC7', 0.253621983633988, 0.0158951863469887, -2.57765200910186, 'EApertures', [0.008 0.00632954545454545]);... + atsbend('BD4HC71', 0.03, 0.00188018240208164, -2.57765200910186, 'EApertures', [0.008 0.005], 'ExitAngle', 0.00982777557557598);... + atsbend('BD5HC7', 0.0231155237960032, 0.00240516115877823, 0.0, 'EApertures', [0.008 0.005]);... + atsbend('BD6HC7', 0.0856857672699483, 0.0117810198825822, 0.0, 'EApertures', [0.008 0.005]);... + atsbend('BD6HC7', 0.0856857672699483, 0.0117810198825822, 0.0, 'EApertures', [0.008 0.005]);... + atsbend('BD5HC7', 0.0231155237960032, 0.00240516115877823, 0.0, 'EApertures', [0.008 0.005]);... + atsbend('BD4HC71', 0.03, 0.00188018240208164, -2.57765200910186, 'EApertures', [0.008 0.00518367346938775], 'EntranceAngle', 0.00982777557557598);... + atsbend('BD4HC7', 0.253621983633988, 0.0158951863469887, -2.57765200910186, 'EApertures', [0.008 0.00640816326530612]);... + atsbend('BD4HC71', 0.03, 0.00188018240208164, -2.57765200910186, 'EApertures', [0.008 0.00763265306122449], 'ExitAngle', 0.00982777557557598);... + atsbend('BD3HC7', 0.01, 0.000258818071001969, -1.37551837900507, 'EApertures', [0.008 0.00781632653061225]);... + atdrift('L073C', 0.0430773209057085, 'EApertures', [0.008 0.008]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00739393939393939 0.00739393939393939], 'UUID', 'QCORR_203');... + atdrift('L071C', 0.048, 'EApertures', [0.00678787878787879 0.00678787878787879]);... + atsextupole('SXD13', 0.09, -689.724579569546, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.007, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'SXD13_004');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atmarker('CROTCH_20_4', 'EApertures', [0.006 0.006]);... + atsbend('BQ6HC7', 0.0689196396343699, -0.00144054604712974, 8.95984862959226, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00144054604712974, 'UUID', 'BQ6HC7_047');... + atsbend('BQ6HC7', 0.0689196396343699, -0.00144054604712974, 8.95984862959226, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00144054604712974);... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsextupole('SXF13_HCOR', 0.12, 750.901805779491, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXF13_HCOR_008');... + atdrift('L081', 0.06, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF1_QCORROCT_160_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -800.842486671932], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'OCTF1_QCORROCT_160_QT_001');... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444582, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444582, 'UUID', 'BQ6H7_183');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444582, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444582);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BPM_176');... + atsextupole('SXD1_VCOR', 0.09, -688.075994596801, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXD1_VCOR_011');... + atdrift('L071', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'QCORR_204');... + atmarker('GIRDEREND', 'EApertures', [0.006 0.006]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.0076 0.0076]);... + atmarker('GIRDERSTART', 'EApertures', [0.008 0.008]);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008], 'UUID', 'BD4H7_089');... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702352, -1.86297299994296, 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0342430714728858);... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702353, -1.86297299994296, 'EApertures', [0.008 0.008], 'ExitAngle', 0.0342430714728858);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008]);... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.00758974358974359 0.00758974358974359]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00717948717948718 0.00717948717948718], 'UUID', 'QCORR_205');... + atdrift('L071', 0.048, 'EApertures', [0.00666666666666667 0.00666666666666667]);... + atsextupole('SXD1', 0.09, -688.075994596801, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'SXD1_012');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444583, 'UUID', 'BQ6H7_185');... + atmarker('CROTCH_20_5', 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444583);... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsextupole('SXF1_HCOR', 0.12, 781.382308964691, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXF1_HCOR_008');... + atdrift('L081', 0.06, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF1_QCORROCT_161_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -800.842486671932], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'OCTF1_QCORROCT_161_QT_001');... + atdrift('L083', 0.0510803604344797, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444583, 'UUID', 'BQ6H7_187');... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444583);... + atdrift('L072', 0.137336915990035, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BPM_177');... + atsextupole('SXD1_VCOR', 0.09, -688.075994596801, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXD1_VCOR_012');... + atdrift('L071', 0.048, 'EApertures', [0.006 0.006]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.006 0.006], 'UUID', 'QCORR_206');... + atdrift('L073', 0.0372677805661953, 'EApertures', [0.008 0.008]);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'EApertures', [0.008 0.008], 'UUID', 'BD4H7_091');... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702353, -1.86297299994296, 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0342430714728858);... + atsbend('BD5H7', 0.398927492296932, 0.0317918416702353, -1.86297299994296, 'EApertures', [0.008 0.008], 'ExitAngle', 0.0342430714728858);... + atsbend('BD4H7', 0.0393049032024916, 0.00245122980265062, -1.11997137375817, 'RApertures', [-0.008 0.0045 -0.008 0.008 ]);... + atmarker('MIR_AILES', 'RApertures', [-0.00784615384615385 0.0045 -0.00784615384615385 0.00784615384615385]);... + atmarker('GIRDEREND', 'RApertures', [-0.00784615384615385 0.0045 -0.00784615384615385 0.00784615384615385]);... + atdrift('L073', 0.0372677805661953, 'RApertures', [-0.00758974358974359 0.0045 -0.00758974358974359 0.00758974358974359]);... + atmarker('GIRDERSTART', 'EApertures', [0.00733333333333333 0.00733333333333333]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.00712820512820513 0.00712820512820513], 'UUID', 'QCORR_207');... + atdrift('L071', 0.048, 'EApertures', [0.00661538461538461 0.00661538461538461]);... + atsextupole('SXD11', 0.09, -701.568414672357, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'UUID', 'SXD11_004');... + atdrift('L072', 0.137336915990035, 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.00151180665444583, 'UUID', 'BQ6H7_189');... + atmarker('CROTCH_20_6', 'EApertures', [0.006 0.006]);... + atsbend('BQ6H7', 0.0689196396343699, -0.00151180665444583, 8.79568061387988, 'Action', 'FocTune', 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.006 0.006], 'ExitAngle', -0.00151180665444583);... + atdrift('L082', 0.0471064301693061, 'EApertures', [0.006 0.006]);... + atsextupole('SXF11_HCOR', 0.12, 831.660252988522, 'Action', 'FocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.12, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXF11_HCOR_004');... + atdrift('L084', 0.048820499745398, 'EApertures', [0.006 0.006]);... + atsbend('BQ4H7', 0.0577872115264688, -0.000403189428060739, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'EntranceAngle', -0.000403189428060739, 'UUID', 'BQ4H7_047');... + atsbend('BQ4H7', 0.0577872115264688, -0.000403189428060739, 11.4815964714767, 'Action', 'FocTune', 'BoDiameter', 0.018, 'BoGap', 0.00648, 'BoLength', 0.106, 'EApertures', [0.006 0.006], 'ExitAngle', -0.000403189428060739);... + atdrift('L085', 0.100096014361354, 'EApertures', [0.006 0.006]);... + atmultipole('OCTF1_QCORROCT_162_QT', 0.06, [0. 0. 0. 0.], [ 0. 0. 0. -800.842486671932], 'Action', 'OctChrom', 'BoDiameter', 0.019, 'BoGap', 0.0064, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.006 0.006], 'UUID', 'OCTF1_QCORROCT_162_QT_001');... + atdrift('L05', 0.06, 'EApertures', [0.006 0.006]);... + atsextupole('SXD11_VCOR', 0.09, -701.568414672357, 'Action', 'DeFocChrom', 'BoDiameter', 0.016, 'BoGap', 0.0062, 'BoLength', 0.09, 'EApertures', [0.006 0.006], 'KickAngle', [0. 0.], 'UUID', 'SXD11_VCOR_004');... + atmonitor('BPM', 'EApertures', [0.006 0.006], 'UUID', 'BPM_178');... + atdrift('L03', 0.176061846245862, 'Action', 'BPM', 'EApertures', [0.008 0.008]);... + atsbend('BD27', 0.0284984341976272, 0.00225714925227511, -1.18160211440423, 'EApertures', [0.008 0.008], 'UUID', 'BD27_043');... + atsbend('BD17', 0.0959771205127194, 0.00913608259524057, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'EntranceAngle', 0.0205293144427562);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524057, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524057, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008]);... + atsbend('BD17', 0.0959771205127194, 0.00913608259524057, -1.96905863509927, 'Action', 'DeFocTune', 'EApertures', [0.008 0.008], 'ExitAngle', 0.0205293144427562);... + atsbend('BD27', 0.0284984341976272, 0.00225714925227511, -1.18160211440423, 'EApertures', [0.0085 0.0085]);... + atdrift('LBD1I', 0.0395472975018047, 'EApertures', [0.0085 0.0085]);... + atdrift('D05HI', 0.00499988833315879, 'EApertures', [0.0085 0.0085]);... + atquadrupole('Q3', 0.19168495937003, 8.41314022851464, 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.18, 'EApertures', [0.0085 0.0085], 'UUID', 'Q3_004');... + atdrift('D03HIQ', 0.1, 'EApertures', [0.0085 0.0085]);... + atquadrupole('QCORR', 0.024, 0.0, 'BoDiameter', 0.019, 'BoGap', 0.007, 'BoLength', 0.024, 'EApertures', [0.0085 0.0085], 'UUID', 'QCORR_208');... + atdrift('D022HIQ', 0.048, 'EApertures', [0.0085 0.0085]);... + atsextupole('SH3_VCOR', 0.075, -319.26546309512, 'Action', 'SxtHarm', 'BoDiameter', 0.021, 'BoGap', 0.0062, 'BoLength', 0.075, 'EApertures', [0.0085 0.0085], 'KickAngle', [0. 0.], 'UUID', 'SH3_VCOR_004');... + atmonitor('BPM', 'EApertures', [0.0085 0.0085], 'UUID', 'BPM_179');... + atdrift('D041HI', 0.118040964330437, 'Action', 'BPM', 'EApertures', [0.0085 0.0085]);... + atmarker('CROTCH_20_7', 'EApertures', [0.0085 0.0085]);... + atquadrupole('Q2', 0.190595998125992, -9.58185915782871, 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.18, 'EApertures', [0.0085 0.0085], 'UUID', 'Q2_004');... + atdrift('D03HI', 0.052, 'EApertures', [0.0085 0.0085]);... + atmultipole('OH2_QCORROCT_163', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.021, 'BoGap', 0.00718, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.0085 0.0085], 'MaxOrder', 3, 'UUID', 'OH2_QCORROCT_163_001');... + atdrift('D022HI', 0.06, 'EApertures', [0.0085 0.0085]);... + atsextupole('SH2_HCOR', 0.075, -0.0179339928448087, 'Action', 'SxtHarm', 'BoDiameter', 0.021, 'BoGap', 0.0062, 'BoLength', 0.075, 'EApertures', [0.0085 0.0085], 'KickAngle', [0. 0.], 'UUID', 'SH2_HCOR_004');... + atdrift('D03HI', 0.052, 'EApertures', [0.0085 0.0085]);... + atquadrupole('Q1', 0.137671036897098, 9.06658187296726, 'BoDiameter', 0.021, 'BoGap', 0.00648, 'BoLength', 0.126, 'EApertures', [0.0085 0.0085], 'UUID', 'Q1_004');... + atdrift('D031HI', 0.052, 'EApertures', [0.0085 0.0085]);... + atmultipole('OH1_QCORROCT_164_QT', 0.06, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Action', 'OctHarm', 'BoDiameter', 0.021, 'BoGap', 0.00718, 'BoLength', 0.06, 'Class', 'Octupole', 'EApertures', [0.0085 0.0085], 'MaxOrder', 3, 'UUID', 'OH1_QCORROCT_164_QT_001');... + atdrift('D022HI', 0.06, 'EApertures', [0.0085 0.0085]);... + atsextupole('SH1_COR', 0.075, 180.531158381771, 'Action', 'SxtHarm', 'BoDiameter', 0.021, 'BoGap', 0.0062, 'BoLength', 0.075, 'EApertures', [0.008 0.008], 'KickAngle', [0. 0.], 'UUID', 'SH1_COR_004');... + atmarker('GIRDEREND', 'EApertures', [0.008 0.008]);... + atmarker('AN-C20END', 'EApertures', [0.008 0.008]);... + atmarker('SD01ISTART', 'EApertures', [0.008 0.008]);... + atmarker('VANNE_START', 'EApertures', [0.008 0.008]);... + atmarker('FCOR_1_1', 'UUID', 'FCOR_1_1_001');... + atmonitor('BPM', 'EApertures', [0.008 0.008], 'UUID', 'BPM_180');... + atdrift('SD1I_22', 0.322, 'Action', 'BPM', 'EApertures', [0.012 0.012]);... + atmarker('VANNE_END', 'EApertures', [0.012 0.012]);... + atdrift('SD1I_23', 0.166164763423493, 'Action', 'BPM', 'EApertures', [0.0137777777777778 0.00933333333333333]);... + atmultipole('SD01IKICKER1', 0.3, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Class', 'Octupole', 'EApertures', [0.015 0.0075]);... + atdrift('SD1I_24', 0.3433, 'Action', 'BPM', 'RApertures', [-0.0146797153024911 0.008 -0.0075 0.0075 ]);... + atmarker('THICKSEPTUMSTART', 'RApertures', [-0.014653024911032 0.015 -0.0075 0.0075 ]);... + atmultipole('THICKSEPTUM', 0.8973, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Class', 'Octupole', 'RApertures', [-0.0112900355871886 0.015 -0.0075 0.0075 ]);... + atmarker('THICKSEPTUMEND', 'RApertures', [-0.00790035587188612 0.015 -0.0075 0.0075 ]);... + atdrift('SD1I_25', 0.236459999999998, 'Action', 'BPM', 'RApertures', [-0.005 0.0153654822335025 -0.0075 0.0075 ]);... + atmarker('THINSEPTUMSTART', 'RApertures', [-0.005 0.0160355329949239 -0.0075 0.0075 ]);... + atmultipole('THINSEPTUM', 0.4, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Class', 'Octupole', 'RApertures', [-0.005 0.0160355329949239 -0.0075 0.0075 ]);... + atmarker('THINSEPTUMEND', 'RApertures', [-0.005 0.0183299492385787 -0.0075 0.0075 ]);... + atdrift('SD1I_26', 0.225, 'Action', 'BPM', 'RApertures', [-0.005 0.00990909090909091 -0.0075 0.0075 ]);... + atmultipole('SD01IKICKER2', 0.3, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Class', 'Octupole', 'EApertures', [0.015 0.0075]);... + atdrift('SD1I_27', 0.1, 'Action', 'BPM', 'EApertures', [0.015 0.0075]);... + atmultipole('SD01IKICKER3', 0.3, [0. 0. 0. 0.], [0. 0. 0. 0.], 'Class', 'Octupole', 'EApertures', [0.015 0.0075]);... + atdrift('SD1I_28', 0.43100440243653, 'Action', 'BPM', 'EApertures', [0.015 0.0075]);... +}; + function v=False() + v=false; + end + function v=True() + v=true; + end +end diff --git a/examples/SOLEIL_examples/p.yaml b/examples/SOLEIL_examples/p.yaml new file mode 100644 index 0000000..5ec7993 --- /dev/null +++ b/examples/SOLEIL_examples/p.yaml @@ -0,0 +1,17710 @@ +type: pyaml.accelerator +facility: Synchrotron SOLEIL +machine: sr +data_folder: /data/store +energy: 2750000000.0 +simulators: +- type: pyaml.lattice.simulator + lattice: SOLEIL_II_V3631_sym1_V001_database_rf.m + name: design + linker: + type: pyaml.lattice.attribute_linker + attribute_name: UUID +controls: +- type: tango.pyaml.controlsystem + name: live + tango_host: localhost:11000 +arrays: +- type: pyaml.arrays.bpm + name: BPM + elements: + - BPM_001 + - BPM_002 + - BPM_003 + - BPM_004 + - BPM_005 + - BPM_006 + - BPM_007 + - BPM_008 + - BPM_009 + - BPM_010 + - BPM_011 + - BPM_012 + - BPM_013 + - BPM_014 + - BPM_015 + - BPM_016 + - BPM_017 + - BPM_018 + - BPM_019 + - BPM_020 + - BPM_021 + - BPM_022 + - BPM_023 + - BPM_024 + - BPM_025 + - BPM_026 + - BPM_027 + - BPM_028 + - BPM_029 + - BPM_030 + - BPM_031 + - BPM_032 + - BPM_033 + - BPM_034 + - BPM_035 + - BPM_036 + - BPM_037 + - BPM_038 + - BPM_039 + - BPM_040 + - BPM_041 + - BPM_042 + - BPM_043 + - BPM_044 + - BPM_045 + - BPM_046 + - BPM_047 + - BPM_048 + - BPM_049 + - BPM_050 + - BPM_051 + - BPM_052 + - BPM_053 + - BPM_054 + - BPM_055 + - BPM_056 + - BPM_057 + - BPM_058 + - BPM_059 + - BPM_060 + - BPM_061 + - BPM_062 + - BPM_063 + - BPM_064 + - BPM_065 + - BPM_066 + - BPM_067 + - BPM_068 + - BPM_069 + - BPM_070 + - BPM_071 + - BPM_072 + - BPM_073 + - BPM_074 + - BPM_075 + - BPM_076 + - BPM_077 + - BPM_078 + - BPM_079 + - BPM_080 + - BPM_081 + - BPM_082 + - BPM_083 + - BPM_084 + - BPM_085 + - BPM_086 + - BPM_087 + - BPM_088 + - BPM_089 + - BPM_090 + - BPM_091 + - BPM_092 + - BPM_093 + - BPM_094 + - BPM_095 + - BPM_096 + - BPM_097 + - BPM_098 + - BPM_099 + - BPM_100 + - BPM_101 + - BPM_102 + - BPM_103 + - BPM_104 + - BPM_105 + - BPM_106 + - BPM_107 + - BPM_108 + - BPM_109 + - BPM_110 + - BPM_111 + - BPM_112 + - BPM_113 + - BPM_114 + - BPM_115 + - BPM_116 + - BPM_117 + - BPM_118 + - BPM_119 + - BPM_120 + - BPM_121 + - BPM_122 + - BPM_123 + - BPM_124 + - BPM_125 + - BPM_126 + - BPM_127 + - BPM_128 + - BPM_129 + - BPM_130 + - BPM_131 + - BPM_132 + - BPM_133 + - BPM_134 + - BPM_135 + - BPM_136 + - BPM_137 + - BPM_138 + - BPM_139 + - BPM_140 + - BPM_141 + - BPM_142 + - BPM_143 + - BPM_144 + - BPM_145 + - BPM_146 + - BPM_147 + - BPM_148 + - BPM_149 + - BPM_150 + - BPM_151 + - BPM_152 + - BPM_153 + - BPM_154 + - BPM_155 + - BPM_156 + - BPM_157 + - BPM_158 + - BPM_159 + - BPM_160 + - BPM_161 + - BPM_162 + - BPM_163 + - BPM_164 + - BPM_165 + - BPM_166 + - BPM_167 + - BPM_168 + - BPM_169 + - BPM_170 + - BPM_171 + - BPM_172 + - BPM_173 + - BPM_174 + - BPM_175 + - BPM_176 + - BPM_177 + - BPM_178 + - BPM_179 + - BPM_180 +- type: pyaml.arrays.element + name: Cell1 + elements: + - BPM_001 + - SH1_COR_001 + - SH1_COR_001.sextupole + - SH1_COR_001.hcorrector + - SH1_COR_001.vcorrector + - OH1_QCORROCT_1_QT_001 + - OH1_QCORROCT_1_QT_001.octupole + - OH1_QCORROCT_1_QT_001.quadrupole + - OH1_QCORROCT_1_QT_001.skewquad + - SH2_HCOR_001 + - SH2_HCOR_001.sextupole + - SH2_HCOR_001.hcorrector + - OH2_QCORROCT_2_001 + - OH2_QCORROCT_2_001.octupole + - OH2_QCORROCT_2_001.quadrupole + - BPM_002 + - SH3_VCOR_001 + - SH3_VCOR_001.sextupole + - SH3_VCOR_001.vcorrector + - QCORR_001 + - SXD11_001 + - OCTF1_QCORROCT_3_QT_001 + - OCTF1_QCORROCT_3_QT_001.octupole + - OCTF1_QCORROCT_3_QT_001.quadrupole + - OCTF1_QCORROCT_3_QT_001.skewquad + - SXF11_HCOR_001 + - SXF11_HCOR_001.sextupole + - SXF11_HCOR_001.hcorrector + - BPM_003 + - SXD11_VCOR_001 + - SXD11_VCOR_001.sextupole + - SXD11_VCOR_001.vcorrector + - QCORR_002 + - QCORR_003 + - SXD1_001 + - OCTF1_QCORROCT_4_QT_001 + - OCTF1_QCORROCT_4_QT_001.octupole + - OCTF1_QCORROCT_4_QT_001.quadrupole + - OCTF1_QCORROCT_4_QT_001.skewquad + - SXF1_HCOR_001 + - SXF1_HCOR_001.sextupole + - SXF1_HCOR_001.hcorrector + - BPM_004 + - SXD1_VCOR_001 + - SXD1_VCOR_001.sextupole + - SXD1_VCOR_001.vcorrector + - QCORR_004 + - QCORR_005 + - SXD1_002 + - OCTF1_QCORROCT_5_QT_001 + - OCTF1_QCORROCT_5_QT_001.octupole + - OCTF1_QCORROCT_5_QT_001.quadrupole + - OCTF1_QCORROCT_5_QT_001.skewquad + - SXF13_HCOR_001 + - SXF13_HCOR_001.sextupole + - SXF13_HCOR_001.hcorrector + - BPM_005 + - SXD13_VCOR_001 + - SXD13_VCOR_001.sextupole + - SXD13_VCOR_001.vcorrector + - QCORR_006 + - QCORR_007 + - SXD13_001 + - SXF13_HCOR_002 + - SXF13_HCOR_002.sextupole + - SXF13_HCOR_002.hcorrector + - OCTF1_QCORROCT_6_QT_001 + - OCTF1_QCORROCT_6_QT_001.octupole + - OCTF1_QCORROCT_6_QT_001.quadrupole + - OCTF1_QCORROCT_6_QT_001.skewquad + - BPM_006 + - SXD1_VCOR_002 + - SXD1_VCOR_002.sextupole + - SXD1_VCOR_002.vcorrector + - QCORR_008 + - QCORR_009 + - SXD1_003 + - SXF1_HCOR_002 + - SXF1_HCOR_002.sextupole + - SXF1_HCOR_002.hcorrector + - OCTF1_QCORROCT_7_QT_001 + - OCTF1_QCORROCT_7_QT_001.octupole + - OCTF1_QCORROCT_7_QT_001.quadrupole + - OCTF1_QCORROCT_7_QT_001.skewquad + - BPM_007 + - SXD1_VCOR_003 + - SXD1_VCOR_003.sextupole + - SXD1_VCOR_003.vcorrector + - QCORR_010 + - QCORR_011 + - SXD12_001 + - SXF12_HCOR_001 + - SXF12_HCOR_001.sextupole + - SXF12_HCOR_001.hcorrector + - OCTF1_QCORROCT_8_QT_001 + - OCTF1_QCORROCT_8_QT_001.octupole + - OCTF1_QCORROCT_8_QT_001.quadrupole + - OCTF1_QCORROCT_8_QT_001.skewquad + - SXD12_VCOR_001 + - SXD12_VCOR_001.sextupole + - SXD12_VCOR_001.vcorrector + - BPM_008 + - SH6_COR_001 + - SH6_COR_001.sextupole + - SH6_COR_001.hcorrector + - SH6_COR_001.vcorrector + - QCORR_012 + - SH5_001 + - OH5_QCORROCT_9_001 + - OH5_QCORROCT_9_001.octupole + - OH5_QCORROCT_9_001.quadrupole + - BPM_009 + - SH4_COR_001 + - SH4_COR_001.sextupole + - SH4_COR_001.hcorrector + - SH4_COR_001.vcorrector + - OH4_QCORROCT_10_QT_001 + - OH4_QCORROCT_10_QT_001.octupole + - OH4_QCORROCT_10_QT_001.quadrupole + - OH4_QCORROCT_10_QT_001.skewquad + - BPM_180 +- type: pyaml.arrays.magnet + name: SH1_COR + elements: + - SH1_COR_001.sextupole + - SH1_COR_001.hcorrector + - SH1_COR_001.vcorrector + - SH1_COR_002.sextupole + - SH1_COR_002.hcorrector + - SH1_COR_002.vcorrector + - SH1_COR_003.sextupole + - SH1_COR_003.hcorrector + - SH1_COR_003.vcorrector + - SH1_COR_004.sextupole + - SH1_COR_004.hcorrector + - SH1_COR_004.vcorrector +- type: pyaml.arrays.magnet + name: OH1_QCORROCT_1_QT + elements: + - OH1_QCORROCT_1_QT_001.octupole + - OH1_QCORROCT_1_QT_001.quadrupole + - OH1_QCORROCT_1_QT_001.skewquad +- type: pyaml.arrays.magnet + name: SH2_HCOR + elements: + - SH2_HCOR_001.sextupole + - SH2_HCOR_001.hcorrector + - SH2_HCOR_002.sextupole + - SH2_HCOR_002.hcorrector + - SH2_HCOR_003.sextupole + - SH2_HCOR_003.hcorrector + - SH2_HCOR_004.sextupole + - SH2_HCOR_004.hcorrector +- type: pyaml.arrays.magnet + name: OH2_QCORROCT_2 + elements: + - OH2_QCORROCT_2_001.octupole + - OH2_QCORROCT_2_001.quadrupole +- type: pyaml.arrays.magnet + name: SH3_VCOR + elements: + - SH3_VCOR_001.sextupole + - SH3_VCOR_001.vcorrector + - SH3_VCOR_002.sextupole + - SH3_VCOR_002.vcorrector + - SH3_VCOR_003.sextupole + - SH3_VCOR_003.vcorrector + - SH3_VCOR_004.sextupole + - SH3_VCOR_004.vcorrector +- type: pyaml.arrays.magnet + name: QCORR + elements: + - QCORR_001 + - QCORR_002 + - QCORR_003 + - QCORR_004 + - QCORR_005 + - QCORR_006 + - QCORR_007 + - QCORR_008 + - QCORR_009 + - QCORR_010 + - QCORR_011 + - QCORR_012 + - QCORR_013 + - QCORR_014 + - QCORR_015 + - QCORR_016 + - QCORR_017 + - QCORR_018 + - QCORR_019 + - QCORR_020 + - QCORR_021 + - QCORR_022 + - QCORR_023 + - QCORR_024 + - QCORR_025 + - QCORR_026 + - QCORR_027 + - QCORR_028 + - QCORR_029 + - QCORR_030 + - QCORR_031 + - QCORR_032 + - QCORR_033 + - QCORR_034 + - QCORR_035 + - QCORR_036 + - QCORR_037 + - QCORR_038 + - QCORR_039 + - QCORR_040 + - QCORR_041 + - QCORR_042 + - QCORR_043 + - QCORR_044 + - QCORR_045 + - QCORR_046 + - QCORR_047 + - QCORR_048 + - QCORR_049 + - QCORR_050 + - QCORR_051 + - QCORR_052 + - QCORR_053 + - QCORR_054 + - QCORR_055 + - QCORR_056 + - QCORR_057 + - QCORR_058 + - QCORR_059 + - QCORR_060 + - QCORR_061 + - QCORR_062 + - QCORR_063 + - QCORR_064 + - QCORR_065 + - QCORR_066 + - QCORR_067 + - QCORR_068 + - QCORR_069 + - QCORR_070 + - QCORR_071 + - QCORR_072 + - QCORR_073 + - QCORR_074 + - QCORR_075 + - QCORR_076 + - QCORR_077 + - QCORR_078 + - QCORR_079 + - QCORR_080 + - QCORR_081 + - QCORR_082 + - QCORR_083 + - QCORR_084 + - QCORR_085 + - QCORR_086 + - QCORR_087 + - QCORR_088 + - QCORR_089 + - QCORR_090 + - QCORR_091 + - QCORR_092 + - QCORR_093 + - QCORR_094 + - QCORR_095 + - QCORR_096 + - QCORR_097 + - QCORR_098 + - QCORR_099 + - QCORR_100 + - QCORR_101 + - QCORR_102 + - QCORR_103 + - QCORR_104 + - QCORR_105 + - QCORR_106 + - QCORR_107 + - QCORR_108 + - QCORR_109 + - QCORR_110 + - QCORR_111 + - QCORR_112 + - QCORR_113 + - QCORR_114 + - QCORR_115 + - QCORR_116 + - QCORR_117 + - QCORR_118 + - QCORR_119 + - QCORR_120 + - QCORR_121 + - QCORR_122 + - QCORR_123 + - QCORR_124 + - QCORR_125 + - QCORR_126 + - QCORR_127 + - QCORR_128 + - QCORR_129 + - QCORR_130 + - QCORR_131 + - QCORR_132 + - QCORR_133 + - QCORR_134 + - QCORR_135 + - QCORR_136 + - QCORR_137 + - QCORR_138 + - QCORR_139 + - QCORR_140 + - QCORR_141 + - QCORR_142 + - QCORR_143 + - QCORR_144 + - QCORR_145 + - QCORR_146 + - QCORR_147 + - QCORR_148 + - QCORR_149 + - QCORR_150 + - QCORR_151 + - QCORR_152 + - QCORR_153 + - QCORR_154 + - QCORR_155 + - QCORR_156 + - QCORR_157 + - QCORR_158 + - QCORR_159 + - QCORR_160 + - QCORR_161 + - QCORR_162 + - QCORR_163 + - QCORR_164 + - QCORR_165 + - QCORR_166 + - QCORR_167 + - QCORR_168 + - QCORR_169 + - QCORR_170 + - QCORR_171 + - QCORR_172 + - QCORR_173 + - QCORR_174 + - QCORR_175 + - QCORR_176 + - QCORR_177 + - QCORR_178 + - QCORR_179 + - QCORR_180 + - QCORR_181 + - QCORR_182 + - QCORR_183 + - QCORR_184 + - QCORR_185 + - QCORR_186 + - QCORR_187 + - QCORR_188 + - QCORR_189 + - QCORR_190 + - QCORR_191 + - QCORR_192 + - QCORR_193 + - QCORR_194 + - QCORR_195 + - QCORR_196 + - QCORR_197 + - QCORR_198 + - QCORR_199 + - QCORR_200 + - QCORR_201 + - QCORR_202 + - QCORR_203 + - QCORR_204 + - QCORR_205 + - QCORR_206 + - QCORR_207 + - QCORR_208 +- type: pyaml.arrays.magnet + name: SXD11 + elements: + - SXD11_001 + - SXD11_002 + - SXD11_003 + - SXD11_004 +- type: pyaml.arrays.magnet + name: OCTF1_QCORROCT_3_QT + elements: + - OCTF1_QCORROCT_3_QT_001.octupole + - OCTF1_QCORROCT_3_QT_001.quadrupole + - OCTF1_QCORROCT_3_QT_001.skewquad +- type: pyaml.arrays.magnet + name: SXF11_HCOR + elements: + - SXF11_HCOR_001.sextupole + - SXF11_HCOR_001.hcorrector + - SXF11_HCOR_002.sextupole + - SXF11_HCOR_002.hcorrector + - SXF11_HCOR_003.sextupole + - SXF11_HCOR_003.hcorrector + - SXF11_HCOR_004.sextupole + - SXF11_HCOR_004.hcorrector +- type: pyaml.arrays.magnet + name: SXD11_VCOR + elements: + - SXD11_VCOR_001.sextupole + - SXD11_VCOR_001.vcorrector + - SXD11_VCOR_002.sextupole + - SXD11_VCOR_002.vcorrector + - SXD11_VCOR_003.sextupole + - SXD11_VCOR_003.vcorrector + - SXD11_VCOR_004.sextupole + - SXD11_VCOR_004.vcorrector +- type: pyaml.arrays.magnet + name: SXD1 + elements: + - SXD1_001 + - SXD1_002 + - SXD1_003 + - SXD1_004 + - SXD1_005 + - SXD1_006 + - SXD1_007 + - SXD1_008 + - SXD1_009 + - SXD1_010 + - SXD1_011 + - SXD1_012 +- type: pyaml.arrays.magnet + name: OCTF1_QCORROCT_4_QT + elements: + - OCTF1_QCORROCT_4_QT_001.octupole + - OCTF1_QCORROCT_4_QT_001.quadrupole + - OCTF1_QCORROCT_4_QT_001.skewquad +- type: pyaml.arrays.magnet + name: SXF1_HCOR + elements: + - SXF1_HCOR_001.sextupole + - SXF1_HCOR_001.hcorrector + - SXF1_HCOR_002.sextupole + - SXF1_HCOR_002.hcorrector + - SXF1_HCOR_003.sextupole + - SXF1_HCOR_003.hcorrector + - SXF1_HCOR_004.sextupole + - SXF1_HCOR_004.hcorrector + - SXF1_HCOR_005.sextupole + - SXF1_HCOR_005.hcorrector + - SXF1_HCOR_006.sextupole + - SXF1_HCOR_006.hcorrector + - SXF1_HCOR_007.sextupole + - SXF1_HCOR_007.hcorrector + - SXF1_HCOR_008.sextupole + - SXF1_HCOR_008.hcorrector +- type: pyaml.arrays.magnet + name: SXD1_VCOR + elements: + - SXD1_VCOR_001.sextupole + - SXD1_VCOR_001.vcorrector + - SXD1_VCOR_002.sextupole + - SXD1_VCOR_002.vcorrector + - SXD1_VCOR_003.sextupole + - SXD1_VCOR_003.vcorrector + - SXD1_VCOR_004.sextupole + - SXD1_VCOR_004.vcorrector + - SXD1_VCOR_005.sextupole + - SXD1_VCOR_005.vcorrector + - SXD1_VCOR_006.sextupole + - SXD1_VCOR_006.vcorrector + - SXD1_VCOR_007.sextupole + - SXD1_VCOR_007.vcorrector + - SXD1_VCOR_008.sextupole + - SXD1_VCOR_008.vcorrector + - SXD1_VCOR_009.sextupole + - SXD1_VCOR_009.vcorrector + - SXD1_VCOR_010.sextupole + - SXD1_VCOR_010.vcorrector + - SXD1_VCOR_011.sextupole + - SXD1_VCOR_011.vcorrector + - SXD1_VCOR_012.sextupole + - SXD1_VCOR_012.vcorrector +- type: pyaml.arrays.magnet + name: OCTF1_QCORROCT_5_QT + elements: + - OCTF1_QCORROCT_5_QT_001.octupole + - OCTF1_QCORROCT_5_QT_001.quadrupole + - OCTF1_QCORROCT_5_QT_001.skewquad +- type: pyaml.arrays.magnet + name: SXF13_HCOR + elements: + - SXF13_HCOR_001.sextupole + - SXF13_HCOR_001.hcorrector + - SXF13_HCOR_002.sextupole + - SXF13_HCOR_002.hcorrector + - SXF13_HCOR_003.sextupole + - SXF13_HCOR_003.hcorrector + - SXF13_HCOR_004.sextupole + - SXF13_HCOR_004.hcorrector + - SXF13_HCOR_005.sextupole + - SXF13_HCOR_005.hcorrector + - SXF13_HCOR_006.sextupole + - SXF13_HCOR_006.hcorrector + - SXF13_HCOR_007.sextupole + - SXF13_HCOR_007.hcorrector + - SXF13_HCOR_008.sextupole + - SXF13_HCOR_008.hcorrector +- type: pyaml.arrays.magnet + name: SXD13_VCOR + elements: + - SXD13_VCOR_001.sextupole + - SXD13_VCOR_001.vcorrector + - SXD13_VCOR_002.sextupole + - SXD13_VCOR_002.vcorrector + - SXD13_VCOR_003.sextupole + - SXD13_VCOR_003.vcorrector + - SXD13_VCOR_004.sextupole + - SXD13_VCOR_004.vcorrector +- type: pyaml.arrays.magnet + name: SXD13 + elements: + - SXD13_001 + - SXD13_002 + - SXD13_003 + - SXD13_004 +- type: pyaml.arrays.magnet + name: OCTF1_QCORROCT_6_QT + elements: + - OCTF1_QCORROCT_6_QT_001.octupole + - OCTF1_QCORROCT_6_QT_001.quadrupole + - OCTF1_QCORROCT_6_QT_001.skewquad +- type: pyaml.arrays.magnet + name: OCTF1_QCORROCT_7_QT + elements: + - OCTF1_QCORROCT_7_QT_001.octupole + - OCTF1_QCORROCT_7_QT_001.quadrupole + - OCTF1_QCORROCT_7_QT_001.skewquad +- type: pyaml.arrays.magnet + name: SXD12 + elements: + - SXD12_001 + - SXD12_002 + - SXD12_003 + - SXD12_004 +- type: pyaml.arrays.magnet + name: SXF12_HCOR + elements: + - SXF12_HCOR_001.sextupole + - SXF12_HCOR_001.hcorrector + - SXF12_HCOR_002.sextupole + - SXF12_HCOR_002.hcorrector + - SXF12_HCOR_003.sextupole + - SXF12_HCOR_003.hcorrector + - SXF12_HCOR_004.sextupole + - SXF12_HCOR_004.hcorrector +- type: pyaml.arrays.magnet + name: OCTF1_QCORROCT_8_QT + elements: + - OCTF1_QCORROCT_8_QT_001.octupole + - OCTF1_QCORROCT_8_QT_001.quadrupole + - OCTF1_QCORROCT_8_QT_001.skewquad +- type: pyaml.arrays.magnet + name: SXD12_VCOR + elements: + - SXD12_VCOR_001.sextupole + - SXD12_VCOR_001.vcorrector + - SXD12_VCOR_002.sextupole + - SXD12_VCOR_002.vcorrector + - SXD12_VCOR_003.sextupole + - SXD12_VCOR_003.vcorrector + - SXD12_VCOR_004.sextupole + - SXD12_VCOR_004.vcorrector +- type: pyaml.arrays.magnet + name: SH6_COR + elements: + - SH6_COR_001.sextupole + - SH6_COR_001.hcorrector + - SH6_COR_001.vcorrector + - SH6_COR_002.sextupole + - SH6_COR_002.hcorrector + - SH6_COR_002.vcorrector + - SH6_COR_003.sextupole + - SH6_COR_003.hcorrector + - SH6_COR_003.vcorrector + - SH6_COR_004.sextupole + - SH6_COR_004.hcorrector + - SH6_COR_004.vcorrector + - SH6_COR_005.sextupole + - SH6_COR_005.hcorrector + - SH6_COR_005.vcorrector + - SH6_COR_006.sextupole + - SH6_COR_006.hcorrector + - SH6_COR_006.vcorrector + - SH6_COR_007.sextupole + - SH6_COR_007.hcorrector + - SH6_COR_007.vcorrector + - SH6_COR_008.sextupole + - SH6_COR_008.hcorrector + - SH6_COR_008.vcorrector +- type: pyaml.arrays.magnet + name: SH5 + elements: + - SH5_001 + - SH5_002 + - SH5_003 + - SH5_004 + - SH5_005 + - SH5_006 + - SH5_007 + - SH5_008 +- type: pyaml.arrays.magnet + name: OH5_QCORROCT_9 + elements: + - OH5_QCORROCT_9_001.octupole + - OH5_QCORROCT_9_001.quadrupole +- type: pyaml.arrays.magnet + name: SH4_COR + elements: + - SH4_COR_001.sextupole + - SH4_COR_001.hcorrector + - SH4_COR_001.vcorrector + - SH4_COR_002.sextupole + - SH4_COR_002.hcorrector + - SH4_COR_002.vcorrector + - SH4_COR_003.sextupole + - SH4_COR_003.hcorrector + - SH4_COR_003.vcorrector + - SH4_COR_004.sextupole + - SH4_COR_004.hcorrector + - SH4_COR_004.vcorrector + - SH4_COR_005.sextupole + - SH4_COR_005.hcorrector + - SH4_COR_005.vcorrector + - SH4_COR_006.sextupole + - SH4_COR_006.hcorrector + - SH4_COR_006.vcorrector + - SH4_COR_007.sextupole + - SH4_COR_007.hcorrector + - SH4_COR_007.vcorrector + - SH4_COR_008.sextupole + - SH4_COR_008.hcorrector + - SH4_COR_008.vcorrector +- type: pyaml.arrays.magnet + name: OH4_QCORROCT_10_QT + elements: + - OH4_QCORROCT_10_QT_001.octupole + - OH4_QCORROCT_10_QT_001.quadrupole + - OH4_QCORROCT_10_QT_001.skewquad +- type: pyaml.arrays.element + name: Cell2 + elements: + - BPM_010 + - BPM_011 + - OH4_QCORROCT_11_QT_001 + - OH4_QCORROCT_11_QT_001.octupole + - OH4_QCORROCT_11_QT_001.quadrupole + - OH4_QCORROCT_11_QT_001.skewquad + - SH4_COR_002 + - SH4_COR_002.sextupole + - SH4_COR_002.hcorrector + - SH4_COR_002.vcorrector + - BPM_012 + - OH5_QCORROCT_12_001 + - OH5_QCORROCT_12_001.octupole + - OH5_QCORROCT_12_001.quadrupole + - SH5_002 + - QCORR_013 + - SH6_COR_002 + - SH6_COR_002.sextupole + - SH6_COR_002.hcorrector + - SH6_COR_002.vcorrector + - SXD21_001 + - OCTF2_QCORROCT_13_QT_001 + - OCTF2_QCORROCT_13_QT_001.octupole + - OCTF2_QCORROCT_13_QT_001.quadrupole + - OCTF2_QCORROCT_13_QT_001.skewquad + - SXF21_HCOR_001 + - SXF21_HCOR_001.sextupole + - SXF21_HCOR_001.hcorrector + - BPM_013 + - SXD21_VCOR_001 + - SXD21_VCOR_001.sextupole + - SXD21_VCOR_001.vcorrector + - QCORR_014 + - QCORR_015 + - SXD2_001 + - OCTF2_QCORROCT_14_QT_001 + - OCTF2_QCORROCT_14_QT_001.octupole + - OCTF2_QCORROCT_14_QT_001.quadrupole + - OCTF2_QCORROCT_14_QT_001.skewquad + - SXF2_HCOR_001 + - SXF2_HCOR_001.sextupole + - SXF2_HCOR_001.hcorrector + - BPM_014 + - SXD2_VCOR_001 + - SXD2_VCOR_001.sextupole + - SXD2_VCOR_001.vcorrector + - QCORR_016 + - QCORR_017 + - SXD22_001 + - SXF22_HCOR_001 + - SXF22_HCOR_001.sextupole + - SXF22_HCOR_001.hcorrector + - OCTF2_QCORROCT_15_QT_001 + - OCTF2_QCORROCT_15_QT_001.octupole + - OCTF2_QCORROCT_15_QT_001.quadrupole + - OCTF2_QCORROCT_15_QT_001.skewquad + - SXD22_VCOR_001 + - SXD22_VCOR_001.sextupole + - SXD22_VCOR_001.vcorrector + - BPM_015 + - SH9_COR_001 + - SH9_COR_001.sextupole + - SH9_COR_001.hcorrector + - SH9_COR_001.vcorrector + - QCORR_018 + - SH8_001 + - QCORR_019 + - BPM_016 + - SH7_COR_001 + - SH7_COR_001.sextupole + - SH7_COR_001.hcorrector + - SH7_COR_001.vcorrector + - OH7_QCORROCT_16_QT_001 + - OH7_QCORROCT_16_QT_001.octupole + - OH7_QCORROCT_16_QT_001.quadrupole + - OH7_QCORROCT_16_QT_001.skewquad +- type: pyaml.arrays.magnet + name: OH4_QCORROCT_11_QT + elements: + - OH4_QCORROCT_11_QT_001.octupole + - OH4_QCORROCT_11_QT_001.quadrupole + - OH4_QCORROCT_11_QT_001.skewquad +- type: pyaml.arrays.magnet + name: OH5_QCORROCT_12 + elements: + - OH5_QCORROCT_12_001.octupole + - OH5_QCORROCT_12_001.quadrupole +- type: pyaml.arrays.magnet + name: SXD21 + elements: + - SXD21_001 + - SXD21_002 + - SXD21_003 + - SXD21_004 +- type: pyaml.arrays.magnet + name: OCTF2_QCORROCT_13_QT + elements: + - OCTF2_QCORROCT_13_QT_001.octupole + - OCTF2_QCORROCT_13_QT_001.quadrupole + - OCTF2_QCORROCT_13_QT_001.skewquad +- type: pyaml.arrays.magnet + name: SXF21_HCOR + elements: + - SXF21_HCOR_001.sextupole + - SXF21_HCOR_001.hcorrector + - SXF21_HCOR_002.sextupole + - SXF21_HCOR_002.hcorrector + - SXF21_HCOR_003.sextupole + - SXF21_HCOR_003.hcorrector + - SXF21_HCOR_004.sextupole + - SXF21_HCOR_004.hcorrector +- type: pyaml.arrays.magnet + name: SXD21_VCOR + elements: + - SXD21_VCOR_001.sextupole + - SXD21_VCOR_001.vcorrector + - SXD21_VCOR_002.sextupole + - SXD21_VCOR_002.vcorrector + - SXD21_VCOR_003.sextupole + - SXD21_VCOR_003.vcorrector + - SXD21_VCOR_004.sextupole + - SXD21_VCOR_004.vcorrector +- type: pyaml.arrays.magnet + name: SXD2 + elements: + - SXD2_001 + - SXD2_002 + - SXD2_003 + - SXD2_004 +- type: pyaml.arrays.magnet + name: OCTF2_QCORROCT_14_QT + elements: + - OCTF2_QCORROCT_14_QT_001.octupole + - OCTF2_QCORROCT_14_QT_001.quadrupole + - OCTF2_QCORROCT_14_QT_001.skewquad +- type: pyaml.arrays.magnet + name: SXF2_HCOR + elements: + - SXF2_HCOR_001.sextupole + - SXF2_HCOR_001.hcorrector + - SXF2_HCOR_002.sextupole + - SXF2_HCOR_002.hcorrector + - SXF2_HCOR_003.sextupole + - SXF2_HCOR_003.hcorrector + - SXF2_HCOR_004.sextupole + - SXF2_HCOR_004.hcorrector +- type: pyaml.arrays.magnet + name: SXD2_VCOR + elements: + - SXD2_VCOR_001.sextupole + - SXD2_VCOR_001.vcorrector + - SXD2_VCOR_002.sextupole + - SXD2_VCOR_002.vcorrector + - SXD2_VCOR_003.sextupole + - SXD2_VCOR_003.vcorrector + - SXD2_VCOR_004.sextupole + - SXD2_VCOR_004.vcorrector +- type: pyaml.arrays.magnet + name: SXD22 + elements: + - SXD22_001 + - SXD22_002 + - SXD22_003 + - SXD22_004 +- type: pyaml.arrays.magnet + name: SXF22_HCOR + elements: + - SXF22_HCOR_001.sextupole + - SXF22_HCOR_001.hcorrector + - SXF22_HCOR_002.sextupole + - SXF22_HCOR_002.hcorrector + - SXF22_HCOR_003.sextupole + - SXF22_HCOR_003.hcorrector + - SXF22_HCOR_004.sextupole + - SXF22_HCOR_004.hcorrector +- type: pyaml.arrays.magnet + name: OCTF2_QCORROCT_15_QT + elements: + - OCTF2_QCORROCT_15_QT_001.octupole + - OCTF2_QCORROCT_15_QT_001.quadrupole + - OCTF2_QCORROCT_15_QT_001.skewquad +- type: pyaml.arrays.magnet + name: SXD22_VCOR + elements: + - SXD22_VCOR_001.sextupole + - SXD22_VCOR_001.vcorrector + - SXD22_VCOR_002.sextupole + - SXD22_VCOR_002.vcorrector + - SXD22_VCOR_003.sextupole + - SXD22_VCOR_003.vcorrector + - SXD22_VCOR_004.sextupole + - SXD22_VCOR_004.vcorrector +- type: pyaml.arrays.magnet + name: SH9_COR + elements: + - SH9_COR_001.sextupole + - SH9_COR_001.hcorrector + - SH9_COR_001.vcorrector + - SH9_COR_002.sextupole + - SH9_COR_002.hcorrector + - SH9_COR_002.vcorrector + - SH9_COR_003.sextupole + - SH9_COR_003.hcorrector + - SH9_COR_003.vcorrector + - SH9_COR_004.sextupole + - SH9_COR_004.hcorrector + - SH9_COR_004.vcorrector + - SH9_COR_005.sextupole + - SH9_COR_005.hcorrector + - SH9_COR_005.vcorrector + - SH9_COR_006.sextupole + - SH9_COR_006.hcorrector + - SH9_COR_006.vcorrector + - SH9_COR_007.sextupole + - SH9_COR_007.hcorrector + - SH9_COR_007.vcorrector + - SH9_COR_008.sextupole + - SH9_COR_008.hcorrector + - SH9_COR_008.vcorrector + - SH9_COR_009.sextupole + - SH9_COR_009.hcorrector + - SH9_COR_009.vcorrector + - SH9_COR_010.sextupole + - SH9_COR_010.hcorrector + - SH9_COR_010.vcorrector + - SH9_COR_011.sextupole + - SH9_COR_011.hcorrector + - SH9_COR_011.vcorrector + - SH9_COR_012.sextupole + - SH9_COR_012.hcorrector + - SH9_COR_012.vcorrector + - SH9_COR_013.sextupole + - SH9_COR_013.hcorrector + - SH9_COR_013.vcorrector + - SH9_COR_014.sextupole + - SH9_COR_014.hcorrector + - SH9_COR_014.vcorrector + - SH9_COR_015.sextupole + - SH9_COR_015.hcorrector + - SH9_COR_015.vcorrector + - SH9_COR_016.sextupole + - SH9_COR_016.hcorrector + - SH9_COR_016.vcorrector +- type: pyaml.arrays.magnet + name: SH8 + elements: + - SH8_001 + - SH8_002 + - SH8_003 + - SH8_004 + - SH8_005 + - SH8_006 + - SH8_007 + - SH8_008 + - SH8_009 + - SH8_010 + - SH8_011 + - SH8_012 + - SH8_013 + - SH8_014 + - SH8_015 + - SH8_016 +- type: pyaml.arrays.magnet + name: SH7_COR + elements: + - SH7_COR_001.sextupole + - SH7_COR_001.hcorrector + - SH7_COR_001.vcorrector + - SH7_COR_002.sextupole + - SH7_COR_002.hcorrector + - SH7_COR_002.vcorrector + - SH7_COR_003.sextupole + - SH7_COR_003.hcorrector + - SH7_COR_003.vcorrector + - SH7_COR_004.sextupole + - SH7_COR_004.hcorrector + - SH7_COR_004.vcorrector + - SH7_COR_005.sextupole + - SH7_COR_005.hcorrector + - SH7_COR_005.vcorrector + - SH7_COR_006.sextupole + - SH7_COR_006.hcorrector + - SH7_COR_006.vcorrector + - SH7_COR_007.sextupole + - SH7_COR_007.hcorrector + - SH7_COR_007.vcorrector + - SH7_COR_008.sextupole + - SH7_COR_008.hcorrector + - SH7_COR_008.vcorrector + - SH7_COR_009.sextupole + - SH7_COR_009.hcorrector + - SH7_COR_009.vcorrector + - SH7_COR_010.sextupole + - SH7_COR_010.hcorrector + - SH7_COR_010.vcorrector + - SH7_COR_011.sextupole + - SH7_COR_011.hcorrector + - SH7_COR_011.vcorrector + - SH7_COR_012.sextupole + - SH7_COR_012.hcorrector + - SH7_COR_012.vcorrector + - SH7_COR_013.sextupole + - SH7_COR_013.hcorrector + - SH7_COR_013.vcorrector + - SH7_COR_014.sextupole + - SH7_COR_014.hcorrector + - SH7_COR_014.vcorrector + - SH7_COR_015.sextupole + - SH7_COR_015.hcorrector + - SH7_COR_015.vcorrector + - SH7_COR_016.sextupole + - SH7_COR_016.hcorrector + - SH7_COR_016.vcorrector +- type: pyaml.arrays.magnet + name: OH7_QCORROCT_16_QT + elements: + - OH7_QCORROCT_16_QT_001.octupole + - OH7_QCORROCT_16_QT_001.quadrupole + - OH7_QCORROCT_16_QT_001.skewquad +- type: pyaml.arrays.element + name: Cell3 + elements: + - BPM_017 + - BPM_018 + - OH7_QCORROCT_17_QT_001 + - OH7_QCORROCT_17_QT_001.octupole + - OH7_QCORROCT_17_QT_001.quadrupole + - OH7_QCORROCT_17_QT_001.skewquad + - SH7_COR_002 + - SH7_COR_002.sextupole + - SH7_COR_002.hcorrector + - SH7_COR_002.vcorrector + - BPM_019 + - QCORR_020 + - SH8_002 + - QCORR_021 + - SH9_COR_002 + - SH9_COR_002.sextupole + - SH9_COR_002.hcorrector + - SH9_COR_002.vcorrector + - SXD31_001 + - OCTF3_QCORROCT_18_QT_001 + - OCTF3_QCORROCT_18_QT_001.octupole + - OCTF3_QCORROCT_18_QT_001.quadrupole + - OCTF3_QCORROCT_18_QT_001.skewquad + - SXF31_HCOR_001 + - SXF31_HCOR_001.sextupole + - SXF31_HCOR_001.hcorrector + - BPM_020 + - SXD31_VCOR_001 + - SXD31_VCOR_001.sextupole + - SXD31_VCOR_001.vcorrector + - QCORR_022 + - QCORR_023 + - SXD3_001 + - OCTF3_QCORROCT_19_QT_001 + - OCTF3_QCORROCT_19_QT_001.octupole + - OCTF3_QCORROCT_19_QT_001.quadrupole + - OCTF3_QCORROCT_19_QT_001.skewquad + - SXF3_HCOR_001 + - SXF3_HCOR_001.sextupole + - SXF3_HCOR_001.hcorrector + - BPM_021 + - SXD3_VCOR_001 + - SXD3_VCOR_001.sextupole + - SXD3_VCOR_001.vcorrector + - QCORR_024 + - QCORR_025 + - SXD3_002 + - OCTF3_QCORROCT_20_QT_001 + - OCTF3_QCORROCT_20_QT_001.octupole + - OCTF3_QCORROCT_20_QT_001.quadrupole + - OCTF3_QCORROCT_20_QT_001.skewquad + - SXF33_HCOR_001 + - SXF33_HCOR_001.sextupole + - SXF33_HCOR_001.hcorrector + - BPM_022 + - SXD33_VCOR_001 + - SXD33_VCOR_001.sextupole + - SXD33_VCOR_001.vcorrector + - QCORR_026 + - QCORR_027 + - SXD33_001 + - SXF33_HCOR_002 + - SXF33_HCOR_002.sextupole + - SXF33_HCOR_002.hcorrector + - OCTF3_QCORROCT_21_QT_001 + - OCTF3_QCORROCT_21_QT_001.octupole + - OCTF3_QCORROCT_21_QT_001.quadrupole + - OCTF3_QCORROCT_21_QT_001.skewquad + - BPM_023 + - SXD3_VCOR_002 + - SXD3_VCOR_002.sextupole + - SXD3_VCOR_002.vcorrector + - QCORR_028 + - QCORR_029 + - SXD3_003 + - SXF3_HCOR_002 + - SXF3_HCOR_002.sextupole + - SXF3_HCOR_002.hcorrector + - OCTF3_QCORROCT_22_QT_001 + - OCTF3_QCORROCT_22_QT_001.octupole + - OCTF3_QCORROCT_22_QT_001.quadrupole + - OCTF3_QCORROCT_22_QT_001.skewquad + - BPM_024 + - SXD3_VCOR_003 + - SXD3_VCOR_003.sextupole + - SXD3_VCOR_003.vcorrector + - QCORR_030 + - QCORR_031 + - SXD32_001 + - SXF32_HCOR_001 + - SXF32_HCOR_001.sextupole + - SXF32_HCOR_001.hcorrector + - OCTF3_QCORROCT_23_QT_001 + - OCTF3_QCORROCT_23_QT_001.octupole + - OCTF3_QCORROCT_23_QT_001.quadrupole + - OCTF3_QCORROCT_23_QT_001.skewquad + - SXD32_VCOR_001 + - SXD32_VCOR_001.sextupole + - SXD32_VCOR_001.vcorrector + - BPM_025 + - SH9_COR_003 + - SH9_COR_003.sextupole + - SH9_COR_003.hcorrector + - SH9_COR_003.vcorrector + - QCORR_032 + - SH8_003 + - QCORR_033 + - BPM_026 + - SH7_COR_003 + - SH7_COR_003.sextupole + - SH7_COR_003.hcorrector + - SH7_COR_003.vcorrector + - OH7_QCORROCT_24_QT_001 + - OH7_QCORROCT_24_QT_001.octupole + - OH7_QCORROCT_24_QT_001.quadrupole + - OH7_QCORROCT_24_QT_001.skewquad +- type: pyaml.arrays.magnet + name: OH7_QCORROCT_17_QT + elements: + - OH7_QCORROCT_17_QT_001.octupole + - OH7_QCORROCT_17_QT_001.quadrupole + - OH7_QCORROCT_17_QT_001.skewquad +- type: pyaml.arrays.magnet + name: SXD31 + elements: + - SXD31_001 + - SXD31_002 + - SXD31_003 + - SXD31_004 +- type: pyaml.arrays.magnet + name: OCTF3_QCORROCT_18_QT + elements: + - OCTF3_QCORROCT_18_QT_001.octupole + - OCTF3_QCORROCT_18_QT_001.quadrupole + - OCTF3_QCORROCT_18_QT_001.skewquad +- type: pyaml.arrays.magnet + name: SXF31_HCOR + elements: + - SXF31_HCOR_001.sextupole + - SXF31_HCOR_001.hcorrector + - SXF31_HCOR_002.sextupole + - SXF31_HCOR_002.hcorrector + - SXF31_HCOR_003.sextupole + - SXF31_HCOR_003.hcorrector + - SXF31_HCOR_004.sextupole + - SXF31_HCOR_004.hcorrector +- type: pyaml.arrays.magnet + name: SXD31_VCOR + elements: + - SXD31_VCOR_001.sextupole + - SXD31_VCOR_001.vcorrector + - SXD31_VCOR_002.sextupole + - SXD31_VCOR_002.vcorrector + - SXD31_VCOR_003.sextupole + - SXD31_VCOR_003.vcorrector + - SXD31_VCOR_004.sextupole + - SXD31_VCOR_004.vcorrector +- type: pyaml.arrays.magnet + name: SXD3 + elements: + - SXD3_001 + - SXD3_002 + - SXD3_003 + - SXD3_004 + - SXD3_005 + - SXD3_006 + - SXD3_007 + - SXD3_008 + - SXD3_009 + - SXD3_010 + - SXD3_011 + - SXD3_012 +- type: pyaml.arrays.magnet + name: OCTF3_QCORROCT_19_QT + elements: + - OCTF3_QCORROCT_19_QT_001.octupole + - OCTF3_QCORROCT_19_QT_001.quadrupole + - OCTF3_QCORROCT_19_QT_001.skewquad +- type: pyaml.arrays.magnet + name: SXF3_HCOR + elements: + - SXF3_HCOR_001.sextupole + - SXF3_HCOR_001.hcorrector + - SXF3_HCOR_002.sextupole + - SXF3_HCOR_002.hcorrector + - SXF3_HCOR_003.sextupole + - SXF3_HCOR_003.hcorrector + - SXF3_HCOR_004.sextupole + - SXF3_HCOR_004.hcorrector + - SXF3_HCOR_005.sextupole + - SXF3_HCOR_005.hcorrector + - SXF3_HCOR_006.sextupole + - SXF3_HCOR_006.hcorrector + - SXF3_HCOR_007.sextupole + - SXF3_HCOR_007.hcorrector + - SXF3_HCOR_008.sextupole + - SXF3_HCOR_008.hcorrector +- type: pyaml.arrays.magnet + name: SXD3_VCOR + elements: + - SXD3_VCOR_001.sextupole + - SXD3_VCOR_001.vcorrector + - SXD3_VCOR_002.sextupole + - SXD3_VCOR_002.vcorrector + - SXD3_VCOR_003.sextupole + - SXD3_VCOR_003.vcorrector + - SXD3_VCOR_004.sextupole + - SXD3_VCOR_004.vcorrector + - SXD3_VCOR_005.sextupole + - SXD3_VCOR_005.vcorrector + - SXD3_VCOR_006.sextupole + - SXD3_VCOR_006.vcorrector + - SXD3_VCOR_007.sextupole + - SXD3_VCOR_007.vcorrector + - SXD3_VCOR_008.sextupole + - SXD3_VCOR_008.vcorrector + - SXD3_VCOR_009.sextupole + - SXD3_VCOR_009.vcorrector + - SXD3_VCOR_010.sextupole + - SXD3_VCOR_010.vcorrector + - SXD3_VCOR_011.sextupole + - SXD3_VCOR_011.vcorrector + - SXD3_VCOR_012.sextupole + - SXD3_VCOR_012.vcorrector +- type: pyaml.arrays.magnet + name: OCTF3_QCORROCT_20_QT + elements: + - OCTF3_QCORROCT_20_QT_001.octupole + - OCTF3_QCORROCT_20_QT_001.quadrupole + - OCTF3_QCORROCT_20_QT_001.skewquad +- type: pyaml.arrays.magnet + name: SXF33_HCOR + elements: + - SXF33_HCOR_001.sextupole + - SXF33_HCOR_001.hcorrector + - SXF33_HCOR_002.sextupole + - SXF33_HCOR_002.hcorrector + - SXF33_HCOR_003.sextupole + - SXF33_HCOR_003.hcorrector + - SXF33_HCOR_004.sextupole + - SXF33_HCOR_004.hcorrector + - SXF33_HCOR_005.sextupole + - SXF33_HCOR_005.hcorrector + - SXF33_HCOR_006.sextupole + - SXF33_HCOR_006.hcorrector + - SXF33_HCOR_007.sextupole + - SXF33_HCOR_007.hcorrector + - SXF33_HCOR_008.sextupole + - SXF33_HCOR_008.hcorrector +- type: pyaml.arrays.magnet + name: SXD33_VCOR + elements: + - SXD33_VCOR_001.sextupole + - SXD33_VCOR_001.vcorrector + - SXD33_VCOR_002.sextupole + - SXD33_VCOR_002.vcorrector + - SXD33_VCOR_003.sextupole + - SXD33_VCOR_003.vcorrector + - SXD33_VCOR_004.sextupole + - SXD33_VCOR_004.vcorrector +- type: pyaml.arrays.magnet + name: SXD33 + elements: + - SXD33_001 + - SXD33_002 + - SXD33_003 + - SXD33_004 +- type: pyaml.arrays.magnet + name: OCTF3_QCORROCT_21_QT + elements: + - OCTF3_QCORROCT_21_QT_001.octupole + - OCTF3_QCORROCT_21_QT_001.quadrupole + - OCTF3_QCORROCT_21_QT_001.skewquad +- type: pyaml.arrays.magnet + name: OCTF3_QCORROCT_22_QT + elements: + - OCTF3_QCORROCT_22_QT_001.octupole + - OCTF3_QCORROCT_22_QT_001.quadrupole + - OCTF3_QCORROCT_22_QT_001.skewquad +- type: pyaml.arrays.magnet + name: SXD32 + elements: + - SXD32_001 + - SXD32_002 + - SXD32_003 + - SXD32_004 +- type: pyaml.arrays.magnet + name: SXF32_HCOR + elements: + - SXF32_HCOR_001.sextupole + - SXF32_HCOR_001.hcorrector + - SXF32_HCOR_002.sextupole + - SXF32_HCOR_002.hcorrector + - SXF32_HCOR_003.sextupole + - SXF32_HCOR_003.hcorrector + - SXF32_HCOR_004.sextupole + - SXF32_HCOR_004.hcorrector +- type: pyaml.arrays.magnet + name: OCTF3_QCORROCT_23_QT + elements: + - OCTF3_QCORROCT_23_QT_001.octupole + - OCTF3_QCORROCT_23_QT_001.quadrupole + - OCTF3_QCORROCT_23_QT_001.skewquad +- type: pyaml.arrays.magnet + name: SXD32_VCOR + elements: + - SXD32_VCOR_001.sextupole + - SXD32_VCOR_001.vcorrector + - SXD32_VCOR_002.sextupole + - SXD32_VCOR_002.vcorrector + - SXD32_VCOR_003.sextupole + - SXD32_VCOR_003.vcorrector + - SXD32_VCOR_004.sextupole + - SXD32_VCOR_004.vcorrector +- type: pyaml.arrays.magnet + name: OH7_QCORROCT_24_QT + elements: + - OH7_QCORROCT_24_QT_001.octupole + - OH7_QCORROCT_24_QT_001.quadrupole + - OH7_QCORROCT_24_QT_001.skewquad +- type: pyaml.arrays.element + name: Cell4 + elements: + - BPM_027 + - BPM_028 + - OH7_QCORROCT_25_QT_001 + - OH7_QCORROCT_25_QT_001.octupole + - OH7_QCORROCT_25_QT_001.quadrupole + - OH7_QCORROCT_25_QT_001.skewquad + - SH7_COR_004 + - SH7_COR_004.sextupole + - SH7_COR_004.hcorrector + - SH7_COR_004.vcorrector + - BPM_029 + - QCORR_034 + - SH8_004 + - QCORR_035 + - SH9_COR_004 + - SH9_COR_004.sextupole + - SH9_COR_004.hcorrector + - SH9_COR_004.vcorrector + - SXD41_001 + - OCTF4_QCORROCT_26_QT_001 + - OCTF4_QCORROCT_26_QT_001.octupole + - OCTF4_QCORROCT_26_QT_001.quadrupole + - OCTF4_QCORROCT_26_QT_001.skewquad + - SXF41_HCOR_001 + - SXF41_HCOR_001.sextupole + - SXF41_HCOR_001.hcorrector + - BPM_030 + - SXD41_VCOR_001 + - SXD41_VCOR_001.sextupole + - SXD41_VCOR_001.vcorrector + - QCORR_036 + - QCORR_037 + - SXD4_001 + - SXF4_HCOR_001 + - SXF4_HCOR_001.sextupole + - SXF4_HCOR_001.hcorrector + - OCTF4_QCORROCT_27_QT_001 + - OCTF4_QCORROCT_27_QT_001.octupole + - OCTF4_QCORROCT_27_QT_001.quadrupole + - OCTF4_QCORROCT_27_QT_001.skewquad + - BPM_031 + - SXD4_VCOR_001 + - SXD4_VCOR_001.sextupole + - SXD4_VCOR_001.vcorrector + - QCORR_038 + - QCORR_039 + - SXD42_001 + - SXF42_HCOR_001 + - SXF42_HCOR_001.sextupole + - SXF42_HCOR_001.hcorrector + - OCTF4_QCORROCT_28_QT_001 + - OCTF4_QCORROCT_28_QT_001.octupole + - OCTF4_QCORROCT_28_QT_001.quadrupole + - OCTF4_QCORROCT_28_QT_001.skewquad + - SXD42_VCOR_001 + - SXD42_VCOR_001.sextupole + - SXD42_VCOR_001.vcorrector + - BPM_032 + - SH12_COR_001 + - SH12_COR_001.sextupole + - SH12_COR_001.hcorrector + - SH12_COR_001.vcorrector + - QCORR_040 + - SH11_001 + - OH11_QCORROCT_29_001 + - OH11_QCORROCT_29_001.octupole + - OH11_QCORROCT_29_001.quadrupole + - BPM_033 + - SH10_COR_001 + - SH10_COR_001.sextupole + - SH10_COR_001.hcorrector + - SH10_COR_001.vcorrector + - OH10_QCORROCT_30_QT_001 + - OH10_QCORROCT_30_QT_001.octupole + - OH10_QCORROCT_30_QT_001.quadrupole + - OH10_QCORROCT_30_QT_001.skewquad +- type: pyaml.arrays.magnet + name: OH7_QCORROCT_25_QT + elements: + - OH7_QCORROCT_25_QT_001.octupole + - OH7_QCORROCT_25_QT_001.quadrupole + - OH7_QCORROCT_25_QT_001.skewquad +- type: pyaml.arrays.magnet + name: SXD41 + elements: + - SXD41_001 + - SXD41_002 + - SXD41_003 + - SXD41_004 +- type: pyaml.arrays.magnet + name: OCTF4_QCORROCT_26_QT + elements: + - OCTF4_QCORROCT_26_QT_001.octupole + - OCTF4_QCORROCT_26_QT_001.quadrupole + - OCTF4_QCORROCT_26_QT_001.skewquad +- type: pyaml.arrays.magnet + name: SXF41_HCOR + elements: + - SXF41_HCOR_001.sextupole + - SXF41_HCOR_001.hcorrector + - SXF41_HCOR_002.sextupole + - SXF41_HCOR_002.hcorrector + - SXF41_HCOR_003.sextupole + - SXF41_HCOR_003.hcorrector + - SXF41_HCOR_004.sextupole + - SXF41_HCOR_004.hcorrector +- type: pyaml.arrays.magnet + name: SXD41_VCOR + elements: + - SXD41_VCOR_001.sextupole + - SXD41_VCOR_001.vcorrector + - SXD41_VCOR_002.sextupole + - SXD41_VCOR_002.vcorrector + - SXD41_VCOR_003.sextupole + - SXD41_VCOR_003.vcorrector + - SXD41_VCOR_004.sextupole + - SXD41_VCOR_004.vcorrector +- type: pyaml.arrays.magnet + name: SXD4 + elements: + - SXD4_001 + - SXD4_002 + - SXD4_003 + - SXD4_004 +- type: pyaml.arrays.magnet + name: SXF4_HCOR + elements: + - SXF4_HCOR_001.sextupole + - SXF4_HCOR_001.hcorrector + - SXF4_HCOR_002.sextupole + - SXF4_HCOR_002.hcorrector + - SXF4_HCOR_003.sextupole + - SXF4_HCOR_003.hcorrector + - SXF4_HCOR_004.sextupole + - SXF4_HCOR_004.hcorrector +- type: pyaml.arrays.magnet + name: OCTF4_QCORROCT_27_QT + elements: + - OCTF4_QCORROCT_27_QT_001.octupole + - OCTF4_QCORROCT_27_QT_001.quadrupole + - OCTF4_QCORROCT_27_QT_001.skewquad +- type: pyaml.arrays.magnet + name: SXD4_VCOR + elements: + - SXD4_VCOR_001.sextupole + - SXD4_VCOR_001.vcorrector + - SXD4_VCOR_002.sextupole + - SXD4_VCOR_002.vcorrector + - SXD4_VCOR_003.sextupole + - SXD4_VCOR_003.vcorrector + - SXD4_VCOR_004.sextupole + - SXD4_VCOR_004.vcorrector +- type: pyaml.arrays.magnet + name: SXD42 + elements: + - SXD42_001 + - SXD42_002 + - SXD42_003 + - SXD42_004 +- type: pyaml.arrays.magnet + name: SXF42_HCOR + elements: + - SXF42_HCOR_001.sextupole + - SXF42_HCOR_001.hcorrector + - SXF42_HCOR_002.sextupole + - SXF42_HCOR_002.hcorrector + - SXF42_HCOR_003.sextupole + - SXF42_HCOR_003.hcorrector + - SXF42_HCOR_004.sextupole + - SXF42_HCOR_004.hcorrector +- type: pyaml.arrays.magnet + name: OCTF4_QCORROCT_28_QT + elements: + - OCTF4_QCORROCT_28_QT_001.octupole + - OCTF4_QCORROCT_28_QT_001.quadrupole + - OCTF4_QCORROCT_28_QT_001.skewquad +- type: pyaml.arrays.magnet + name: SXD42_VCOR + elements: + - SXD42_VCOR_001.sextupole + - SXD42_VCOR_001.vcorrector + - SXD42_VCOR_002.sextupole + - SXD42_VCOR_002.vcorrector + - SXD42_VCOR_003.sextupole + - SXD42_VCOR_003.vcorrector + - SXD42_VCOR_004.sextupole + - SXD42_VCOR_004.vcorrector +- type: pyaml.arrays.magnet + name: SH12_COR + elements: + - SH12_COR_001.sextupole + - SH12_COR_001.hcorrector + - SH12_COR_001.vcorrector + - SH12_COR_002.sextupole + - SH12_COR_002.hcorrector + - SH12_COR_002.vcorrector + - SH12_COR_003.sextupole + - SH12_COR_003.hcorrector + - SH12_COR_003.vcorrector + - SH12_COR_004.sextupole + - SH12_COR_004.hcorrector + - SH12_COR_004.vcorrector + - SH12_COR_005.sextupole + - SH12_COR_005.hcorrector + - SH12_COR_005.vcorrector + - SH12_COR_006.sextupole + - SH12_COR_006.hcorrector + - SH12_COR_006.vcorrector + - SH12_COR_007.sextupole + - SH12_COR_007.hcorrector + - SH12_COR_007.vcorrector + - SH12_COR_008.sextupole + - SH12_COR_008.hcorrector + - SH12_COR_008.vcorrector +- type: pyaml.arrays.magnet + name: SH11 + elements: + - SH11_001 + - SH11_002 + - SH11_003 + - SH11_004 + - SH11_005 + - SH11_006 + - SH11_007 + - SH11_008 +- type: pyaml.arrays.magnet + name: OH11_QCORROCT_29 + elements: + - OH11_QCORROCT_29_001.octupole + - OH11_QCORROCT_29_001.quadrupole +- type: pyaml.arrays.magnet + name: SH10_COR + elements: + - SH10_COR_001.sextupole + - SH10_COR_001.hcorrector + - SH10_COR_001.vcorrector + - SH10_COR_002.sextupole + - SH10_COR_002.hcorrector + - SH10_COR_002.vcorrector + - SH10_COR_003.sextupole + - SH10_COR_003.hcorrector + - SH10_COR_003.vcorrector + - SH10_COR_004.sextupole + - SH10_COR_004.hcorrector + - SH10_COR_004.vcorrector + - SH10_COR_005.sextupole + - SH10_COR_005.hcorrector + - SH10_COR_005.vcorrector + - SH10_COR_006.sextupole + - SH10_COR_006.hcorrector + - SH10_COR_006.vcorrector + - SH10_COR_007.sextupole + - SH10_COR_007.hcorrector + - SH10_COR_007.vcorrector + - SH10_COR_008.sextupole + - SH10_COR_008.hcorrector + - SH10_COR_008.vcorrector +- type: pyaml.arrays.magnet + name: OH10_QCORROCT_30_QT + elements: + - OH10_QCORROCT_30_QT_001.octupole + - OH10_QCORROCT_30_QT_001.quadrupole + - OH10_QCORROCT_30_QT_001.skewquad +- type: pyaml.arrays.element + name: Cell5 + elements: + - BPM_034 + - BPM_035 + - OH10_QCORROCT_31_QT_001 + - OH10_QCORROCT_31_QT_001.octupole + - OH10_QCORROCT_31_QT_001.quadrupole + - OH10_QCORROCT_31_QT_001.skewquad + - SH10_COR_002 + - SH10_COR_002.sextupole + - SH10_COR_002.hcorrector + - SH10_COR_002.vcorrector + - BPM_036 + - OH11_QCORROCT_32_001 + - OH11_QCORROCT_32_001.octupole + - OH11_QCORROCT_32_001.quadrupole + - SH11_002 + - QCORR_041 + - SH12_COR_002 + - SH12_COR_002.sextupole + - SH12_COR_002.hcorrector + - SH12_COR_002.vcorrector + - SXD51_001 + - OCTF5_QCORROCT_33_QT_001 + - OCTF5_QCORROCT_33_QT_001.octupole + - OCTF5_QCORROCT_33_QT_001.quadrupole + - OCTF5_QCORROCT_33_QT_001.skewquad + - SXF51_HCOR_001 + - SXF51_HCOR_001.sextupole + - SXF51_HCOR_001.hcorrector + - BPM_037 + - SXD51_VCOR_001 + - SXD51_VCOR_001.sextupole + - SXD51_VCOR_001.vcorrector + - QCORR_042 + - QCORR_043 + - SXD5_001 + - OCTF5_QCORROCT_34_QT_001 + - OCTF5_QCORROCT_34_QT_001.octupole + - OCTF5_QCORROCT_34_QT_001.quadrupole + - OCTF5_QCORROCT_34_QT_001.skewquad + - SXF5_HCOR_001 + - SXF5_HCOR_001.sextupole + - SXF5_HCOR_001.hcorrector + - BPM_038 + - SXD5_VCOR_001 + - SXD5_VCOR_001.sextupole + - SXD5_VCOR_001.vcorrector + - QCORR_044 + - QCORR_045 + - SXD5_002 + - OCTF5_QCORROCT_35_QT_001 + - OCTF5_QCORROCT_35_QT_001.octupole + - OCTF5_QCORROCT_35_QT_001.quadrupole + - OCTF5_QCORROCT_35_QT_001.skewquad + - SXF53_HCOR_001 + - SXF53_HCOR_001.sextupole + - SXF53_HCOR_001.hcorrector + - BPM_039 + - SXD53_VCOR_001 + - SXD53_VCOR_001.sextupole + - SXD53_VCOR_001.vcorrector + - QCORR_046 + - QCORR_047 + - SXD53_001 + - SXF53_HCOR_002 + - SXF53_HCOR_002.sextupole + - SXF53_HCOR_002.hcorrector + - OCTF5_QCORROCT_36_QT_001 + - OCTF5_QCORROCT_36_QT_001.octupole + - OCTF5_QCORROCT_36_QT_001.quadrupole + - OCTF5_QCORROCT_36_QT_001.skewquad + - BPM_040 + - SXD5_VCOR_002 + - SXD5_VCOR_002.sextupole + - SXD5_VCOR_002.vcorrector + - QCORR_048 + - QCORR_049 + - SXD5_003 + - SXF5_HCOR_002 + - SXF5_HCOR_002.sextupole + - SXF5_HCOR_002.hcorrector + - OCTF5_QCORROCT_37_QT_001 + - OCTF5_QCORROCT_37_QT_001.octupole + - OCTF5_QCORROCT_37_QT_001.quadrupole + - OCTF5_QCORROCT_37_QT_001.skewquad + - BPM_041 + - SXD5_VCOR_003 + - SXD5_VCOR_003.sextupole + - SXD5_VCOR_003.vcorrector + - QCORR_050 + - QCORR_051 + - SXD52_001 + - SXF52_HCOR_001 + - SXF52_HCOR_001.sextupole + - SXF52_HCOR_001.hcorrector + - OCTF5_QCORROCT_38_QT_001 + - OCTF5_QCORROCT_38_QT_001.octupole + - OCTF5_QCORROCT_38_QT_001.quadrupole + - OCTF5_QCORROCT_38_QT_001.skewquad + - SXD52_VCOR_001 + - SXD52_VCOR_001.sextupole + - SXD52_VCOR_001.vcorrector + - BPM_042 + - QCORR_052 + - SH15_VCOR_001 + - SH15_VCOR_001.sextupole + - SH15_VCOR_001.vcorrector + - BPM_043 + - SH14_HCOR_001 + - SH14_HCOR_001.sextupole + - SH14_HCOR_001.hcorrector + - OH14_QCORROCT_39_001 + - OH14_QCORROCT_39_001.octupole + - OH14_QCORROCT_39_001.quadrupole + - SH13_COR_001 + - SH13_COR_001.sextupole + - SH13_COR_001.hcorrector + - SH13_COR_001.vcorrector + - OH13_QCORROCT_40_QT_001 + - OH13_QCORROCT_40_QT_001.octupole + - OH13_QCORROCT_40_QT_001.quadrupole + - OH13_QCORROCT_40_QT_001.skewquad +- type: pyaml.arrays.magnet + name: OH10_QCORROCT_31_QT + elements: + - OH10_QCORROCT_31_QT_001.octupole + - OH10_QCORROCT_31_QT_001.quadrupole + - OH10_QCORROCT_31_QT_001.skewquad +- type: pyaml.arrays.magnet + name: OH11_QCORROCT_32 + elements: + - OH11_QCORROCT_32_001.octupole + - OH11_QCORROCT_32_001.quadrupole +- type: pyaml.arrays.magnet + name: SXD51 + elements: + - SXD51_001 + - SXD51_002 + - SXD51_003 + - SXD51_004 +- type: pyaml.arrays.magnet + name: OCTF5_QCORROCT_33_QT + elements: + - OCTF5_QCORROCT_33_QT_001.octupole + - OCTF5_QCORROCT_33_QT_001.quadrupole + - OCTF5_QCORROCT_33_QT_001.skewquad +- type: pyaml.arrays.magnet + name: SXF51_HCOR + elements: + - SXF51_HCOR_001.sextupole + - SXF51_HCOR_001.hcorrector + - SXF51_HCOR_002.sextupole + - SXF51_HCOR_002.hcorrector + - SXF51_HCOR_003.sextupole + - SXF51_HCOR_003.hcorrector + - SXF51_HCOR_004.sextupole + - SXF51_HCOR_004.hcorrector +- type: pyaml.arrays.magnet + name: SXD51_VCOR + elements: + - SXD51_VCOR_001.sextupole + - SXD51_VCOR_001.vcorrector + - SXD51_VCOR_002.sextupole + - SXD51_VCOR_002.vcorrector + - SXD51_VCOR_003.sextupole + - SXD51_VCOR_003.vcorrector + - SXD51_VCOR_004.sextupole + - SXD51_VCOR_004.vcorrector +- type: pyaml.arrays.magnet + name: SXD5 + elements: + - SXD5_001 + - SXD5_002 + - SXD5_003 + - SXD5_004 + - SXD5_005 + - SXD5_006 + - SXD5_007 + - SXD5_008 + - SXD5_009 + - SXD5_010 + - SXD5_011 + - SXD5_012 +- type: pyaml.arrays.magnet + name: OCTF5_QCORROCT_34_QT + elements: + - OCTF5_QCORROCT_34_QT_001.octupole + - OCTF5_QCORROCT_34_QT_001.quadrupole + - OCTF5_QCORROCT_34_QT_001.skewquad +- type: pyaml.arrays.magnet + name: SXF5_HCOR + elements: + - SXF5_HCOR_001.sextupole + - SXF5_HCOR_001.hcorrector + - SXF5_HCOR_002.sextupole + - SXF5_HCOR_002.hcorrector + - SXF5_HCOR_003.sextupole + - SXF5_HCOR_003.hcorrector + - SXF5_HCOR_004.sextupole + - SXF5_HCOR_004.hcorrector + - SXF5_HCOR_005.sextupole + - SXF5_HCOR_005.hcorrector + - SXF5_HCOR_006.sextupole + - SXF5_HCOR_006.hcorrector + - SXF5_HCOR_007.sextupole + - SXF5_HCOR_007.hcorrector + - SXF5_HCOR_008.sextupole + - SXF5_HCOR_008.hcorrector +- type: pyaml.arrays.magnet + name: SXD5_VCOR + elements: + - SXD5_VCOR_001.sextupole + - SXD5_VCOR_001.vcorrector + - SXD5_VCOR_002.sextupole + - SXD5_VCOR_002.vcorrector + - SXD5_VCOR_003.sextupole + - SXD5_VCOR_003.vcorrector + - SXD5_VCOR_004.sextupole + - SXD5_VCOR_004.vcorrector + - SXD5_VCOR_005.sextupole + - SXD5_VCOR_005.vcorrector + - SXD5_VCOR_006.sextupole + - SXD5_VCOR_006.vcorrector + - SXD5_VCOR_007.sextupole + - SXD5_VCOR_007.vcorrector + - SXD5_VCOR_008.sextupole + - SXD5_VCOR_008.vcorrector + - SXD5_VCOR_009.sextupole + - SXD5_VCOR_009.vcorrector + - SXD5_VCOR_010.sextupole + - SXD5_VCOR_010.vcorrector + - SXD5_VCOR_011.sextupole + - SXD5_VCOR_011.vcorrector + - SXD5_VCOR_012.sextupole + - SXD5_VCOR_012.vcorrector +- type: pyaml.arrays.magnet + name: OCTF5_QCORROCT_35_QT + elements: + - OCTF5_QCORROCT_35_QT_001.octupole + - OCTF5_QCORROCT_35_QT_001.quadrupole + - OCTF5_QCORROCT_35_QT_001.skewquad +- type: pyaml.arrays.magnet + name: SXF53_HCOR + elements: + - SXF53_HCOR_001.sextupole + - SXF53_HCOR_001.hcorrector + - SXF53_HCOR_002.sextupole + - SXF53_HCOR_002.hcorrector + - SXF53_HCOR_003.sextupole + - SXF53_HCOR_003.hcorrector + - SXF53_HCOR_004.sextupole + - SXF53_HCOR_004.hcorrector + - SXF53_HCOR_005.sextupole + - SXF53_HCOR_005.hcorrector + - SXF53_HCOR_006.sextupole + - SXF53_HCOR_006.hcorrector + - SXF53_HCOR_007.sextupole + - SXF53_HCOR_007.hcorrector + - SXF53_HCOR_008.sextupole + - SXF53_HCOR_008.hcorrector +- type: pyaml.arrays.magnet + name: SXD53_VCOR + elements: + - SXD53_VCOR_001.sextupole + - SXD53_VCOR_001.vcorrector + - SXD53_VCOR_002.sextupole + - SXD53_VCOR_002.vcorrector + - SXD53_VCOR_003.sextupole + - SXD53_VCOR_003.vcorrector + - SXD53_VCOR_004.sextupole + - SXD53_VCOR_004.vcorrector +- type: pyaml.arrays.magnet + name: SXD53 + elements: + - SXD53_001 + - SXD53_002 + - SXD53_003 + - SXD53_004 +- type: pyaml.arrays.magnet + name: OCTF5_QCORROCT_36_QT + elements: + - OCTF5_QCORROCT_36_QT_001.octupole + - OCTF5_QCORROCT_36_QT_001.quadrupole + - OCTF5_QCORROCT_36_QT_001.skewquad +- type: pyaml.arrays.magnet + name: OCTF5_QCORROCT_37_QT + elements: + - OCTF5_QCORROCT_37_QT_001.octupole + - OCTF5_QCORROCT_37_QT_001.quadrupole + - OCTF5_QCORROCT_37_QT_001.skewquad +- type: pyaml.arrays.magnet + name: SXD52 + elements: + - SXD52_001 + - SXD52_002 + - SXD52_003 + - SXD52_004 +- type: pyaml.arrays.magnet + name: SXF52_HCOR + elements: + - SXF52_HCOR_001.sextupole + - SXF52_HCOR_001.hcorrector + - SXF52_HCOR_002.sextupole + - SXF52_HCOR_002.hcorrector + - SXF52_HCOR_003.sextupole + - SXF52_HCOR_003.hcorrector + - SXF52_HCOR_004.sextupole + - SXF52_HCOR_004.hcorrector +- type: pyaml.arrays.magnet + name: OCTF5_QCORROCT_38_QT + elements: + - OCTF5_QCORROCT_38_QT_001.octupole + - OCTF5_QCORROCT_38_QT_001.quadrupole + - OCTF5_QCORROCT_38_QT_001.skewquad +- type: pyaml.arrays.magnet + name: SXD52_VCOR + elements: + - SXD52_VCOR_001.sextupole + - SXD52_VCOR_001.vcorrector + - SXD52_VCOR_002.sextupole + - SXD52_VCOR_002.vcorrector + - SXD52_VCOR_003.sextupole + - SXD52_VCOR_003.vcorrector + - SXD52_VCOR_004.sextupole + - SXD52_VCOR_004.vcorrector +- type: pyaml.arrays.magnet + name: SH15_VCOR + elements: + - SH15_VCOR_001.sextupole + - SH15_VCOR_001.vcorrector + - SH15_VCOR_002.sextupole + - SH15_VCOR_002.vcorrector + - SH15_VCOR_003.sextupole + - SH15_VCOR_003.vcorrector + - SH15_VCOR_004.sextupole + - SH15_VCOR_004.vcorrector +- type: pyaml.arrays.magnet + name: SH14_HCOR + elements: + - SH14_HCOR_001.sextupole + - SH14_HCOR_001.hcorrector + - SH14_HCOR_002.sextupole + - SH14_HCOR_002.hcorrector + - SH14_HCOR_003.sextupole + - SH14_HCOR_003.hcorrector + - SH14_HCOR_004.sextupole + - SH14_HCOR_004.hcorrector +- type: pyaml.arrays.magnet + name: OH14_QCORROCT_39 + elements: + - OH14_QCORROCT_39_001.octupole + - OH14_QCORROCT_39_001.quadrupole +- type: pyaml.arrays.magnet + name: SH13_COR + elements: + - SH13_COR_001.sextupole + - SH13_COR_001.hcorrector + - SH13_COR_001.vcorrector + - SH13_COR_002.sextupole + - SH13_COR_002.hcorrector + - SH13_COR_002.vcorrector + - SH13_COR_003.sextupole + - SH13_COR_003.hcorrector + - SH13_COR_003.vcorrector + - SH13_COR_004.sextupole + - SH13_COR_004.hcorrector + - SH13_COR_004.vcorrector +- type: pyaml.arrays.magnet + name: OH13_QCORROCT_40_QT + elements: + - OH13_QCORROCT_40_QT_001.octupole + - OH13_QCORROCT_40_QT_001.quadrupole + - OH13_QCORROCT_40_QT_001.skewquad +- type: pyaml.arrays.element + name: Cell6 + elements: + - BPM_044 + - BPM_045 + - OH16_QCORROCT_41_001 + - OH16_QCORROCT_41_001.octupole + - OH16_QCORROCT_41_001.quadrupole + - SH16_COR_001 + - SH16_COR_001.sextupole + - SH16_COR_001.hcorrector + - SH16_COR_001.vcorrector + - SH16_COR_002 + - SH16_COR_002.sextupole + - SH16_COR_002.hcorrector + - SH16_COR_002.vcorrector + - OH16_QCORROCT_42_001 + - OH16_QCORROCT_42_001.octupole + - OH16_QCORROCT_42_001.quadrupole + - BPM_046 + - BPM_047 + - OH13_QCORROCT_43_QT_001 + - OH13_QCORROCT_43_QT_001.octupole + - OH13_QCORROCT_43_QT_001.quadrupole + - OH13_QCORROCT_43_QT_001.skewquad + - SH13_COR_002 + - SH13_COR_002.sextupole + - SH13_COR_002.hcorrector + - SH13_COR_002.vcorrector + - OH14_QCORROCT_44_001 + - OH14_QCORROCT_44_001.octupole + - OH14_QCORROCT_44_001.quadrupole + - SH14_HCOR_002 + - SH14_HCOR_002.sextupole + - SH14_HCOR_002.hcorrector + - BPM_048 + - SH15_VCOR_002 + - SH15_VCOR_002.sextupole + - SH15_VCOR_002.vcorrector + - QCORR_053 + - SXD52_002 + - OCTF5_QCORROCT_45_QT_001 + - OCTF5_QCORROCT_45_QT_001.octupole + - OCTF5_QCORROCT_45_QT_001.quadrupole + - OCTF5_QCORROCT_45_QT_001.skewquad + - SXF52_HCOR_002 + - SXF52_HCOR_002.sextupole + - SXF52_HCOR_002.hcorrector + - BPM_049 + - SXD52_VCOR_002 + - SXD52_VCOR_002.sextupole + - SXD52_VCOR_002.vcorrector + - QCORR_054 + - QCORR_055 + - SXD5_004 + - OCTF5_QCORROCT_46_QT_001 + - OCTF5_QCORROCT_46_QT_001.octupole + - OCTF5_QCORROCT_46_QT_001.quadrupole + - OCTF5_QCORROCT_46_QT_001.skewquad + - SXF5_HCOR_003 + - SXF5_HCOR_003.sextupole + - SXF5_HCOR_003.hcorrector + - BPM_050 + - SXD5_VCOR_004 + - SXD5_VCOR_004.sextupole + - SXD5_VCOR_004.vcorrector + - QCORR_056 + - QCORR_057 + - SXD5_005 + - OCTF5_QCORROCT_47_QT_001 + - OCTF5_QCORROCT_47_QT_001.octupole + - OCTF5_QCORROCT_47_QT_001.quadrupole + - OCTF5_QCORROCT_47_QT_001.skewquad + - SXF53_HCOR_003 + - SXF53_HCOR_003.sextupole + - SXF53_HCOR_003.hcorrector + - BPM_051 + - SXD53_VCOR_002 + - SXD53_VCOR_002.sextupole + - SXD53_VCOR_002.vcorrector + - QCORR_058 + - QCORR_059 + - SXD53_002 + - SXF53_HCOR_004 + - SXF53_HCOR_004.sextupole + - SXF53_HCOR_004.hcorrector + - OCTF5_QCORROCT_48_QT_001 + - OCTF5_QCORROCT_48_QT_001.octupole + - OCTF5_QCORROCT_48_QT_001.quadrupole + - OCTF5_QCORROCT_48_QT_001.skewquad + - BPM_052 + - SXD5_VCOR_005 + - SXD5_VCOR_005.sextupole + - SXD5_VCOR_005.vcorrector + - QCORR_060 + - QCORR_061 + - SXD5_006 + - SXF5_HCOR_004 + - SXF5_HCOR_004.sextupole + - SXF5_HCOR_004.hcorrector + - OCTF5_QCORROCT_49_QT_001 + - OCTF5_QCORROCT_49_QT_001.octupole + - OCTF5_QCORROCT_49_QT_001.quadrupole + - OCTF5_QCORROCT_49_QT_001.skewquad + - BPM_053 + - SXD5_VCOR_006 + - SXD5_VCOR_006.sextupole + - SXD5_VCOR_006.vcorrector + - QCORR_062 + - QCORR_063 + - SXD51_002 + - SXF51_HCOR_002 + - SXF51_HCOR_002.sextupole + - SXF51_HCOR_002.hcorrector + - OCTF5_QCORROCT_50_QT_001 + - OCTF5_QCORROCT_50_QT_001.octupole + - OCTF5_QCORROCT_50_QT_001.quadrupole + - OCTF5_QCORROCT_50_QT_001.skewquad + - SXD51_VCOR_002 + - SXD51_VCOR_002.sextupole + - SXD51_VCOR_002.vcorrector + - BPM_054 + - SH12_COR_003 + - SH12_COR_003.sextupole + - SH12_COR_003.hcorrector + - SH12_COR_003.vcorrector + - QCORR_064 + - SH11_003 + - OH11_QCORROCT_51_001 + - OH11_QCORROCT_51_001.octupole + - OH11_QCORROCT_51_001.quadrupole + - BPM_055 + - SH10_COR_003 + - SH10_COR_003.sextupole + - SH10_COR_003.hcorrector + - SH10_COR_003.vcorrector + - OH10_QCORROCT_52_QT_001 + - OH10_QCORROCT_52_QT_001.octupole + - OH10_QCORROCT_52_QT_001.quadrupole + - OH10_QCORROCT_52_QT_001.skewquad +- type: pyaml.arrays.magnet + name: OH16_QCORROCT_41 + elements: + - OH16_QCORROCT_41_001.octupole + - OH16_QCORROCT_41_001.quadrupole +- type: pyaml.arrays.magnet + name: SH16_COR + elements: + - SH16_COR_001.sextupole + - SH16_COR_001.hcorrector + - SH16_COR_001.vcorrector + - SH16_COR_002.sextupole + - SH16_COR_002.hcorrector + - SH16_COR_002.vcorrector + - SH16_COR_003.sextupole + - SH16_COR_003.hcorrector + - SH16_COR_003.vcorrector + - SH16_COR_004.sextupole + - SH16_COR_004.hcorrector + - SH16_COR_004.vcorrector +- type: pyaml.arrays.magnet + name: OH16_QCORROCT_42 + elements: + - OH16_QCORROCT_42_001.octupole + - OH16_QCORROCT_42_001.quadrupole +- type: pyaml.arrays.magnet + name: OH13_QCORROCT_43_QT + elements: + - OH13_QCORROCT_43_QT_001.octupole + - OH13_QCORROCT_43_QT_001.quadrupole + - OH13_QCORROCT_43_QT_001.skewquad +- type: pyaml.arrays.magnet + name: OH14_QCORROCT_44 + elements: + - OH14_QCORROCT_44_001.octupole + - OH14_QCORROCT_44_001.quadrupole +- type: pyaml.arrays.magnet + name: OCTF5_QCORROCT_45_QT + elements: + - OCTF5_QCORROCT_45_QT_001.octupole + - OCTF5_QCORROCT_45_QT_001.quadrupole + - OCTF5_QCORROCT_45_QT_001.skewquad +- type: pyaml.arrays.magnet + name: OCTF5_QCORROCT_46_QT + elements: + - OCTF5_QCORROCT_46_QT_001.octupole + - OCTF5_QCORROCT_46_QT_001.quadrupole + - OCTF5_QCORROCT_46_QT_001.skewquad +- type: pyaml.arrays.magnet + name: OCTF5_QCORROCT_47_QT + elements: + - OCTF5_QCORROCT_47_QT_001.octupole + - OCTF5_QCORROCT_47_QT_001.quadrupole + - OCTF5_QCORROCT_47_QT_001.skewquad +- type: pyaml.arrays.magnet + name: OCTF5_QCORROCT_48_QT + elements: + - OCTF5_QCORROCT_48_QT_001.octupole + - OCTF5_QCORROCT_48_QT_001.quadrupole + - OCTF5_QCORROCT_48_QT_001.skewquad +- type: pyaml.arrays.magnet + name: OCTF5_QCORROCT_49_QT + elements: + - OCTF5_QCORROCT_49_QT_001.octupole + - OCTF5_QCORROCT_49_QT_001.quadrupole + - OCTF5_QCORROCT_49_QT_001.skewquad +- type: pyaml.arrays.magnet + name: OCTF5_QCORROCT_50_QT + elements: + - OCTF5_QCORROCT_50_QT_001.octupole + - OCTF5_QCORROCT_50_QT_001.quadrupole + - OCTF5_QCORROCT_50_QT_001.skewquad +- type: pyaml.arrays.magnet + name: OH11_QCORROCT_51 + elements: + - OH11_QCORROCT_51_001.octupole + - OH11_QCORROCT_51_001.quadrupole +- type: pyaml.arrays.magnet + name: OH10_QCORROCT_52_QT + elements: + - OH10_QCORROCT_52_QT_001.octupole + - OH10_QCORROCT_52_QT_001.quadrupole + - OH10_QCORROCT_52_QT_001.skewquad +- type: pyaml.arrays.element + name: Cell7 + elements: + - BPM_056 + - BPM_057 + - OH10_QCORROCT_53_QT_001 + - OH10_QCORROCT_53_QT_001.octupole + - OH10_QCORROCT_53_QT_001.quadrupole + - OH10_QCORROCT_53_QT_001.skewquad + - SH10_COR_004 + - SH10_COR_004.sextupole + - SH10_COR_004.hcorrector + - SH10_COR_004.vcorrector + - BPM_058 + - OH11_QCORROCT_54_001 + - OH11_QCORROCT_54_001.octupole + - OH11_QCORROCT_54_001.quadrupole + - SH11_004 + - QCORR_065 + - SH12_COR_004 + - SH12_COR_004.sextupole + - SH12_COR_004.hcorrector + - SH12_COR_004.vcorrector + - SXD42_002 + - OCTF4_QCORROCT_55_QT_001 + - OCTF4_QCORROCT_55_QT_001.octupole + - OCTF4_QCORROCT_55_QT_001.quadrupole + - OCTF4_QCORROCT_55_QT_001.skewquad + - SXF42_HCOR_002 + - SXF42_HCOR_002.sextupole + - SXF42_HCOR_002.hcorrector + - BPM_059 + - SXD42_VCOR_002 + - SXD42_VCOR_002.sextupole + - SXD42_VCOR_002.vcorrector + - QCORR_066 + - QCORR_067 + - SXD4_002 + - OCTF4_QCORROCT_56_QT_001 + - OCTF4_QCORROCT_56_QT_001.octupole + - OCTF4_QCORROCT_56_QT_001.quadrupole + - OCTF4_QCORROCT_56_QT_001.skewquad + - SXF4_HCOR_002 + - SXF4_HCOR_002.sextupole + - SXF4_HCOR_002.hcorrector + - BPM_060 + - SXD4_VCOR_002 + - SXD4_VCOR_002.sextupole + - SXD4_VCOR_002.vcorrector + - QCORR_068 + - QCORR_069 + - SXD41_002 + - SXF41_HCOR_002 + - SXF41_HCOR_002.sextupole + - SXF41_HCOR_002.hcorrector + - OCTF4_QCORROCT_57_QT_001 + - OCTF4_QCORROCT_57_QT_001.octupole + - OCTF4_QCORROCT_57_QT_001.quadrupole + - OCTF4_QCORROCT_57_QT_001.skewquad + - SXD41_VCOR_002 + - SXD41_VCOR_002.sextupole + - SXD41_VCOR_002.vcorrector + - BPM_061 + - SH9_COR_005 + - SH9_COR_005.sextupole + - SH9_COR_005.hcorrector + - SH9_COR_005.vcorrector + - QCORR_070 + - SH8_005 + - QCORR_071 + - BPM_062 + - SH7_COR_005 + - SH7_COR_005.sextupole + - SH7_COR_005.hcorrector + - SH7_COR_005.vcorrector + - OH7_QCORROCT_58_QT_001 + - OH7_QCORROCT_58_QT_001.octupole + - OH7_QCORROCT_58_QT_001.quadrupole + - OH7_QCORROCT_58_QT_001.skewquad +- type: pyaml.arrays.magnet + name: OH10_QCORROCT_53_QT + elements: + - OH10_QCORROCT_53_QT_001.octupole + - OH10_QCORROCT_53_QT_001.quadrupole + - OH10_QCORROCT_53_QT_001.skewquad +- type: pyaml.arrays.magnet + name: OH11_QCORROCT_54 + elements: + - OH11_QCORROCT_54_001.octupole + - OH11_QCORROCT_54_001.quadrupole +- type: pyaml.arrays.magnet + name: OCTF4_QCORROCT_55_QT + elements: + - OCTF4_QCORROCT_55_QT_001.octupole + - OCTF4_QCORROCT_55_QT_001.quadrupole + - OCTF4_QCORROCT_55_QT_001.skewquad +- type: pyaml.arrays.magnet + name: OCTF4_QCORROCT_56_QT + elements: + - OCTF4_QCORROCT_56_QT_001.octupole + - OCTF4_QCORROCT_56_QT_001.quadrupole + - OCTF4_QCORROCT_56_QT_001.skewquad +- type: pyaml.arrays.magnet + name: OCTF4_QCORROCT_57_QT + elements: + - OCTF4_QCORROCT_57_QT_001.octupole + - OCTF4_QCORROCT_57_QT_001.quadrupole + - OCTF4_QCORROCT_57_QT_001.skewquad +- type: pyaml.arrays.magnet + name: OH7_QCORROCT_58_QT + elements: + - OH7_QCORROCT_58_QT_001.octupole + - OH7_QCORROCT_58_QT_001.quadrupole + - OH7_QCORROCT_58_QT_001.skewquad +- type: pyaml.arrays.element + name: Cell8 + elements: + - BPM_063 + - BPM_064 + - OH7_QCORROCT_59_QT_001 + - OH7_QCORROCT_59_QT_001.octupole + - OH7_QCORROCT_59_QT_001.quadrupole + - OH7_QCORROCT_59_QT_001.skewquad + - SH7_COR_006 + - SH7_COR_006.sextupole + - SH7_COR_006.hcorrector + - SH7_COR_006.vcorrector + - BPM_065 + - QCORR_072 + - SH8_006 + - QCORR_073 + - SH9_COR_006 + - SH9_COR_006.sextupole + - SH9_COR_006.hcorrector + - SH9_COR_006.vcorrector + - SXD32_002 + - OCTF3_QCORROCT_60_QT_001 + - OCTF3_QCORROCT_60_QT_001.octupole + - OCTF3_QCORROCT_60_QT_001.quadrupole + - OCTF3_QCORROCT_60_QT_001.skewquad + - SXF32_HCOR_002 + - SXF32_HCOR_002.sextupole + - SXF32_HCOR_002.hcorrector + - BPM_066 + - SXD32_VCOR_002 + - SXD32_VCOR_002.sextupole + - SXD32_VCOR_002.vcorrector + - QCORR_074 + - QCORR_075 + - SXD3_004 + - OCTF3_QCORROCT_61_QT_001 + - OCTF3_QCORROCT_61_QT_001.octupole + - OCTF3_QCORROCT_61_QT_001.quadrupole + - OCTF3_QCORROCT_61_QT_001.skewquad + - SXF3_HCOR_003 + - SXF3_HCOR_003.sextupole + - SXF3_HCOR_003.hcorrector + - BPM_067 + - SXD3_VCOR_004 + - SXD3_VCOR_004.sextupole + - SXD3_VCOR_004.vcorrector + - QCORR_076 + - QCORR_077 + - SXD3_005 + - OCTF3_QCORROCT_62_QT_001 + - OCTF3_QCORROCT_62_QT_001.octupole + - OCTF3_QCORROCT_62_QT_001.quadrupole + - OCTF3_QCORROCT_62_QT_001.skewquad + - SXF33_HCOR_003 + - SXF33_HCOR_003.sextupole + - SXF33_HCOR_003.hcorrector + - BPM_068 + - SXD33_VCOR_002 + - SXD33_VCOR_002.sextupole + - SXD33_VCOR_002.vcorrector + - QCORR_078 + - QCORR_079 + - SXD33_002 + - SXF33_HCOR_004 + - SXF33_HCOR_004.sextupole + - SXF33_HCOR_004.hcorrector + - OCTF3_QCORROCT_63_QT_001 + - OCTF3_QCORROCT_63_QT_001.octupole + - OCTF3_QCORROCT_63_QT_001.quadrupole + - OCTF3_QCORROCT_63_QT_001.skewquad + - BPM_069 + - SXD3_VCOR_005 + - SXD3_VCOR_005.sextupole + - SXD3_VCOR_005.vcorrector + - QCORR_080 + - QCORR_081 + - SXD3_006 + - SXF3_HCOR_004 + - SXF3_HCOR_004.sextupole + - SXF3_HCOR_004.hcorrector + - OCTF3_QCORROCT_64_QT_001 + - OCTF3_QCORROCT_64_QT_001.octupole + - OCTF3_QCORROCT_64_QT_001.quadrupole + - OCTF3_QCORROCT_64_QT_001.skewquad + - BPM_070 + - SXD3_VCOR_006 + - SXD3_VCOR_006.sextupole + - SXD3_VCOR_006.vcorrector + - QCORR_082 + - QCORR_083 + - SXD31_002 + - SXF31_HCOR_002 + - SXF31_HCOR_002.sextupole + - SXF31_HCOR_002.hcorrector + - OCTF3_QCORROCT_65_QT_001 + - OCTF3_QCORROCT_65_QT_001.octupole + - OCTF3_QCORROCT_65_QT_001.quadrupole + - OCTF3_QCORROCT_65_QT_001.skewquad + - SXD31_VCOR_002 + - SXD31_VCOR_002.sextupole + - SXD31_VCOR_002.vcorrector + - BPM_071 + - SH9_COR_007 + - SH9_COR_007.sextupole + - SH9_COR_007.hcorrector + - SH9_COR_007.vcorrector + - QCORR_084 + - SH8_007 + - QCORR_085 + - BPM_072 + - SH7_COR_007 + - SH7_COR_007.sextupole + - SH7_COR_007.hcorrector + - SH7_COR_007.vcorrector + - OH7_QCORROCT_66_QT_001 + - OH7_QCORROCT_66_QT_001.octupole + - OH7_QCORROCT_66_QT_001.quadrupole + - OH7_QCORROCT_66_QT_001.skewquad +- type: pyaml.arrays.magnet + name: OH7_QCORROCT_59_QT + elements: + - OH7_QCORROCT_59_QT_001.octupole + - OH7_QCORROCT_59_QT_001.quadrupole + - OH7_QCORROCT_59_QT_001.skewquad +- type: pyaml.arrays.magnet + name: OCTF3_QCORROCT_60_QT + elements: + - OCTF3_QCORROCT_60_QT_001.octupole + - OCTF3_QCORROCT_60_QT_001.quadrupole + - OCTF3_QCORROCT_60_QT_001.skewquad +- type: pyaml.arrays.magnet + name: OCTF3_QCORROCT_61_QT + elements: + - OCTF3_QCORROCT_61_QT_001.octupole + - OCTF3_QCORROCT_61_QT_001.quadrupole + - OCTF3_QCORROCT_61_QT_001.skewquad +- type: pyaml.arrays.magnet + name: OCTF3_QCORROCT_62_QT + elements: + - OCTF3_QCORROCT_62_QT_001.octupole + - OCTF3_QCORROCT_62_QT_001.quadrupole + - OCTF3_QCORROCT_62_QT_001.skewquad +- type: pyaml.arrays.magnet + name: OCTF3_QCORROCT_63_QT + elements: + - OCTF3_QCORROCT_63_QT_001.octupole + - OCTF3_QCORROCT_63_QT_001.quadrupole + - OCTF3_QCORROCT_63_QT_001.skewquad +- type: pyaml.arrays.magnet + name: OCTF3_QCORROCT_64_QT + elements: + - OCTF3_QCORROCT_64_QT_001.octupole + - OCTF3_QCORROCT_64_QT_001.quadrupole + - OCTF3_QCORROCT_64_QT_001.skewquad +- type: pyaml.arrays.magnet + name: OCTF3_QCORROCT_65_QT + elements: + - OCTF3_QCORROCT_65_QT_001.octupole + - OCTF3_QCORROCT_65_QT_001.quadrupole + - OCTF3_QCORROCT_65_QT_001.skewquad +- type: pyaml.arrays.magnet + name: OH7_QCORROCT_66_QT + elements: + - OH7_QCORROCT_66_QT_001.octupole + - OH7_QCORROCT_66_QT_001.quadrupole + - OH7_QCORROCT_66_QT_001.skewquad +- type: pyaml.arrays.element + name: Cell9 + elements: + - BPM_073 + - BPM_074 + - OH7_QCORROCT_67_QT_001 + - OH7_QCORROCT_67_QT_001.octupole + - OH7_QCORROCT_67_QT_001.quadrupole + - OH7_QCORROCT_67_QT_001.skewquad + - SH7_COR_008 + - SH7_COR_008.sextupole + - SH7_COR_008.hcorrector + - SH7_COR_008.vcorrector + - BPM_075 + - QCORR_086 + - SH8_008 + - QCORR_087 + - SH9_COR_008 + - SH9_COR_008.sextupole + - SH9_COR_008.hcorrector + - SH9_COR_008.vcorrector + - SXD22_002 + - OCTF2_QCORROCT_68_QT_001 + - OCTF2_QCORROCT_68_QT_001.octupole + - OCTF2_QCORROCT_68_QT_001.quadrupole + - OCTF2_QCORROCT_68_QT_001.skewquad + - SXF22_HCOR_002 + - SXF22_HCOR_002.sextupole + - SXF22_HCOR_002.hcorrector + - BPM_076 + - SXD22_VCOR_002 + - SXD22_VCOR_002.sextupole + - SXD22_VCOR_002.vcorrector + - QCORR_088 + - QCORR_089 + - SXD2_002 + - SXF2_HCOR_002 + - SXF2_HCOR_002.sextupole + - SXF2_HCOR_002.hcorrector + - OCTF2_QCORROCT_69_QT_001 + - OCTF2_QCORROCT_69_QT_001.octupole + - OCTF2_QCORROCT_69_QT_001.quadrupole + - OCTF2_QCORROCT_69_QT_001.skewquad + - BPM_077 + - SXD2_VCOR_002 + - SXD2_VCOR_002.sextupole + - SXD2_VCOR_002.vcorrector + - QCORR_090 + - QCORR_091 + - SXD21_002 + - SXF21_HCOR_002 + - SXF21_HCOR_002.sextupole + - SXF21_HCOR_002.hcorrector + - OCTF2_QCORROCT_70_QT_001 + - OCTF2_QCORROCT_70_QT_001.octupole + - OCTF2_QCORROCT_70_QT_001.quadrupole + - OCTF2_QCORROCT_70_QT_001.skewquad + - SXD21_VCOR_002 + - SXD21_VCOR_002.sextupole + - SXD21_VCOR_002.vcorrector + - BPM_078 + - SH6_COR_003 + - SH6_COR_003.sextupole + - SH6_COR_003.hcorrector + - SH6_COR_003.vcorrector + - QCORR_092 + - SH5_003 + - OH5_QCORROCT_71_001 + - OH5_QCORROCT_71_001.octupole + - OH5_QCORROCT_71_001.quadrupole + - BPM_079 + - SH4_COR_003 + - SH4_COR_003.sextupole + - SH4_COR_003.hcorrector + - SH4_COR_003.vcorrector + - OH4_QCORROCT_72_QT_001 + - OH4_QCORROCT_72_QT_001.octupole + - OH4_QCORROCT_72_QT_001.quadrupole + - OH4_QCORROCT_72_QT_001.skewquad +- type: pyaml.arrays.magnet + name: OH7_QCORROCT_67_QT + elements: + - OH7_QCORROCT_67_QT_001.octupole + - OH7_QCORROCT_67_QT_001.quadrupole + - OH7_QCORROCT_67_QT_001.skewquad +- type: pyaml.arrays.magnet + name: OCTF2_QCORROCT_68_QT + elements: + - OCTF2_QCORROCT_68_QT_001.octupole + - OCTF2_QCORROCT_68_QT_001.quadrupole + - OCTF2_QCORROCT_68_QT_001.skewquad +- type: pyaml.arrays.magnet + name: OCTF2_QCORROCT_69_QT + elements: + - OCTF2_QCORROCT_69_QT_001.octupole + - OCTF2_QCORROCT_69_QT_001.quadrupole + - OCTF2_QCORROCT_69_QT_001.skewquad +- type: pyaml.arrays.magnet + name: OCTF2_QCORROCT_70_QT + elements: + - OCTF2_QCORROCT_70_QT_001.octupole + - OCTF2_QCORROCT_70_QT_001.quadrupole + - OCTF2_QCORROCT_70_QT_001.skewquad +- type: pyaml.arrays.magnet + name: OH5_QCORROCT_71 + elements: + - OH5_QCORROCT_71_001.octupole + - OH5_QCORROCT_71_001.quadrupole +- type: pyaml.arrays.magnet + name: OH4_QCORROCT_72_QT + elements: + - OH4_QCORROCT_72_QT_001.octupole + - OH4_QCORROCT_72_QT_001.quadrupole + - OH4_QCORROCT_72_QT_001.skewquad +- type: pyaml.arrays.element + name: Cell10 + elements: + - BPM_080 + - BPM_081 + - OH4_QCORROCT_73_QT_001 + - OH4_QCORROCT_73_QT_001.octupole + - OH4_QCORROCT_73_QT_001.quadrupole + - OH4_QCORROCT_73_QT_001.skewquad + - SH4_COR_004 + - SH4_COR_004.sextupole + - SH4_COR_004.hcorrector + - SH4_COR_004.vcorrector + - BPM_082 + - OH5_QCORROCT_74_001 + - OH5_QCORROCT_74_001.octupole + - OH5_QCORROCT_74_001.quadrupole + - SH5_004 + - QCORR_093 + - SH6_COR_004 + - SH6_COR_004.sextupole + - SH6_COR_004.hcorrector + - SH6_COR_004.vcorrector + - SXD12_002 + - OCTF1_QCORROCT_75_QT_001 + - OCTF1_QCORROCT_75_QT_001.octupole + - OCTF1_QCORROCT_75_QT_001.quadrupole + - OCTF1_QCORROCT_75_QT_001.skewquad + - SXF12_HCOR_002 + - SXF12_HCOR_002.sextupole + - SXF12_HCOR_002.hcorrector + - BPM_083 + - SXD12_VCOR_002 + - SXD12_VCOR_002.sextupole + - SXD12_VCOR_002.vcorrector + - QCORR_094 + - QCORR_095 + - SXD1_004 + - OCTF1_QCORROCT_76_QT_001 + - OCTF1_QCORROCT_76_QT_001.octupole + - OCTF1_QCORROCT_76_QT_001.quadrupole + - OCTF1_QCORROCT_76_QT_001.skewquad + - SXF1_HCOR_003 + - SXF1_HCOR_003.sextupole + - SXF1_HCOR_003.hcorrector + - BPM_084 + - SXD1_VCOR_004 + - SXD1_VCOR_004.sextupole + - SXD1_VCOR_004.vcorrector + - QCORR_096 + - QCORR_097 + - SXD1_005 + - OCTF1_QCORROCT_77_QT_001 + - OCTF1_QCORROCT_77_QT_001.octupole + - OCTF1_QCORROCT_77_QT_001.quadrupole + - OCTF1_QCORROCT_77_QT_001.skewquad + - SXF13_HCOR_003 + - SXF13_HCOR_003.sextupole + - SXF13_HCOR_003.hcorrector + - BPM_085 + - SXD13_VCOR_002 + - SXD13_VCOR_002.sextupole + - SXD13_VCOR_002.vcorrector + - QCORR_098 + - QCORR_099 + - SXD13_002 + - SXF13_HCOR_004 + - SXF13_HCOR_004.sextupole + - SXF13_HCOR_004.hcorrector + - OCTF1_QCORROCT_78_QT_001 + - OCTF1_QCORROCT_78_QT_001.octupole + - OCTF1_QCORROCT_78_QT_001.quadrupole + - OCTF1_QCORROCT_78_QT_001.skewquad + - BPM_086 + - SXD1_VCOR_005 + - SXD1_VCOR_005.sextupole + - SXD1_VCOR_005.vcorrector + - QCORR_100 + - QCORR_101 + - SXD1_006 + - SXF1_HCOR_004 + - SXF1_HCOR_004.sextupole + - SXF1_HCOR_004.hcorrector + - OCTF1_QCORROCT_79_QT_001 + - OCTF1_QCORROCT_79_QT_001.octupole + - OCTF1_QCORROCT_79_QT_001.quadrupole + - OCTF1_QCORROCT_79_QT_001.skewquad + - BPM_087 + - SXD1_VCOR_006 + - SXD1_VCOR_006.sextupole + - SXD1_VCOR_006.vcorrector + - QCORR_102 + - QCORR_103 + - SXD11_002 + - SXF11_HCOR_002 + - SXF11_HCOR_002.sextupole + - SXF11_HCOR_002.hcorrector + - OCTF1_QCORROCT_80_QT_001 + - OCTF1_QCORROCT_80_QT_001.octupole + - OCTF1_QCORROCT_80_QT_001.quadrupole + - OCTF1_QCORROCT_80_QT_001.skewquad + - SXD11_VCOR_002 + - SXD11_VCOR_002.sextupole + - SXD11_VCOR_002.vcorrector + - BPM_088 + - QCORR_104 + - SH3_VCOR_002 + - SH3_VCOR_002.sextupole + - SH3_VCOR_002.vcorrector + - BPM_089 + - OH2_QCORROCT_81_001 + - OH2_QCORROCT_81_001.octupole + - OH2_QCORROCT_81_001.quadrupole + - SH2_HCOR_002 + - SH2_HCOR_002.sextupole + - SH2_HCOR_002.hcorrector + - OH1_QCORROCT_82_QT_001 + - OH1_QCORROCT_82_QT_001.octupole + - OH1_QCORROCT_82_QT_001.quadrupole + - OH1_QCORROCT_82_QT_001.skewquad + - SH1_COR_002 + - SH1_COR_002.sextupole + - SH1_COR_002.hcorrector + - SH1_COR_002.vcorrector +- type: pyaml.arrays.magnet + name: OH4_QCORROCT_73_QT + elements: + - OH4_QCORROCT_73_QT_001.octupole + - OH4_QCORROCT_73_QT_001.quadrupole + - OH4_QCORROCT_73_QT_001.skewquad +- type: pyaml.arrays.magnet + name: OH5_QCORROCT_74 + elements: + - OH5_QCORROCT_74_001.octupole + - OH5_QCORROCT_74_001.quadrupole +- type: pyaml.arrays.magnet + name: OCTF1_QCORROCT_75_QT + elements: + - OCTF1_QCORROCT_75_QT_001.octupole + - OCTF1_QCORROCT_75_QT_001.quadrupole + - OCTF1_QCORROCT_75_QT_001.skewquad +- type: pyaml.arrays.magnet + name: OCTF1_QCORROCT_76_QT + elements: + - OCTF1_QCORROCT_76_QT_001.octupole + - OCTF1_QCORROCT_76_QT_001.quadrupole + - OCTF1_QCORROCT_76_QT_001.skewquad +- type: pyaml.arrays.magnet + name: OCTF1_QCORROCT_77_QT + elements: + - OCTF1_QCORROCT_77_QT_001.octupole + - OCTF1_QCORROCT_77_QT_001.quadrupole + - OCTF1_QCORROCT_77_QT_001.skewquad +- type: pyaml.arrays.magnet + name: OCTF1_QCORROCT_78_QT + elements: + - OCTF1_QCORROCT_78_QT_001.octupole + - OCTF1_QCORROCT_78_QT_001.quadrupole + - OCTF1_QCORROCT_78_QT_001.skewquad +- type: pyaml.arrays.magnet + name: OCTF1_QCORROCT_79_QT + elements: + - OCTF1_QCORROCT_79_QT_001.octupole + - OCTF1_QCORROCT_79_QT_001.quadrupole + - OCTF1_QCORROCT_79_QT_001.skewquad +- type: pyaml.arrays.magnet + name: OCTF1_QCORROCT_80_QT + elements: + - OCTF1_QCORROCT_80_QT_001.octupole + - OCTF1_QCORROCT_80_QT_001.quadrupole + - OCTF1_QCORROCT_80_QT_001.skewquad +- type: pyaml.arrays.magnet + name: OH2_QCORROCT_81 + elements: + - OH2_QCORROCT_81_001.octupole + - OH2_QCORROCT_81_001.quadrupole +- type: pyaml.arrays.magnet + name: OH1_QCORROCT_82_QT + elements: + - OH1_QCORROCT_82_QT_001.octupole + - OH1_QCORROCT_82_QT_001.quadrupole + - OH1_QCORROCT_82_QT_001.skewquad +- type: pyaml.arrays.element + name: Cell11 + elements: + - BPM_090 + - BPM_091 + - SH1_COR_003 + - SH1_COR_003.sextupole + - SH1_COR_003.hcorrector + - SH1_COR_003.vcorrector + - OH1_QCORROCT_83_QT_001 + - OH1_QCORROCT_83_QT_001.octupole + - OH1_QCORROCT_83_QT_001.quadrupole + - OH1_QCORROCT_83_QT_001.skewquad + - SH2_HCOR_003 + - SH2_HCOR_003.sextupole + - SH2_HCOR_003.hcorrector + - OH2_QCORROCT_84_001 + - OH2_QCORROCT_84_001.octupole + - OH2_QCORROCT_84_001.quadrupole + - BPM_092 + - SH3_VCOR_003 + - SH3_VCOR_003.sextupole + - SH3_VCOR_003.vcorrector + - QCORR_105 + - SXD11_003 + - OCTF1_QCORROCT_85_QT_001 + - OCTF1_QCORROCT_85_QT_001.octupole + - OCTF1_QCORROCT_85_QT_001.quadrupole + - OCTF1_QCORROCT_85_QT_001.skewquad + - SXF11_HCOR_003 + - SXF11_HCOR_003.sextupole + - SXF11_HCOR_003.hcorrector + - BPM_093 + - SXD11_VCOR_003 + - SXD11_VCOR_003.sextupole + - SXD11_VCOR_003.vcorrector + - QCORR_106 + - QCORR_107 + - SXD1_007 + - OCTF1_QCORROCT_86_QT_001 + - OCTF1_QCORROCT_86_QT_001.octupole + - OCTF1_QCORROCT_86_QT_001.quadrupole + - OCTF1_QCORROCT_86_QT_001.skewquad + - SXF1_HCOR_005 + - SXF1_HCOR_005.sextupole + - SXF1_HCOR_005.hcorrector + - BPM_094 + - SXD1_VCOR_007 + - SXD1_VCOR_007.sextupole + - SXD1_VCOR_007.vcorrector + - QCORR_108 + - QCORR_109 + - SXD1_008 + - OCTF1_QCORROCT_87_QT_001 + - OCTF1_QCORROCT_87_QT_001.octupole + - OCTF1_QCORROCT_87_QT_001.quadrupole + - OCTF1_QCORROCT_87_QT_001.skewquad + - SXF13_HCOR_005 + - SXF13_HCOR_005.sextupole + - SXF13_HCOR_005.hcorrector + - BPM_095 + - SXD13_VCOR_003 + - SXD13_VCOR_003.sextupole + - SXD13_VCOR_003.vcorrector + - QCORR_110 + - QCORR_111 + - SXD13_003 + - SXF13_HCOR_006 + - SXF13_HCOR_006.sextupole + - SXF13_HCOR_006.hcorrector + - OCTF1_QCORROCT_88_QT_001 + - OCTF1_QCORROCT_88_QT_001.octupole + - OCTF1_QCORROCT_88_QT_001.quadrupole + - OCTF1_QCORROCT_88_QT_001.skewquad + - BPM_096 + - SXD1_VCOR_008 + - SXD1_VCOR_008.sextupole + - SXD1_VCOR_008.vcorrector + - QCORR_112 + - QCORR_113 + - SXD1_009 + - SXF1_HCOR_006 + - SXF1_HCOR_006.sextupole + - SXF1_HCOR_006.hcorrector + - OCTF1_QCORROCT_89_QT_001 + - OCTF1_QCORROCT_89_QT_001.octupole + - OCTF1_QCORROCT_89_QT_001.quadrupole + - OCTF1_QCORROCT_89_QT_001.skewquad + - BPM_097 + - SXD1_VCOR_009 + - SXD1_VCOR_009.sextupole + - SXD1_VCOR_009.vcorrector + - QCORR_114 + - QCORR_115 + - SXD12_003 + - SXF12_HCOR_003 + - SXF12_HCOR_003.sextupole + - SXF12_HCOR_003.hcorrector + - OCTF1_QCORROCT_90_QT_001 + - OCTF1_QCORROCT_90_QT_001.octupole + - OCTF1_QCORROCT_90_QT_001.quadrupole + - OCTF1_QCORROCT_90_QT_001.skewquad + - SXD12_VCOR_003 + - SXD12_VCOR_003.sextupole + - SXD12_VCOR_003.vcorrector + - BPM_098 + - SH6_COR_005 + - SH6_COR_005.sextupole + - SH6_COR_005.hcorrector + - SH6_COR_005.vcorrector + - QCORR_116 + - SH5_005 + - OH5_QCORROCT_91_001 + - OH5_QCORROCT_91_001.octupole + - OH5_QCORROCT_91_001.quadrupole + - BPM_099 + - SH4_COR_005 + - SH4_COR_005.sextupole + - SH4_COR_005.hcorrector + - SH4_COR_005.vcorrector + - OH4_QCORROCT_92_QT_001 + - OH4_QCORROCT_92_QT_001.octupole + - OH4_QCORROCT_92_QT_001.quadrupole + - OH4_QCORROCT_92_QT_001.skewquad +- type: pyaml.arrays.magnet + name: OH1_QCORROCT_83_QT + elements: + - OH1_QCORROCT_83_QT_001.octupole + - OH1_QCORROCT_83_QT_001.quadrupole + - OH1_QCORROCT_83_QT_001.skewquad +- type: pyaml.arrays.magnet + name: OH2_QCORROCT_84 + elements: + - OH2_QCORROCT_84_001.octupole + - OH2_QCORROCT_84_001.quadrupole +- type: pyaml.arrays.magnet + name: OCTF1_QCORROCT_85_QT + elements: + - OCTF1_QCORROCT_85_QT_001.octupole + - OCTF1_QCORROCT_85_QT_001.quadrupole + - OCTF1_QCORROCT_85_QT_001.skewquad +- type: pyaml.arrays.magnet + name: OCTF1_QCORROCT_86_QT + elements: + - OCTF1_QCORROCT_86_QT_001.octupole + - OCTF1_QCORROCT_86_QT_001.quadrupole + - OCTF1_QCORROCT_86_QT_001.skewquad +- type: pyaml.arrays.magnet + name: OCTF1_QCORROCT_87_QT + elements: + - OCTF1_QCORROCT_87_QT_001.octupole + - OCTF1_QCORROCT_87_QT_001.quadrupole + - OCTF1_QCORROCT_87_QT_001.skewquad +- type: pyaml.arrays.magnet + name: OCTF1_QCORROCT_88_QT + elements: + - OCTF1_QCORROCT_88_QT_001.octupole + - OCTF1_QCORROCT_88_QT_001.quadrupole + - OCTF1_QCORROCT_88_QT_001.skewquad +- type: pyaml.arrays.magnet + name: OCTF1_QCORROCT_89_QT + elements: + - OCTF1_QCORROCT_89_QT_001.octupole + - OCTF1_QCORROCT_89_QT_001.quadrupole + - OCTF1_QCORROCT_89_QT_001.skewquad +- type: pyaml.arrays.magnet + name: OCTF1_QCORROCT_90_QT + elements: + - OCTF1_QCORROCT_90_QT_001.octupole + - OCTF1_QCORROCT_90_QT_001.quadrupole + - OCTF1_QCORROCT_90_QT_001.skewquad +- type: pyaml.arrays.magnet + name: OH5_QCORROCT_91 + elements: + - OH5_QCORROCT_91_001.octupole + - OH5_QCORROCT_91_001.quadrupole +- type: pyaml.arrays.magnet + name: OH4_QCORROCT_92_QT + elements: + - OH4_QCORROCT_92_QT_001.octupole + - OH4_QCORROCT_92_QT_001.quadrupole + - OH4_QCORROCT_92_QT_001.skewquad +- type: pyaml.arrays.element + name: Cell12 + elements: + - BPM_100 + - BPM_101 + - OH4_QCORROCT_93_QT_001 + - OH4_QCORROCT_93_QT_001.octupole + - OH4_QCORROCT_93_QT_001.quadrupole + - OH4_QCORROCT_93_QT_001.skewquad + - SH4_COR_006 + - SH4_COR_006.sextupole + - SH4_COR_006.hcorrector + - SH4_COR_006.vcorrector + - BPM_102 + - OH5_QCORROCT_94_001 + - OH5_QCORROCT_94_001.octupole + - OH5_QCORROCT_94_001.quadrupole + - SH5_006 + - QCORR_117 + - SH6_COR_006 + - SH6_COR_006.sextupole + - SH6_COR_006.hcorrector + - SH6_COR_006.vcorrector + - SXD21_003 + - OCTF2_QCORROCT_95_QT_001 + - OCTF2_QCORROCT_95_QT_001.octupole + - OCTF2_QCORROCT_95_QT_001.quadrupole + - OCTF2_QCORROCT_95_QT_001.skewquad + - SXF21_HCOR_003 + - SXF21_HCOR_003.sextupole + - SXF21_HCOR_003.hcorrector + - BPM_103 + - SXD21_VCOR_003 + - SXD21_VCOR_003.sextupole + - SXD21_VCOR_003.vcorrector + - QCORR_118 + - QCORR_119 + - SXD2_003 + - OCTF2_QCORROCT_96_QT_001 + - OCTF2_QCORROCT_96_QT_001.octupole + - OCTF2_QCORROCT_96_QT_001.quadrupole + - OCTF2_QCORROCT_96_QT_001.skewquad + - SXF2_HCOR_003 + - SXF2_HCOR_003.sextupole + - SXF2_HCOR_003.hcorrector + - BPM_104 + - SXD2_VCOR_003 + - SXD2_VCOR_003.sextupole + - SXD2_VCOR_003.vcorrector + - QCORR_120 + - QCORR_121 + - SXD22_003 + - SXF22_HCOR_003 + - SXF22_HCOR_003.sextupole + - SXF22_HCOR_003.hcorrector + - OCTF2_QCORROCT_97_QT_001 + - OCTF2_QCORROCT_97_QT_001.octupole + - OCTF2_QCORROCT_97_QT_001.quadrupole + - OCTF2_QCORROCT_97_QT_001.skewquad + - SXD22_VCOR_003 + - SXD22_VCOR_003.sextupole + - SXD22_VCOR_003.vcorrector + - BPM_105 + - SH9_COR_009 + - SH9_COR_009.sextupole + - SH9_COR_009.hcorrector + - SH9_COR_009.vcorrector + - QCORR_122 + - SH8_009 + - QCORR_123 + - BPM_106 + - SH7_COR_009 + - SH7_COR_009.sextupole + - SH7_COR_009.hcorrector + - SH7_COR_009.vcorrector + - OH7_QCORROCT_98_QT_001 + - OH7_QCORROCT_98_QT_001.octupole + - OH7_QCORROCT_98_QT_001.quadrupole + - OH7_QCORROCT_98_QT_001.skewquad +- type: pyaml.arrays.magnet + name: OH4_QCORROCT_93_QT + elements: + - OH4_QCORROCT_93_QT_001.octupole + - OH4_QCORROCT_93_QT_001.quadrupole + - OH4_QCORROCT_93_QT_001.skewquad +- type: pyaml.arrays.magnet + name: OH5_QCORROCT_94 + elements: + - OH5_QCORROCT_94_001.octupole + - OH5_QCORROCT_94_001.quadrupole +- type: pyaml.arrays.magnet + name: OCTF2_QCORROCT_95_QT + elements: + - OCTF2_QCORROCT_95_QT_001.octupole + - OCTF2_QCORROCT_95_QT_001.quadrupole + - OCTF2_QCORROCT_95_QT_001.skewquad +- type: pyaml.arrays.magnet + name: OCTF2_QCORROCT_96_QT + elements: + - OCTF2_QCORROCT_96_QT_001.octupole + - OCTF2_QCORROCT_96_QT_001.quadrupole + - OCTF2_QCORROCT_96_QT_001.skewquad +- type: pyaml.arrays.magnet + name: OCTF2_QCORROCT_97_QT + elements: + - OCTF2_QCORROCT_97_QT_001.octupole + - OCTF2_QCORROCT_97_QT_001.quadrupole + - OCTF2_QCORROCT_97_QT_001.skewquad +- type: pyaml.arrays.magnet + name: OH7_QCORROCT_98_QT + elements: + - OH7_QCORROCT_98_QT_001.octupole + - OH7_QCORROCT_98_QT_001.quadrupole + - OH7_QCORROCT_98_QT_001.skewquad +- type: pyaml.arrays.element + name: Cell13 + elements: + - BPM_107 + - BPM_108 + - OH7_QCORROCT_99_QT_001 + - OH7_QCORROCT_99_QT_001.octupole + - OH7_QCORROCT_99_QT_001.quadrupole + - OH7_QCORROCT_99_QT_001.skewquad + - SH7_COR_010 + - SH7_COR_010.sextupole + - SH7_COR_010.hcorrector + - SH7_COR_010.vcorrector + - BPM_109 + - QCORR_124 + - SH8_010 + - QCORR_125 + - SH9_COR_010 + - SH9_COR_010.sextupole + - SH9_COR_010.hcorrector + - SH9_COR_010.vcorrector + - SXD31_003 + - OCTF3_QCORROCT_100_QT_001 + - OCTF3_QCORROCT_100_QT_001.octupole + - OCTF3_QCORROCT_100_QT_001.quadrupole + - OCTF3_QCORROCT_100_QT_001.skewquad + - SXF31_HCOR_003 + - SXF31_HCOR_003.sextupole + - SXF31_HCOR_003.hcorrector + - BPM_110 + - SXD31_VCOR_003 + - SXD31_VCOR_003.sextupole + - SXD31_VCOR_003.vcorrector + - QCORR_126 + - QCORR_127 + - SXD3_007 + - OCTF3_QCORROCT_101_QT_001 + - OCTF3_QCORROCT_101_QT_001.octupole + - OCTF3_QCORROCT_101_QT_001.quadrupole + - OCTF3_QCORROCT_101_QT_001.skewquad + - SXF3_HCOR_005 + - SXF3_HCOR_005.sextupole + - SXF3_HCOR_005.hcorrector + - BPM_111 + - SXD3_VCOR_007 + - SXD3_VCOR_007.sextupole + - SXD3_VCOR_007.vcorrector + - QCORR_128 + - QCORR_129 + - SXD3_008 + - OCTF3_QCORROCT_102_QT_001 + - OCTF3_QCORROCT_102_QT_001.octupole + - OCTF3_QCORROCT_102_QT_001.quadrupole + - OCTF3_QCORROCT_102_QT_001.skewquad + - SXF33_HCOR_005 + - SXF33_HCOR_005.sextupole + - SXF33_HCOR_005.hcorrector + - BPM_112 + - SXD33_VCOR_003 + - SXD33_VCOR_003.sextupole + - SXD33_VCOR_003.vcorrector + - QCORR_130 + - QCORR_131 + - SXD33_003 + - SXF33_HCOR_006 + - SXF33_HCOR_006.sextupole + - SXF33_HCOR_006.hcorrector + - OCTF3_QCORROCT_103_QT_001 + - OCTF3_QCORROCT_103_QT_001.octupole + - OCTF3_QCORROCT_103_QT_001.quadrupole + - OCTF3_QCORROCT_103_QT_001.skewquad + - BPM_113 + - SXD3_VCOR_008 + - SXD3_VCOR_008.sextupole + - SXD3_VCOR_008.vcorrector + - QCORR_132 + - QCORR_133 + - SXD3_009 + - SXF3_HCOR_006 + - SXF3_HCOR_006.sextupole + - SXF3_HCOR_006.hcorrector + - OCTF3_QCORROCT_104_QT_001 + - OCTF3_QCORROCT_104_QT_001.octupole + - OCTF3_QCORROCT_104_QT_001.quadrupole + - OCTF3_QCORROCT_104_QT_001.skewquad + - BPM_114 + - SXD3_VCOR_009 + - SXD3_VCOR_009.sextupole + - SXD3_VCOR_009.vcorrector + - QCORR_134 + - QCORR_135 + - SXD32_003 + - SXF32_HCOR_003 + - SXF32_HCOR_003.sextupole + - SXF32_HCOR_003.hcorrector + - OCTF3_QCORROCT_105_QT_001 + - OCTF3_QCORROCT_105_QT_001.octupole + - OCTF3_QCORROCT_105_QT_001.quadrupole + - OCTF3_QCORROCT_105_QT_001.skewquad + - SXD32_VCOR_003 + - SXD32_VCOR_003.sextupole + - SXD32_VCOR_003.vcorrector + - BPM_115 + - SH9_COR_011 + - SH9_COR_011.sextupole + - SH9_COR_011.hcorrector + - SH9_COR_011.vcorrector + - QCORR_136 + - SH8_011 + - QCORR_137 + - BPM_116 + - SH7_COR_011 + - SH7_COR_011.sextupole + - SH7_COR_011.hcorrector + - SH7_COR_011.vcorrector + - OH7_QCORROCT_106_QT_001 + - OH7_QCORROCT_106_QT_001.octupole + - OH7_QCORROCT_106_QT_001.quadrupole + - OH7_QCORROCT_106_QT_001.skewquad +- type: pyaml.arrays.magnet + name: OH7_QCORROCT_99_QT + elements: + - OH7_QCORROCT_99_QT_001.octupole + - OH7_QCORROCT_99_QT_001.quadrupole + - OH7_QCORROCT_99_QT_001.skewquad +- type: pyaml.arrays.magnet + name: OCTF3_QCORROCT_100_QT + elements: + - OCTF3_QCORROCT_100_QT_001.octupole + - OCTF3_QCORROCT_100_QT_001.quadrupole + - OCTF3_QCORROCT_100_QT_001.skewquad +- type: pyaml.arrays.magnet + name: OCTF3_QCORROCT_101_QT + elements: + - OCTF3_QCORROCT_101_QT_001.octupole + - OCTF3_QCORROCT_101_QT_001.quadrupole + - OCTF3_QCORROCT_101_QT_001.skewquad +- type: pyaml.arrays.magnet + name: OCTF3_QCORROCT_102_QT + elements: + - OCTF3_QCORROCT_102_QT_001.octupole + - OCTF3_QCORROCT_102_QT_001.quadrupole + - OCTF3_QCORROCT_102_QT_001.skewquad +- type: pyaml.arrays.magnet + name: OCTF3_QCORROCT_103_QT + elements: + - OCTF3_QCORROCT_103_QT_001.octupole + - OCTF3_QCORROCT_103_QT_001.quadrupole + - OCTF3_QCORROCT_103_QT_001.skewquad +- type: pyaml.arrays.magnet + name: OCTF3_QCORROCT_104_QT + elements: + - OCTF3_QCORROCT_104_QT_001.octupole + - OCTF3_QCORROCT_104_QT_001.quadrupole + - OCTF3_QCORROCT_104_QT_001.skewquad +- type: pyaml.arrays.magnet + name: OCTF3_QCORROCT_105_QT + elements: + - OCTF3_QCORROCT_105_QT_001.octupole + - OCTF3_QCORROCT_105_QT_001.quadrupole + - OCTF3_QCORROCT_105_QT_001.skewquad +- type: pyaml.arrays.magnet + name: OH7_QCORROCT_106_QT + elements: + - OH7_QCORROCT_106_QT_001.octupole + - OH7_QCORROCT_106_QT_001.quadrupole + - OH7_QCORROCT_106_QT_001.skewquad +- type: pyaml.arrays.element + name: Cell14 + elements: + - BPM_117 + - BPM_118 + - OH7_QCORROCT_107_QT_001 + - OH7_QCORROCT_107_QT_001.octupole + - OH7_QCORROCT_107_QT_001.quadrupole + - OH7_QCORROCT_107_QT_001.skewquad + - SH7_COR_012 + - SH7_COR_012.sextupole + - SH7_COR_012.hcorrector + - SH7_COR_012.vcorrector + - BPM_119 + - QCORR_138 + - SH8_012 + - QCORR_139 + - SH9_COR_012 + - SH9_COR_012.sextupole + - SH9_COR_012.hcorrector + - SH9_COR_012.vcorrector + - SXD41_003 + - OCTF4_QCORROCT_108_QT_001 + - OCTF4_QCORROCT_108_QT_001.octupole + - OCTF4_QCORROCT_108_QT_001.quadrupole + - OCTF4_QCORROCT_108_QT_001.skewquad + - SXF41_HCOR_003 + - SXF41_HCOR_003.sextupole + - SXF41_HCOR_003.hcorrector + - BPM_120 + - SXD41_VCOR_003 + - SXD41_VCOR_003.sextupole + - SXD41_VCOR_003.vcorrector + - QCORR_140 + - QCORR_141 + - SXD4_003 + - SXF4_HCOR_003 + - SXF4_HCOR_003.sextupole + - SXF4_HCOR_003.hcorrector + - OCTF4_QCORROCT_109_QT_001 + - OCTF4_QCORROCT_109_QT_001.octupole + - OCTF4_QCORROCT_109_QT_001.quadrupole + - OCTF4_QCORROCT_109_QT_001.skewquad + - BPM_121 + - SXD4_VCOR_003 + - SXD4_VCOR_003.sextupole + - SXD4_VCOR_003.vcorrector + - QCORR_142 + - QCORR_143 + - SXD42_003 + - SXF42_HCOR_003 + - SXF42_HCOR_003.sextupole + - SXF42_HCOR_003.hcorrector + - OCTF4_QCORROCT_110_QT_001 + - OCTF4_QCORROCT_110_QT_001.octupole + - OCTF4_QCORROCT_110_QT_001.quadrupole + - OCTF4_QCORROCT_110_QT_001.skewquad + - SXD42_VCOR_003 + - SXD42_VCOR_003.sextupole + - SXD42_VCOR_003.vcorrector + - BPM_122 + - SH12_COR_005 + - SH12_COR_005.sextupole + - SH12_COR_005.hcorrector + - SH12_COR_005.vcorrector + - QCORR_144 + - SH11_005 + - OH11_QCORROCT_111_001 + - OH11_QCORROCT_111_001.octupole + - OH11_QCORROCT_111_001.quadrupole + - BPM_123 + - SH10_COR_005 + - SH10_COR_005.sextupole + - SH10_COR_005.hcorrector + - SH10_COR_005.vcorrector + - OH10_QCORROCT_112_QT_001 + - OH10_QCORROCT_112_QT_001.octupole + - OH10_QCORROCT_112_QT_001.quadrupole + - OH10_QCORROCT_112_QT_001.skewquad +- type: pyaml.arrays.magnet + name: OH7_QCORROCT_107_QT + elements: + - OH7_QCORROCT_107_QT_001.octupole + - OH7_QCORROCT_107_QT_001.quadrupole + - OH7_QCORROCT_107_QT_001.skewquad +- type: pyaml.arrays.magnet + name: OCTF4_QCORROCT_108_QT + elements: + - OCTF4_QCORROCT_108_QT_001.octupole + - OCTF4_QCORROCT_108_QT_001.quadrupole + - OCTF4_QCORROCT_108_QT_001.skewquad +- type: pyaml.arrays.magnet + name: OCTF4_QCORROCT_109_QT + elements: + - OCTF4_QCORROCT_109_QT_001.octupole + - OCTF4_QCORROCT_109_QT_001.quadrupole + - OCTF4_QCORROCT_109_QT_001.skewquad +- type: pyaml.arrays.magnet + name: OCTF4_QCORROCT_110_QT + elements: + - OCTF4_QCORROCT_110_QT_001.octupole + - OCTF4_QCORROCT_110_QT_001.quadrupole + - OCTF4_QCORROCT_110_QT_001.skewquad +- type: pyaml.arrays.magnet + name: OH11_QCORROCT_111 + elements: + - OH11_QCORROCT_111_001.octupole + - OH11_QCORROCT_111_001.quadrupole +- type: pyaml.arrays.magnet + name: OH10_QCORROCT_112_QT + elements: + - OH10_QCORROCT_112_QT_001.octupole + - OH10_QCORROCT_112_QT_001.quadrupole + - OH10_QCORROCT_112_QT_001.skewquad +- type: pyaml.arrays.element + name: Cell15 + elements: + - BPM_124 + - BPM_125 + - OH10_QCORROCT_113_QT_001 + - OH10_QCORROCT_113_QT_001.octupole + - OH10_QCORROCT_113_QT_001.quadrupole + - OH10_QCORROCT_113_QT_001.skewquad + - SH10_COR_006 + - SH10_COR_006.sextupole + - SH10_COR_006.hcorrector + - SH10_COR_006.vcorrector + - BPM_126 + - OH11_QCORROCT_114_001 + - OH11_QCORROCT_114_001.octupole + - OH11_QCORROCT_114_001.quadrupole + - SH11_006 + - QCORR_145 + - SH12_COR_006 + - SH12_COR_006.sextupole + - SH12_COR_006.hcorrector + - SH12_COR_006.vcorrector + - SXD51_003 + - OCTF5_QCORROCT_115_QT_001 + - OCTF5_QCORROCT_115_QT_001.octupole + - OCTF5_QCORROCT_115_QT_001.quadrupole + - OCTF5_QCORROCT_115_QT_001.skewquad + - SXF51_HCOR_003 + - SXF51_HCOR_003.sextupole + - SXF51_HCOR_003.hcorrector + - BPM_127 + - SXD51_VCOR_003 + - SXD51_VCOR_003.sextupole + - SXD51_VCOR_003.vcorrector + - QCORR_146 + - QCORR_147 + - SXD5_007 + - OCTF5_QCORROCT_116_QT_001 + - OCTF5_QCORROCT_116_QT_001.octupole + - OCTF5_QCORROCT_116_QT_001.quadrupole + - OCTF5_QCORROCT_116_QT_001.skewquad + - SXF5_HCOR_005 + - SXF5_HCOR_005.sextupole + - SXF5_HCOR_005.hcorrector + - BPM_128 + - SXD5_VCOR_007 + - SXD5_VCOR_007.sextupole + - SXD5_VCOR_007.vcorrector + - QCORR_148 + - QCORR_149 + - SXD5_008 + - OCTF5_QCORROCT_117_QT_001 + - OCTF5_QCORROCT_117_QT_001.octupole + - OCTF5_QCORROCT_117_QT_001.quadrupole + - OCTF5_QCORROCT_117_QT_001.skewquad + - SXF53_HCOR_005 + - SXF53_HCOR_005.sextupole + - SXF53_HCOR_005.hcorrector + - BPM_129 + - SXD53_VCOR_003 + - SXD53_VCOR_003.sextupole + - SXD53_VCOR_003.vcorrector + - QCORR_150 + - QCORR_151 + - SXD53_003 + - SXF53_HCOR_006 + - SXF53_HCOR_006.sextupole + - SXF53_HCOR_006.hcorrector + - OCTF5_QCORROCT_118_QT_001 + - OCTF5_QCORROCT_118_QT_001.octupole + - OCTF5_QCORROCT_118_QT_001.quadrupole + - OCTF5_QCORROCT_118_QT_001.skewquad + - BPM_130 + - SXD5_VCOR_008 + - SXD5_VCOR_008.sextupole + - SXD5_VCOR_008.vcorrector + - QCORR_152 + - QCORR_153 + - SXD5_009 + - SXF5_HCOR_006 + - SXF5_HCOR_006.sextupole + - SXF5_HCOR_006.hcorrector + - OCTF5_QCORROCT_119_QT_001 + - OCTF5_QCORROCT_119_QT_001.octupole + - OCTF5_QCORROCT_119_QT_001.quadrupole + - OCTF5_QCORROCT_119_QT_001.skewquad + - BPM_131 + - SXD5_VCOR_009 + - SXD5_VCOR_009.sextupole + - SXD5_VCOR_009.vcorrector + - QCORR_154 + - QCORR_155 + - SXD52_003 + - SXF52_HCOR_003 + - SXF52_HCOR_003.sextupole + - SXF52_HCOR_003.hcorrector + - OCTF5_QCORROCT_120_QT_001 + - OCTF5_QCORROCT_120_QT_001.octupole + - OCTF5_QCORROCT_120_QT_001.quadrupole + - OCTF5_QCORROCT_120_QT_001.skewquad + - SXD52_VCOR_003 + - SXD52_VCOR_003.sextupole + - SXD52_VCOR_003.vcorrector + - BPM_132 + - QCORR_156 + - SH15_VCOR_003 + - SH15_VCOR_003.sextupole + - SH15_VCOR_003.vcorrector + - BPM_133 + - SH14_HCOR_003 + - SH14_HCOR_003.sextupole + - SH14_HCOR_003.hcorrector + - OH141_QCORROCT_121_001 + - OH141_QCORROCT_121_001.octupole + - OH141_QCORROCT_121_001.quadrupole + - SH13_COR_003 + - SH13_COR_003.sextupole + - SH13_COR_003.hcorrector + - SH13_COR_003.vcorrector + - OH131_QCORROCT_122_001 + - OH131_QCORROCT_122_001.octupole + - OH131_QCORROCT_122_001.quadrupole +- type: pyaml.arrays.magnet + name: OH10_QCORROCT_113_QT + elements: + - OH10_QCORROCT_113_QT_001.octupole + - OH10_QCORROCT_113_QT_001.quadrupole + - OH10_QCORROCT_113_QT_001.skewquad +- type: pyaml.arrays.magnet + name: OH11_QCORROCT_114 + elements: + - OH11_QCORROCT_114_001.octupole + - OH11_QCORROCT_114_001.quadrupole +- type: pyaml.arrays.magnet + name: OCTF5_QCORROCT_115_QT + elements: + - OCTF5_QCORROCT_115_QT_001.octupole + - OCTF5_QCORROCT_115_QT_001.quadrupole + - OCTF5_QCORROCT_115_QT_001.skewquad +- type: pyaml.arrays.magnet + name: OCTF5_QCORROCT_116_QT + elements: + - OCTF5_QCORROCT_116_QT_001.octupole + - OCTF5_QCORROCT_116_QT_001.quadrupole + - OCTF5_QCORROCT_116_QT_001.skewquad +- type: pyaml.arrays.magnet + name: OCTF5_QCORROCT_117_QT + elements: + - OCTF5_QCORROCT_117_QT_001.octupole + - OCTF5_QCORROCT_117_QT_001.quadrupole + - OCTF5_QCORROCT_117_QT_001.skewquad +- type: pyaml.arrays.magnet + name: OCTF5_QCORROCT_118_QT + elements: + - OCTF5_QCORROCT_118_QT_001.octupole + - OCTF5_QCORROCT_118_QT_001.quadrupole + - OCTF5_QCORROCT_118_QT_001.skewquad +- type: pyaml.arrays.magnet + name: OCTF5_QCORROCT_119_QT + elements: + - OCTF5_QCORROCT_119_QT_001.octupole + - OCTF5_QCORROCT_119_QT_001.quadrupole + - OCTF5_QCORROCT_119_QT_001.skewquad +- type: pyaml.arrays.magnet + name: OCTF5_QCORROCT_120_QT + elements: + - OCTF5_QCORROCT_120_QT_001.octupole + - OCTF5_QCORROCT_120_QT_001.quadrupole + - OCTF5_QCORROCT_120_QT_001.skewquad +- type: pyaml.arrays.magnet + name: OH141_QCORROCT_121 + elements: + - OH141_QCORROCT_121_001.octupole + - OH141_QCORROCT_121_001.quadrupole +- type: pyaml.arrays.magnet + name: OH131_QCORROCT_122 + elements: + - OH131_QCORROCT_122_001.octupole + - OH131_QCORROCT_122_001.quadrupole +- type: pyaml.arrays.element + name: Cell16 + elements: + - BPM_134 + - BPM_135 + - OH16_QCORROCT_123_001 + - OH16_QCORROCT_123_001.octupole + - OH16_QCORROCT_123_001.quadrupole + - SH16_COR_003 + - SH16_COR_003.sextupole + - SH16_COR_003.hcorrector + - SH16_COR_003.vcorrector + - SH16_COR_004 + - SH16_COR_004.sextupole + - SH16_COR_004.hcorrector + - SH16_COR_004.vcorrector + - OH16_QCORROCT_124_001 + - OH16_QCORROCT_124_001.octupole + - OH16_QCORROCT_124_001.quadrupole + - BPM_136 + - BPM_137 + - OH132_QCORROCT_125_001 + - OH132_QCORROCT_125_001.octupole + - OH132_QCORROCT_125_001.quadrupole + - SH13_COR_004 + - SH13_COR_004.sextupole + - SH13_COR_004.hcorrector + - SH13_COR_004.vcorrector + - OH142_QCORROCT_126_001 + - OH142_QCORROCT_126_001.octupole + - OH142_QCORROCT_126_001.quadrupole + - SH14_HCOR_004 + - SH14_HCOR_004.sextupole + - SH14_HCOR_004.hcorrector + - BPM_138 + - SH15_VCOR_004 + - SH15_VCOR_004.sextupole + - SH15_VCOR_004.vcorrector + - QCORR_157 + - SXD52_004 + - OCTF5_QCORROCT_127_QT_001 + - OCTF5_QCORROCT_127_QT_001.octupole + - OCTF5_QCORROCT_127_QT_001.quadrupole + - OCTF5_QCORROCT_127_QT_001.skewquad + - SXF52_HCOR_004 + - SXF52_HCOR_004.sextupole + - SXF52_HCOR_004.hcorrector + - BPM_139 + - SXD52_VCOR_004 + - SXD52_VCOR_004.sextupole + - SXD52_VCOR_004.vcorrector + - QCORR_158 + - QCORR_159 + - SXD5_010 + - OCTF5_QCORROCT_128_QT_001 + - OCTF5_QCORROCT_128_QT_001.octupole + - OCTF5_QCORROCT_128_QT_001.quadrupole + - OCTF5_QCORROCT_128_QT_001.skewquad + - SXF5_HCOR_007 + - SXF5_HCOR_007.sextupole + - SXF5_HCOR_007.hcorrector + - BPM_140 + - SXD5_VCOR_010 + - SXD5_VCOR_010.sextupole + - SXD5_VCOR_010.vcorrector + - QCORR_160 + - QCORR_161 + - SXD5_011 + - OCTF5_QCORROCT_129_QT_001 + - OCTF5_QCORROCT_129_QT_001.octupole + - OCTF5_QCORROCT_129_QT_001.quadrupole + - OCTF5_QCORROCT_129_QT_001.skewquad + - SXF53_HCOR_007 + - SXF53_HCOR_007.sextupole + - SXF53_HCOR_007.hcorrector + - BPM_141 + - SXD53_VCOR_004 + - SXD53_VCOR_004.sextupole + - SXD53_VCOR_004.vcorrector + - QCORR_162 + - QCORR_163 + - SXD53_004 + - SXF53_HCOR_008 + - SXF53_HCOR_008.sextupole + - SXF53_HCOR_008.hcorrector + - OCTF5_QCORROCT_130_QT_001 + - OCTF5_QCORROCT_130_QT_001.octupole + - OCTF5_QCORROCT_130_QT_001.quadrupole + - OCTF5_QCORROCT_130_QT_001.skewquad + - BPM_142 + - SXD5_VCOR_011 + - SXD5_VCOR_011.sextupole + - SXD5_VCOR_011.vcorrector + - QCORR_164 + - QCORR_165 + - SXD5_012 + - SXF5_HCOR_008 + - SXF5_HCOR_008.sextupole + - SXF5_HCOR_008.hcorrector + - OCTF5_QCORROCT_131_QT_001 + - OCTF5_QCORROCT_131_QT_001.octupole + - OCTF5_QCORROCT_131_QT_001.quadrupole + - OCTF5_QCORROCT_131_QT_001.skewquad + - BPM_143 + - SXD5_VCOR_012 + - SXD5_VCOR_012.sextupole + - SXD5_VCOR_012.vcorrector + - QCORR_166 + - QCORR_167 + - SXD51_004 + - SXF51_HCOR_004 + - SXF51_HCOR_004.sextupole + - SXF51_HCOR_004.hcorrector + - OCTF5_QCORROCT_132_QT_001 + - OCTF5_QCORROCT_132_QT_001.octupole + - OCTF5_QCORROCT_132_QT_001.quadrupole + - OCTF5_QCORROCT_132_QT_001.skewquad + - SXD51_VCOR_004 + - SXD51_VCOR_004.sextupole + - SXD51_VCOR_004.vcorrector + - BPM_144 + - SH12_COR_007 + - SH12_COR_007.sextupole + - SH12_COR_007.hcorrector + - SH12_COR_007.vcorrector + - QCORR_168 + - SH11_007 + - OH11_QCORROCT_133_001 + - OH11_QCORROCT_133_001.octupole + - OH11_QCORROCT_133_001.quadrupole + - BPM_145 + - SH10_COR_007 + - SH10_COR_007.sextupole + - SH10_COR_007.hcorrector + - SH10_COR_007.vcorrector + - OH10_QCORROCT_134_QT_001 + - OH10_QCORROCT_134_QT_001.octupole + - OH10_QCORROCT_134_QT_001.quadrupole + - OH10_QCORROCT_134_QT_001.skewquad +- type: pyaml.arrays.magnet + name: OH16_QCORROCT_123 + elements: + - OH16_QCORROCT_123_001.octupole + - OH16_QCORROCT_123_001.quadrupole +- type: pyaml.arrays.magnet + name: OH16_QCORROCT_124 + elements: + - OH16_QCORROCT_124_001.octupole + - OH16_QCORROCT_124_001.quadrupole +- type: pyaml.arrays.magnet + name: OH132_QCORROCT_125 + elements: + - OH132_QCORROCT_125_001.octupole + - OH132_QCORROCT_125_001.quadrupole +- type: pyaml.arrays.magnet + name: OH142_QCORROCT_126 + elements: + - OH142_QCORROCT_126_001.octupole + - OH142_QCORROCT_126_001.quadrupole +- type: pyaml.arrays.magnet + name: OCTF5_QCORROCT_127_QT + elements: + - OCTF5_QCORROCT_127_QT_001.octupole + - OCTF5_QCORROCT_127_QT_001.quadrupole + - OCTF5_QCORROCT_127_QT_001.skewquad +- type: pyaml.arrays.magnet + name: OCTF5_QCORROCT_128_QT + elements: + - OCTF5_QCORROCT_128_QT_001.octupole + - OCTF5_QCORROCT_128_QT_001.quadrupole + - OCTF5_QCORROCT_128_QT_001.skewquad +- type: pyaml.arrays.magnet + name: OCTF5_QCORROCT_129_QT + elements: + - OCTF5_QCORROCT_129_QT_001.octupole + - OCTF5_QCORROCT_129_QT_001.quadrupole + - OCTF5_QCORROCT_129_QT_001.skewquad +- type: pyaml.arrays.magnet + name: OCTF5_QCORROCT_130_QT + elements: + - OCTF5_QCORROCT_130_QT_001.octupole + - OCTF5_QCORROCT_130_QT_001.quadrupole + - OCTF5_QCORROCT_130_QT_001.skewquad +- type: pyaml.arrays.magnet + name: OCTF5_QCORROCT_131_QT + elements: + - OCTF5_QCORROCT_131_QT_001.octupole + - OCTF5_QCORROCT_131_QT_001.quadrupole + - OCTF5_QCORROCT_131_QT_001.skewquad +- type: pyaml.arrays.magnet + name: OCTF5_QCORROCT_132_QT + elements: + - OCTF5_QCORROCT_132_QT_001.octupole + - OCTF5_QCORROCT_132_QT_001.quadrupole + - OCTF5_QCORROCT_132_QT_001.skewquad +- type: pyaml.arrays.magnet + name: OH11_QCORROCT_133 + elements: + - OH11_QCORROCT_133_001.octupole + - OH11_QCORROCT_133_001.quadrupole +- type: pyaml.arrays.magnet + name: OH10_QCORROCT_134_QT + elements: + - OH10_QCORROCT_134_QT_001.octupole + - OH10_QCORROCT_134_QT_001.quadrupole + - OH10_QCORROCT_134_QT_001.skewquad +- type: pyaml.arrays.element + name: Cell17 + elements: + - BPM_146 + - BPM_147 + - OH10_QCORROCT_135_QT_001 + - OH10_QCORROCT_135_QT_001.octupole + - OH10_QCORROCT_135_QT_001.quadrupole + - OH10_QCORROCT_135_QT_001.skewquad + - SH10_COR_008 + - SH10_COR_008.sextupole + - SH10_COR_008.hcorrector + - SH10_COR_008.vcorrector + - BPM_148 + - OH11_QCORROCT_136_001 + - OH11_QCORROCT_136_001.octupole + - OH11_QCORROCT_136_001.quadrupole + - SH11_008 + - QCORR_169 + - SH12_COR_008 + - SH12_COR_008.sextupole + - SH12_COR_008.hcorrector + - SH12_COR_008.vcorrector + - SXD42_004 + - OCTF4_QCORROCT_137_QT_001 + - OCTF4_QCORROCT_137_QT_001.octupole + - OCTF4_QCORROCT_137_QT_001.quadrupole + - OCTF4_QCORROCT_137_QT_001.skewquad + - SXF42_HCOR_004 + - SXF42_HCOR_004.sextupole + - SXF42_HCOR_004.hcorrector + - BPM_149 + - SXD42_VCOR_004 + - SXD42_VCOR_004.sextupole + - SXD42_VCOR_004.vcorrector + - QCORR_170 + - QCORR_171 + - SXD4_004 + - OCTF4_QCORROCT_138_QT_001 + - OCTF4_QCORROCT_138_QT_001.octupole + - OCTF4_QCORROCT_138_QT_001.quadrupole + - OCTF4_QCORROCT_138_QT_001.skewquad + - SXF4_HCOR_004 + - SXF4_HCOR_004.sextupole + - SXF4_HCOR_004.hcorrector + - BPM_150 + - SXD4_VCOR_004 + - SXD4_VCOR_004.sextupole + - SXD4_VCOR_004.vcorrector + - QCORR_172 + - QCORR_173 + - SXD41_004 + - SXF41_HCOR_004 + - SXF41_HCOR_004.sextupole + - SXF41_HCOR_004.hcorrector + - OCTF4_QCORROCT_139_QT_001 + - OCTF4_QCORROCT_139_QT_001.octupole + - OCTF4_QCORROCT_139_QT_001.quadrupole + - OCTF4_QCORROCT_139_QT_001.skewquad + - SXD41_VCOR_004 + - SXD41_VCOR_004.sextupole + - SXD41_VCOR_004.vcorrector + - BPM_151 + - SH9_COR_013 + - SH9_COR_013.sextupole + - SH9_COR_013.hcorrector + - SH9_COR_013.vcorrector + - QCORR_174 + - SH8_013 + - QCORR_175 + - BPM_152 + - SH7_COR_013 + - SH7_COR_013.sextupole + - SH7_COR_013.hcorrector + - SH7_COR_013.vcorrector + - OH7_QCORROCT_140_QT_001 + - OH7_QCORROCT_140_QT_001.octupole + - OH7_QCORROCT_140_QT_001.quadrupole + - OH7_QCORROCT_140_QT_001.skewquad +- type: pyaml.arrays.magnet + name: OH10_QCORROCT_135_QT + elements: + - OH10_QCORROCT_135_QT_001.octupole + - OH10_QCORROCT_135_QT_001.quadrupole + - OH10_QCORROCT_135_QT_001.skewquad +- type: pyaml.arrays.magnet + name: OH11_QCORROCT_136 + elements: + - OH11_QCORROCT_136_001.octupole + - OH11_QCORROCT_136_001.quadrupole +- type: pyaml.arrays.magnet + name: OCTF4_QCORROCT_137_QT + elements: + - OCTF4_QCORROCT_137_QT_001.octupole + - OCTF4_QCORROCT_137_QT_001.quadrupole + - OCTF4_QCORROCT_137_QT_001.skewquad +- type: pyaml.arrays.magnet + name: OCTF4_QCORROCT_138_QT + elements: + - OCTF4_QCORROCT_138_QT_001.octupole + - OCTF4_QCORROCT_138_QT_001.quadrupole + - OCTF4_QCORROCT_138_QT_001.skewquad +- type: pyaml.arrays.magnet + name: OCTF4_QCORROCT_139_QT + elements: + - OCTF4_QCORROCT_139_QT_001.octupole + - OCTF4_QCORROCT_139_QT_001.quadrupole + - OCTF4_QCORROCT_139_QT_001.skewquad +- type: pyaml.arrays.magnet + name: OH7_QCORROCT_140_QT + elements: + - OH7_QCORROCT_140_QT_001.octupole + - OH7_QCORROCT_140_QT_001.quadrupole + - OH7_QCORROCT_140_QT_001.skewquad +- type: pyaml.arrays.element + name: Cell18 + elements: + - BPM_153 + - BPM_154 + - OH7_QCORROCT_141_QT_001 + - OH7_QCORROCT_141_QT_001.octupole + - OH7_QCORROCT_141_QT_001.quadrupole + - OH7_QCORROCT_141_QT_001.skewquad + - SH7_COR_014 + - SH7_COR_014.sextupole + - SH7_COR_014.hcorrector + - SH7_COR_014.vcorrector + - BPM_155 + - QCORR_176 + - SH8_014 + - QCORR_177 + - SH9_COR_014 + - SH9_COR_014.sextupole + - SH9_COR_014.hcorrector + - SH9_COR_014.vcorrector + - SXD32_004 + - OCTF3_QCORROCT_142_QT_001 + - OCTF3_QCORROCT_142_QT_001.octupole + - OCTF3_QCORROCT_142_QT_001.quadrupole + - OCTF3_QCORROCT_142_QT_001.skewquad + - SXF32_HCOR_004 + - SXF32_HCOR_004.sextupole + - SXF32_HCOR_004.hcorrector + - BPM_156 + - SXD32_VCOR_004 + - SXD32_VCOR_004.sextupole + - SXD32_VCOR_004.vcorrector + - QCORR_178 + - QCORR_179 + - SXD3_010 + - OCTF3_QCORROCT_143_QT_001 + - OCTF3_QCORROCT_143_QT_001.octupole + - OCTF3_QCORROCT_143_QT_001.quadrupole + - OCTF3_QCORROCT_143_QT_001.skewquad + - SXF3_HCOR_007 + - SXF3_HCOR_007.sextupole + - SXF3_HCOR_007.hcorrector + - BPM_157 + - SXD3_VCOR_010 + - SXD3_VCOR_010.sextupole + - SXD3_VCOR_010.vcorrector + - QCORR_180 + - QCORR_181 + - SXD3_011 + - OCTF3_QCORROCT_144_QT_001 + - OCTF3_QCORROCT_144_QT_001.octupole + - OCTF3_QCORROCT_144_QT_001.quadrupole + - OCTF3_QCORROCT_144_QT_001.skewquad + - SXF33_HCOR_007 + - SXF33_HCOR_007.sextupole + - SXF33_HCOR_007.hcorrector + - BPM_158 + - SXD33_VCOR_004 + - SXD33_VCOR_004.sextupole + - SXD33_VCOR_004.vcorrector + - QCORR_182 + - QCORR_183 + - SXD33_004 + - SXF33_HCOR_008 + - SXF33_HCOR_008.sextupole + - SXF33_HCOR_008.hcorrector + - OCTF3_QCORROCT_145_QT_001 + - OCTF3_QCORROCT_145_QT_001.octupole + - OCTF3_QCORROCT_145_QT_001.quadrupole + - OCTF3_QCORROCT_145_QT_001.skewquad + - BPM_159 + - SXD3_VCOR_011 + - SXD3_VCOR_011.sextupole + - SXD3_VCOR_011.vcorrector + - QCORR_184 + - QCORR_185 + - SXD3_012 + - SXF3_HCOR_008 + - SXF3_HCOR_008.sextupole + - SXF3_HCOR_008.hcorrector + - OCTF3_QCORROCT_146_QT_001 + - OCTF3_QCORROCT_146_QT_001.octupole + - OCTF3_QCORROCT_146_QT_001.quadrupole + - OCTF3_QCORROCT_146_QT_001.skewquad + - BPM_160 + - SXD3_VCOR_012 + - SXD3_VCOR_012.sextupole + - SXD3_VCOR_012.vcorrector + - QCORR_186 + - QCORR_187 + - SXD31_004 + - SXF31_HCOR_004 + - SXF31_HCOR_004.sextupole + - SXF31_HCOR_004.hcorrector + - OCTF3_QCORROCT_147_QT_001 + - OCTF3_QCORROCT_147_QT_001.octupole + - OCTF3_QCORROCT_147_QT_001.quadrupole + - OCTF3_QCORROCT_147_QT_001.skewquad + - SXD31_VCOR_004 + - SXD31_VCOR_004.sextupole + - SXD31_VCOR_004.vcorrector + - BPM_161 + - SH9_COR_015 + - SH9_COR_015.sextupole + - SH9_COR_015.hcorrector + - SH9_COR_015.vcorrector + - QCORR_188 + - SH8_015 + - QCORR_189 + - BPM_162 + - SH7_COR_015 + - SH7_COR_015.sextupole + - SH7_COR_015.hcorrector + - SH7_COR_015.vcorrector + - OH7_QCORROCT_148_QT_001 + - OH7_QCORROCT_148_QT_001.octupole + - OH7_QCORROCT_148_QT_001.quadrupole + - OH7_QCORROCT_148_QT_001.skewquad +- type: pyaml.arrays.magnet + name: OH7_QCORROCT_141_QT + elements: + - OH7_QCORROCT_141_QT_001.octupole + - OH7_QCORROCT_141_QT_001.quadrupole + - OH7_QCORROCT_141_QT_001.skewquad +- type: pyaml.arrays.magnet + name: OCTF3_QCORROCT_142_QT + elements: + - OCTF3_QCORROCT_142_QT_001.octupole + - OCTF3_QCORROCT_142_QT_001.quadrupole + - OCTF3_QCORROCT_142_QT_001.skewquad +- type: pyaml.arrays.magnet + name: OCTF3_QCORROCT_143_QT + elements: + - OCTF3_QCORROCT_143_QT_001.octupole + - OCTF3_QCORROCT_143_QT_001.quadrupole + - OCTF3_QCORROCT_143_QT_001.skewquad +- type: pyaml.arrays.magnet + name: OCTF3_QCORROCT_144_QT + elements: + - OCTF3_QCORROCT_144_QT_001.octupole + - OCTF3_QCORROCT_144_QT_001.quadrupole + - OCTF3_QCORROCT_144_QT_001.skewquad +- type: pyaml.arrays.magnet + name: OCTF3_QCORROCT_145_QT + elements: + - OCTF3_QCORROCT_145_QT_001.octupole + - OCTF3_QCORROCT_145_QT_001.quadrupole + - OCTF3_QCORROCT_145_QT_001.skewquad +- type: pyaml.arrays.magnet + name: OCTF3_QCORROCT_146_QT + elements: + - OCTF3_QCORROCT_146_QT_001.octupole + - OCTF3_QCORROCT_146_QT_001.quadrupole + - OCTF3_QCORROCT_146_QT_001.skewquad +- type: pyaml.arrays.magnet + name: OCTF3_QCORROCT_147_QT + elements: + - OCTF3_QCORROCT_147_QT_001.octupole + - OCTF3_QCORROCT_147_QT_001.quadrupole + - OCTF3_QCORROCT_147_QT_001.skewquad +- type: pyaml.arrays.magnet + name: OH7_QCORROCT_148_QT + elements: + - OH7_QCORROCT_148_QT_001.octupole + - OH7_QCORROCT_148_QT_001.quadrupole + - OH7_QCORROCT_148_QT_001.skewquad +- type: pyaml.arrays.element + name: Cell19 + elements: + - BPM_163 + - BPM_164 + - OH7_QCORROCT_149_QT_001 + - OH7_QCORROCT_149_QT_001.octupole + - OH7_QCORROCT_149_QT_001.quadrupole + - OH7_QCORROCT_149_QT_001.skewquad + - SH7_COR_016 + - SH7_COR_016.sextupole + - SH7_COR_016.hcorrector + - SH7_COR_016.vcorrector + - BPM_165 + - QCORR_190 + - SH8_016 + - QCORR_191 + - SH9_COR_016 + - SH9_COR_016.sextupole + - SH9_COR_016.hcorrector + - SH9_COR_016.vcorrector + - SXD22_004 + - OCTF2_QCORROCT_150_QT_001 + - OCTF2_QCORROCT_150_QT_001.octupole + - OCTF2_QCORROCT_150_QT_001.quadrupole + - OCTF2_QCORROCT_150_QT_001.skewquad + - SXF22_HCOR_004 + - SXF22_HCOR_004.sextupole + - SXF22_HCOR_004.hcorrector + - BPM_166 + - SXD22_VCOR_004 + - SXD22_VCOR_004.sextupole + - SXD22_VCOR_004.vcorrector + - QCORR_192 + - QCORR_193 + - SXD2_004 + - SXF2_HCOR_004 + - SXF2_HCOR_004.sextupole + - SXF2_HCOR_004.hcorrector + - OCTF2_QCORROCT_151_QT_001 + - OCTF2_QCORROCT_151_QT_001.octupole + - OCTF2_QCORROCT_151_QT_001.quadrupole + - OCTF2_QCORROCT_151_QT_001.skewquad + - BPM_167 + - SXD2_VCOR_004 + - SXD2_VCOR_004.sextupole + - SXD2_VCOR_004.vcorrector + - QCORR_194 + - QCORR_195 + - SXD21_004 + - SXF21_HCOR_004 + - SXF21_HCOR_004.sextupole + - SXF21_HCOR_004.hcorrector + - OCTF2_QCORROCT_152_QT_001 + - OCTF2_QCORROCT_152_QT_001.octupole + - OCTF2_QCORROCT_152_QT_001.quadrupole + - OCTF2_QCORROCT_152_QT_001.skewquad + - SXD21_VCOR_004 + - SXD21_VCOR_004.sextupole + - SXD21_VCOR_004.vcorrector + - BPM_168 + - SH6_COR_007 + - SH6_COR_007.sextupole + - SH6_COR_007.hcorrector + - SH6_COR_007.vcorrector + - QCORR_196 + - SH5_007 + - OH5_QCORROCT_153_001 + - OH5_QCORROCT_153_001.octupole + - OH5_QCORROCT_153_001.quadrupole + - BPM_169 + - SH4_COR_007 + - SH4_COR_007.sextupole + - SH4_COR_007.hcorrector + - SH4_COR_007.vcorrector + - OH4_QCORROCT_154_QT_001 + - OH4_QCORROCT_154_QT_001.octupole + - OH4_QCORROCT_154_QT_001.quadrupole + - OH4_QCORROCT_154_QT_001.skewquad +- type: pyaml.arrays.magnet + name: OH7_QCORROCT_149_QT + elements: + - OH7_QCORROCT_149_QT_001.octupole + - OH7_QCORROCT_149_QT_001.quadrupole + - OH7_QCORROCT_149_QT_001.skewquad +- type: pyaml.arrays.magnet + name: OCTF2_QCORROCT_150_QT + elements: + - OCTF2_QCORROCT_150_QT_001.octupole + - OCTF2_QCORROCT_150_QT_001.quadrupole + - OCTF2_QCORROCT_150_QT_001.skewquad +- type: pyaml.arrays.magnet + name: OCTF2_QCORROCT_151_QT + elements: + - OCTF2_QCORROCT_151_QT_001.octupole + - OCTF2_QCORROCT_151_QT_001.quadrupole + - OCTF2_QCORROCT_151_QT_001.skewquad +- type: pyaml.arrays.magnet + name: OCTF2_QCORROCT_152_QT + elements: + - OCTF2_QCORROCT_152_QT_001.octupole + - OCTF2_QCORROCT_152_QT_001.quadrupole + - OCTF2_QCORROCT_152_QT_001.skewquad +- type: pyaml.arrays.magnet + name: OH5_QCORROCT_153 + elements: + - OH5_QCORROCT_153_001.octupole + - OH5_QCORROCT_153_001.quadrupole +- type: pyaml.arrays.magnet + name: OH4_QCORROCT_154_QT + elements: + - OH4_QCORROCT_154_QT_001.octupole + - OH4_QCORROCT_154_QT_001.quadrupole + - OH4_QCORROCT_154_QT_001.skewquad +- type: pyaml.arrays.element + name: Cell20 + elements: + - BPM_170 + - BPM_171 + - OH4_QCORROCT_155_QT_001 + - OH4_QCORROCT_155_QT_001.octupole + - OH4_QCORROCT_155_QT_001.quadrupole + - OH4_QCORROCT_155_QT_001.skewquad + - SH4_COR_008 + - SH4_COR_008.sextupole + - SH4_COR_008.hcorrector + - SH4_COR_008.vcorrector + - BPM_172 + - OH5_QCORROCT_156_001 + - OH5_QCORROCT_156_001.octupole + - OH5_QCORROCT_156_001.quadrupole + - SH5_008 + - QCORR_197 + - SH6_COR_008 + - SH6_COR_008.sextupole + - SH6_COR_008.hcorrector + - SH6_COR_008.vcorrector + - SXD12_004 + - OCTF1_QCORROCT_157_QT_001 + - OCTF1_QCORROCT_157_QT_001.octupole + - OCTF1_QCORROCT_157_QT_001.quadrupole + - OCTF1_QCORROCT_157_QT_001.skewquad + - SXF12_HCOR_004 + - SXF12_HCOR_004.sextupole + - SXF12_HCOR_004.hcorrector + - BPM_173 + - SXD12_VCOR_004 + - SXD12_VCOR_004.sextupole + - SXD12_VCOR_004.vcorrector + - QCORR_198 + - QCORR_199 + - SXD1_010 + - OCTF1_QCORROCT_158_QT_001 + - OCTF1_QCORROCT_158_QT_001.octupole + - OCTF1_QCORROCT_158_QT_001.quadrupole + - OCTF1_QCORROCT_158_QT_001.skewquad + - SXF1_HCOR_007 + - SXF1_HCOR_007.sextupole + - SXF1_HCOR_007.hcorrector + - BPM_174 + - SXD1_VCOR_010 + - SXD1_VCOR_010.sextupole + - SXD1_VCOR_010.vcorrector + - QCORR_200 + - QCORR_201 + - SXD1_011 + - OCTF1_QCORROCT_159_QT_001 + - OCTF1_QCORROCT_159_QT_001.octupole + - OCTF1_QCORROCT_159_QT_001.quadrupole + - OCTF1_QCORROCT_159_QT_001.skewquad + - SXF13_HCOR_007 + - SXF13_HCOR_007.sextupole + - SXF13_HCOR_007.hcorrector + - BPM_175 + - SXD13_VCOR_004 + - SXD13_VCOR_004.sextupole + - SXD13_VCOR_004.vcorrector + - QCORR_202 + - QCORR_203 + - SXD13_004 + - SXF13_HCOR_008 + - SXF13_HCOR_008.sextupole + - SXF13_HCOR_008.hcorrector + - OCTF1_QCORROCT_160_QT_001 + - OCTF1_QCORROCT_160_QT_001.octupole + - OCTF1_QCORROCT_160_QT_001.quadrupole + - OCTF1_QCORROCT_160_QT_001.skewquad + - BPM_176 + - SXD1_VCOR_011 + - SXD1_VCOR_011.sextupole + - SXD1_VCOR_011.vcorrector + - QCORR_204 + - QCORR_205 + - SXD1_012 + - SXF1_HCOR_008 + - SXF1_HCOR_008.sextupole + - SXF1_HCOR_008.hcorrector + - OCTF1_QCORROCT_161_QT_001 + - OCTF1_QCORROCT_161_QT_001.octupole + - OCTF1_QCORROCT_161_QT_001.quadrupole + - OCTF1_QCORROCT_161_QT_001.skewquad + - BPM_177 + - SXD1_VCOR_012 + - SXD1_VCOR_012.sextupole + - SXD1_VCOR_012.vcorrector + - QCORR_206 + - QCORR_207 + - SXD11_004 + - SXF11_HCOR_004 + - SXF11_HCOR_004.sextupole + - SXF11_HCOR_004.hcorrector + - OCTF1_QCORROCT_162_QT_001 + - OCTF1_QCORROCT_162_QT_001.octupole + - OCTF1_QCORROCT_162_QT_001.quadrupole + - OCTF1_QCORROCT_162_QT_001.skewquad + - SXD11_VCOR_004 + - SXD11_VCOR_004.sextupole + - SXD11_VCOR_004.vcorrector + - BPM_178 + - QCORR_208 + - SH3_VCOR_004 + - SH3_VCOR_004.sextupole + - SH3_VCOR_004.vcorrector + - BPM_179 + - OH2_QCORROCT_163_001 + - OH2_QCORROCT_163_001.octupole + - OH2_QCORROCT_163_001.quadrupole + - SH2_HCOR_004 + - SH2_HCOR_004.sextupole + - SH2_HCOR_004.hcorrector + - OH1_QCORROCT_164_QT_001 + - OH1_QCORROCT_164_QT_001.octupole + - OH1_QCORROCT_164_QT_001.quadrupole + - OH1_QCORROCT_164_QT_001.skewquad + - SH1_COR_004 + - SH1_COR_004.sextupole + - SH1_COR_004.hcorrector + - SH1_COR_004.vcorrector +- type: pyaml.arrays.magnet + name: OH4_QCORROCT_155_QT + elements: + - OH4_QCORROCT_155_QT_001.octupole + - OH4_QCORROCT_155_QT_001.quadrupole + - OH4_QCORROCT_155_QT_001.skewquad +- type: pyaml.arrays.magnet + name: OH5_QCORROCT_156 + elements: + - OH5_QCORROCT_156_001.octupole + - OH5_QCORROCT_156_001.quadrupole +- type: pyaml.arrays.magnet + name: OCTF1_QCORROCT_157_QT + elements: + - OCTF1_QCORROCT_157_QT_001.octupole + - OCTF1_QCORROCT_157_QT_001.quadrupole + - OCTF1_QCORROCT_157_QT_001.skewquad +- type: pyaml.arrays.magnet + name: OCTF1_QCORROCT_158_QT + elements: + - OCTF1_QCORROCT_158_QT_001.octupole + - OCTF1_QCORROCT_158_QT_001.quadrupole + - OCTF1_QCORROCT_158_QT_001.skewquad +- type: pyaml.arrays.magnet + name: OCTF1_QCORROCT_159_QT + elements: + - OCTF1_QCORROCT_159_QT_001.octupole + - OCTF1_QCORROCT_159_QT_001.quadrupole + - OCTF1_QCORROCT_159_QT_001.skewquad +- type: pyaml.arrays.magnet + name: OCTF1_QCORROCT_160_QT + elements: + - OCTF1_QCORROCT_160_QT_001.octupole + - OCTF1_QCORROCT_160_QT_001.quadrupole + - OCTF1_QCORROCT_160_QT_001.skewquad +- type: pyaml.arrays.magnet + name: OCTF1_QCORROCT_161_QT + elements: + - OCTF1_QCORROCT_161_QT_001.octupole + - OCTF1_QCORROCT_161_QT_001.quadrupole + - OCTF1_QCORROCT_161_QT_001.skewquad +- type: pyaml.arrays.magnet + name: OCTF1_QCORROCT_162_QT + elements: + - OCTF1_QCORROCT_162_QT_001.octupole + - OCTF1_QCORROCT_162_QT_001.quadrupole + - OCTF1_QCORROCT_162_QT_001.skewquad +- type: pyaml.arrays.magnet + name: OH2_QCORROCT_163 + elements: + - OH2_QCORROCT_163_001.octupole + - OH2_QCORROCT_163_001.quadrupole +- type: pyaml.arrays.magnet + name: OH1_QCORROCT_164_QT + elements: + - OH1_QCORROCT_164_QT_001.octupole + - OH1_QCORROCT_164_QT_001.quadrupole + - OH1_QCORROCT_164_QT_001.skewquad +devices: +- type: pyaml.bpm.bpm + name: BPM_001 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN01-SD/DG-EPOS/BPM.02/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN01-SD/DG-EPOS/BPM.02/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: SH1_COR_001 + mapping: + - [B2, SH1_COR_001.sextupole] + - [B0, SH1_COR_001.hcorrector] + - [A0, SH1_COR_001.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0, A0] + units: [1/m**2, '1', '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN01-AR/EM-SX/SHF.01/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN01-AR/EM-COR/SHF.01-CDLH.01/strength + unit: '1' + - type: tango.pyaml.attribute + attribute: AN01-AR/EM-COR/SHF.01-CDLV.01/strength + unit: '1' +- type: pyaml.magnet.cfm_magnet + name: OH1_QCORROCT_1_QT_001 + mapping: + - [B3, OH1_QCORROCT_1_QT_001.octupole] + - [B1, OH1_QCORROCT_1_QT_001.quadrupole] + - [A1, OH1_QCORROCT_1_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN01-AR/EM-OCT/OH.01/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN01-AR/EM-COR/OH.01-CQLN.01/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN01-AR/EM-COR/OH.01-CQLT.01/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SH2_HCOR_001 + mapping: + - [B2, SH2_HCOR_001.sextupole] + - [B0, SH2_HCOR_001.hcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN01-AR/EM-SX/SHD.02/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN01-AR/EM-COR/SHD.02-CDLH.02/strength + unit: '1' +- type: pyaml.magnet.cfm_magnet + name: OH2_QCORROCT_2_001 + mapping: + - [B3, OH2_QCORROCT_2_001.octupole] + - [B1, OH2_QCORROCT_2_001.quadrupole] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1] + units: [1/m**3, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN01-AR/EM-OCT/OH.02/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN01-AR/EM-COR/OH.02-CQLN.02/strength + unit: 1/m**2 +- type: pyaml.bpm.bpm + name: BPM_002 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN01-AR/DG-EPOS/BPM.03/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN01-AR/DG-EPOS/BPM.03/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: SH3_VCOR_001 + mapping: + - [B2, SH3_VCOR_001.sextupole] + - [A0, SH3_VCOR_001.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, A0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN01-AR/EM-SX/SHD.03/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN01-AR/EM-COR/SHD.03-CDLV.02/strength + unit: '1' +- type: pyaml.magnet.quadrupole + name: QCORR_001 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN01-AR/EM-COR/CQLN.03/strength + unit: 1/m +- type: pyaml.magnet.sextupole + name: SXD11_001 + model: + type: pyaml.magnet.identity_model + unit: 1/m**2 + physics: + type: tango.pyaml.attribute + attribute: AN01-AR/EM-SX/SCD.01/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: OCTF1_QCORROCT_3_QT_001 + mapping: + - [B3, OCTF1_QCORROCT_3_QT_001.octupole] + - [B1, OCTF1_QCORROCT_3_QT_001.quadrupole] + - [A1, OCTF1_QCORROCT_3_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN01-AR/EM-OCT/OC.01/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN01-AR/EM-COR/OC.01-CQLN.04/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN01-AR/EM-COR/OC.01-CQLT.02/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SXF11_HCOR_001 + mapping: + - [B2, SXF11_HCOR_001.sextupole] + - [B0, SXF11_HCOR_001.hcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN01-AR/EM-SX/SCF.02/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN01-AR/EM-COR/SCF.02-CDLH.03/strength + unit: '1' +- type: pyaml.bpm.bpm + name: BPM_003 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN01-AR/DG-EPOS/BPM.04/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN01-AR/DG-EPOS/BPM.04/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: SXD11_VCOR_001 + mapping: + - [B2, SXD11_VCOR_001.sextupole] + - [A0, SXD11_VCOR_001.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, A0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN01-AR/EM-SX/SCD.03/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN01-AR/EM-COR/SCD.03-CDLV.03/strength + unit: '1' +- type: pyaml.magnet.quadrupole + name: QCORR_002 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN01-AR/EM-COR/CQLN.05/strength + unit: 1/m +- type: pyaml.magnet.quadrupole + name: QCORR_003 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN01-AR/EM-COR/CQLN.06/strength + unit: 1/m +- type: pyaml.magnet.sextupole + name: SXD1_001 + model: + type: pyaml.magnet.identity_model + unit: 1/m**2 + physics: + type: tango.pyaml.attribute + attribute: AN01-AR/EM-SX/SCD.04/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: OCTF1_QCORROCT_4_QT_001 + mapping: + - [B3, OCTF1_QCORROCT_4_QT_001.octupole] + - [B1, OCTF1_QCORROCT_4_QT_001.quadrupole] + - [A1, OCTF1_QCORROCT_4_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN01-AR/EM-OCT/OC.02/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN01-AR/EM-COR/OC.02-CQLN.07/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN01-AR/EM-COR/OC.02-CQLT.03/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SXF1_HCOR_001 + mapping: + - [B2, SXF1_HCOR_001.sextupole] + - [B0, SXF1_HCOR_001.hcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN01-AR/EM-SX/SCF.05/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN01-AR/EM-COR/SCF.05-CDLH.04/strength + unit: '1' +- type: pyaml.bpm.bpm + name: BPM_004 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN01-AR/DG-EPOS/BPM.05/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN01-AR/DG-EPOS/BPM.05/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: SXD1_VCOR_001 + mapping: + - [B2, SXD1_VCOR_001.sextupole] + - [A0, SXD1_VCOR_001.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, A0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN01-AR/EM-SX/SCD.06/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN01-AR/EM-COR/SCD.06-CDLV.04/strength + unit: '1' +- type: pyaml.magnet.quadrupole + name: QCORR_004 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN01-AR/EM-COR/CQLN.08/strength + unit: 1/m +- type: pyaml.magnet.quadrupole + name: QCORR_005 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN01-AR/EM-COR/CQLN.09/strength + unit: 1/m +- type: pyaml.magnet.sextupole + name: SXD1_002 + model: + type: pyaml.magnet.identity_model + unit: 1/m**2 + physics: + type: tango.pyaml.attribute + attribute: AN01-AR/EM-SX/SCD.07/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: OCTF1_QCORROCT_5_QT_001 + mapping: + - [B3, OCTF1_QCORROCT_5_QT_001.octupole] + - [B1, OCTF1_QCORROCT_5_QT_001.quadrupole] + - [A1, OCTF1_QCORROCT_5_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN01-AR/EM-OCT/OC.03/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN01-AR/EM-COR/OC.03-CQLN.10/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN01-AR/EM-COR/OC.03-CQLT.04/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SXF13_HCOR_001 + mapping: + - [B2, SXF13_HCOR_001.sextupole] + - [B0, SXF13_HCOR_001.hcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN01-AR/EM-SX/SCF.08/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN01-AR/EM-COR/SCF.08-CDLH.05/strength + unit: '1' +- type: pyaml.bpm.bpm + name: BPM_005 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN01-AR/DG-EPOS/BPM.06/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN01-AR/DG-EPOS/BPM.06/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: SXD13_VCOR_001 + mapping: + - [B2, SXD13_VCOR_001.sextupole] + - [A0, SXD13_VCOR_001.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, A0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN01-AR/EM-SX/SCD.09/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN01-AR/EM-COR/SCD.09-CDLV.05/strength + unit: '1' +- type: pyaml.magnet.quadrupole + name: QCORR_006 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN01-AR/EM-COR/CQLN.11/strength + unit: 1/m +- type: pyaml.magnet.quadrupole + name: QCORR_007 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN01-AR/EM-COR/CQLN.12/strength + unit: 1/m +- type: pyaml.magnet.sextupole + name: SXD13_001 + model: + type: pyaml.magnet.identity_model + unit: 1/m**2 + physics: + type: tango.pyaml.attribute + attribute: AN01-AR/EM-SX/SCD.10/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SXF13_HCOR_002 + mapping: + - [B2, SXF13_HCOR_002.sextupole] + - [B0, SXF13_HCOR_002.hcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN01-AR/EM-SX/SCF.11/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN01-AR/EM-COR/SCF.11-CDLH.06/strength + unit: '1' +- type: pyaml.magnet.cfm_magnet + name: OCTF1_QCORROCT_6_QT_001 + mapping: + - [B3, OCTF1_QCORROCT_6_QT_001.octupole] + - [B1, OCTF1_QCORROCT_6_QT_001.quadrupole] + - [A1, OCTF1_QCORROCT_6_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN01-AR/EM-OCT/OC.04/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN01-AR/EM-COR/OC.04-CQLN.13/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN01-AR/EM-COR/OC.04-CQLT.05/strength + unit: 1/m**2 +- type: pyaml.bpm.bpm + name: BPM_006 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN01-AR/DG-EPOS/BPM.07/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN01-AR/DG-EPOS/BPM.07/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: SXD1_VCOR_002 + mapping: + - [B2, SXD1_VCOR_002.sextupole] + - [A0, SXD1_VCOR_002.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, A0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN01-AR/EM-SX/SCD.12/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN01-AR/EM-COR/SCD.12-CDLV.06/strength + unit: '1' +- type: pyaml.magnet.quadrupole + name: QCORR_008 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN01-AR/EM-COR/CQLN.14/strength + unit: 1/m +- type: pyaml.magnet.quadrupole + name: QCORR_009 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN01-AR/EM-COR/CQLN.15/strength + unit: 1/m +- type: pyaml.magnet.sextupole + name: SXD1_003 + model: + type: pyaml.magnet.identity_model + unit: 1/m**2 + physics: + type: tango.pyaml.attribute + attribute: AN01-AR/EM-SX/SCD.13/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SXF1_HCOR_002 + mapping: + - [B2, SXF1_HCOR_002.sextupole] + - [B0, SXF1_HCOR_002.hcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN01-AR/EM-SX/SCF.14/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN01-AR/EM-COR/SCF.14-CDLH.07/strength + unit: '1' +- type: pyaml.magnet.cfm_magnet + name: OCTF1_QCORROCT_7_QT_001 + mapping: + - [B3, OCTF1_QCORROCT_7_QT_001.octupole] + - [B1, OCTF1_QCORROCT_7_QT_001.quadrupole] + - [A1, OCTF1_QCORROCT_7_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN01-AR/EM-OCT/OC.05/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN01-AR/EM-COR/OC.05-CQLN.16/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN01-AR/EM-COR/OC.05-CQLT.06/strength + unit: 1/m**2 +- type: pyaml.bpm.bpm + name: BPM_007 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN01-AR/DG-EPOS/BPM.08/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN01-AR/DG-EPOS/BPM.08/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: SXD1_VCOR_003 + mapping: + - [B2, SXD1_VCOR_003.sextupole] + - [A0, SXD1_VCOR_003.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, A0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN01-AR/EM-SX/SCD.15/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN01-AR/EM-COR/SCD.15-CDLV.07/strength + unit: '1' +- type: pyaml.magnet.quadrupole + name: QCORR_010 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN01-AR/EM-COR/CQLN.17/strength + unit: 1/m +- type: pyaml.magnet.quadrupole + name: QCORR_011 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN01-AR/EM-COR/CQLN.18/strength + unit: 1/m +- type: pyaml.magnet.sextupole + name: SXD12_001 + model: + type: pyaml.magnet.identity_model + unit: 1/m**2 + physics: + type: tango.pyaml.attribute + attribute: AN01-AR/EM-SX/SCD.16/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SXF12_HCOR_001 + mapping: + - [B2, SXF12_HCOR_001.sextupole] + - [B0, SXF12_HCOR_001.hcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN01-AR/EM-SX/SCF.17/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN01-AR/EM-COR/SCF.17-CDLH.08/strength + unit: '1' +- type: pyaml.magnet.cfm_magnet + name: OCTF1_QCORROCT_8_QT_001 + mapping: + - [B3, OCTF1_QCORROCT_8_QT_001.octupole] + - [B1, OCTF1_QCORROCT_8_QT_001.quadrupole] + - [A1, OCTF1_QCORROCT_8_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN01-AR/EM-OCT/OC.06/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN01-AR/EM-COR/OC.06-CQLN.19/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN01-AR/EM-COR/OC.06-CQLT.07/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SXD12_VCOR_001 + mapping: + - [B2, SXD12_VCOR_001.sextupole] + - [A0, SXD12_VCOR_001.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, A0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN01-AR/EM-SX/SCD.18/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN01-AR/EM-COR/SCD.18-CDLV.08/strength + unit: '1' +- type: pyaml.bpm.bpm + name: BPM_008 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN01-AR/DG-EPOS/BPM.09/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN01-AR/DG-EPOS/BPM.09/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: SH6_COR_001 + mapping: + - [B2, SH6_COR_001.sextupole] + - [B0, SH6_COR_001.hcorrector] + - [A0, SH6_COR_001.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0, A0] + units: [1/m**2, '1', '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN01-AR/EM-SX/SHD.04/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN01-AR/EM-COR/SHD.04-CDLH.09/strength + unit: '1' + - type: tango.pyaml.attribute + attribute: AN01-AR/EM-COR/SHD.04-CDLV.09/strength + unit: '1' +- type: pyaml.magnet.quadrupole + name: QCORR_012 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN01-AR/EM-COR/CQLN.20/strength + unit: 1/m +- type: pyaml.magnet.sextupole + name: SH5_001 + model: + type: pyaml.magnet.identity_model + unit: 1/m**2 + physics: + type: tango.pyaml.attribute + attribute: AN01-AR/EM-SX/SHD.05/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: OH5_QCORROCT_9_001 + mapping: + - [B3, OH5_QCORROCT_9_001.octupole] + - [B1, OH5_QCORROCT_9_001.quadrupole] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1] + units: [1/m**3, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN01-AR/EM-OCT/OH.03/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN01-AR/EM-COR/OH.03-CQLN.21/strength + unit: 1/m**2 +- type: pyaml.bpm.bpm + name: BPM_009 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN01-AR/DG-EPOS/BPM.10/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN01-AR/DG-EPOS/BPM.10/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: SH4_COR_001 + mapping: + - [B2, SH4_COR_001.sextupole] + - [B0, SH4_COR_001.hcorrector] + - [A0, SH4_COR_001.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0, A0] + units: [1/m**2, '1', '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN01-AR/EM-SX/SHF.06/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN01-AR/EM-COR/SHF.06-CDLH.10/strength + unit: '1' + - type: tango.pyaml.attribute + attribute: AN01-AR/EM-COR/SHF.06-CDLV.10/strength + unit: '1' +- type: pyaml.magnet.cfm_magnet + name: OH4_QCORROCT_10_QT_001 + mapping: + - [B3, OH4_QCORROCT_10_QT_001.octupole] + - [B1, OH4_QCORROCT_10_QT_001.quadrupole] + - [A1, OH4_QCORROCT_10_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN01-AR/EM-OCT/OH.04/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN01-AR/EM-COR/OH.04-CQLN.22/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN01-AR/EM-COR/OH.04-CQLT.08/strength + unit: 1/m**2 +- type: pyaml.bpm.bpm + name: BPM_010 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN02-SD/DG-EPOS/BPM.01/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN02-SD/DG-EPOS/BPM.01/y_pos + unit: mm +- type: pyaml.bpm.bpm + name: BPM_011 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN02-SD/DG-EPOS/BPM.02/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN02-SD/DG-EPOS/BPM.02/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: OH4_QCORROCT_11_QT_001 + mapping: + - [B3, OH4_QCORROCT_11_QT_001.octupole] + - [B1, OH4_QCORROCT_11_QT_001.quadrupole] + - [A1, OH4_QCORROCT_11_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN02-AR/EM-OCT/OH.01/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN02-AR/EM-COR/OH.01-CQLN.01/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN02-AR/EM-COR/OH.01-CQLT.01/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SH4_COR_002 + mapping: + - [B2, SH4_COR_002.sextupole] + - [B0, SH4_COR_002.hcorrector] + - [A0, SH4_COR_002.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0, A0] + units: [1/m**2, '1', '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN02-AR/EM-SX/SHF.01/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN02-AR/EM-COR/SHF.01-CDLH.01/strength + unit: '1' + - type: tango.pyaml.attribute + attribute: AN02-AR/EM-COR/SHF.01-CDLV.01/strength + unit: '1' +- type: pyaml.bpm.bpm + name: BPM_012 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN02-AR/DG-EPOS/BPM.03/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN02-AR/DG-EPOS/BPM.03/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: OH5_QCORROCT_12_001 + mapping: + - [B3, OH5_QCORROCT_12_001.octupole] + - [B1, OH5_QCORROCT_12_001.quadrupole] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1] + units: [1/m**3, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN02-AR/EM-OCT/OH.02/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN02-AR/EM-COR/OH.02-CQLN.02/strength + unit: 1/m**2 +- type: pyaml.magnet.sextupole + name: SH5_002 + model: + type: pyaml.magnet.identity_model + unit: 1/m**2 + physics: + type: tango.pyaml.attribute + attribute: AN02-AR/EM-SX/SHD.02/strength + unit: 1/m**2 +- type: pyaml.magnet.quadrupole + name: QCORR_013 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN02-AR/EM-COR/CQLN.03/strength + unit: 1/m +- type: pyaml.magnet.cfm_magnet + name: SH6_COR_002 + mapping: + - [B2, SH6_COR_002.sextupole] + - [B0, SH6_COR_002.hcorrector] + - [A0, SH6_COR_002.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0, A0] + units: [1/m**2, '1', '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN02-AR/EM-SX/SHD.03/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN02-AR/EM-COR/SHD.03-CDLH.02/strength + unit: '1' + - type: tango.pyaml.attribute + attribute: AN02-AR/EM-COR/SHD.03-CDLV.02/strength + unit: '1' +- type: pyaml.magnet.sextupole + name: SXD21_001 + model: + type: pyaml.magnet.identity_model + unit: 1/m**2 + physics: + type: tango.pyaml.attribute + attribute: AN02-AR/EM-SX/SCD.01/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: OCTF2_QCORROCT_13_QT_001 + mapping: + - [B3, OCTF2_QCORROCT_13_QT_001.octupole] + - [B1, OCTF2_QCORROCT_13_QT_001.quadrupole] + - [A1, OCTF2_QCORROCT_13_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN02-AR/EM-OCT/OC.01/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN02-AR/EM-COR/OC.01-CQLN.04/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN02-AR/EM-COR/OC.01-CQLT.02/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SXF21_HCOR_001 + mapping: + - [B2, SXF21_HCOR_001.sextupole] + - [B0, SXF21_HCOR_001.hcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN02-AR/EM-SX/SCF.02/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN02-AR/EM-COR/SCF.02-CDLH.03/strength + unit: '1' +- type: pyaml.bpm.bpm + name: BPM_013 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN02-AR/DG-EPOS/BPM.04/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN02-AR/DG-EPOS/BPM.04/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: SXD21_VCOR_001 + mapping: + - [B2, SXD21_VCOR_001.sextupole] + - [A0, SXD21_VCOR_001.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, A0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN02-AR/EM-SX/SCD.03/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN02-AR/EM-COR/SCD.03-CDLV.03/strength + unit: '1' +- type: pyaml.magnet.quadrupole + name: QCORR_014 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN02-AR/EM-COR/CQLN.05/strength + unit: 1/m +- type: pyaml.magnet.quadrupole + name: QCORR_015 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN02-AR/EM-COR/CQLN.06/strength + unit: 1/m +- type: pyaml.magnet.sextupole + name: SXD2_001 + model: + type: pyaml.magnet.identity_model + unit: 1/m**2 + physics: + type: tango.pyaml.attribute + attribute: AN02-AR/EM-SX/SCD.04/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: OCTF2_QCORROCT_14_QT_001 + mapping: + - [B3, OCTF2_QCORROCT_14_QT_001.octupole] + - [B1, OCTF2_QCORROCT_14_QT_001.quadrupole] + - [A1, OCTF2_QCORROCT_14_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN02-AR/EM-OCT/OC.02/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN02-AR/EM-COR/OC.02-CQLN.07/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN02-AR/EM-COR/OC.02-CQLT.03/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SXF2_HCOR_001 + mapping: + - [B2, SXF2_HCOR_001.sextupole] + - [B0, SXF2_HCOR_001.hcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN02-AR/EM-SX/SCF.05/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN02-AR/EM-COR/SCF.05-CDLH.04/strength + unit: '1' +- type: pyaml.bpm.bpm + name: BPM_014 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN02-AR/DG-EPOS/BPM.05/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN02-AR/DG-EPOS/BPM.05/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: SXD2_VCOR_001 + mapping: + - [B2, SXD2_VCOR_001.sextupole] + - [A0, SXD2_VCOR_001.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, A0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN02-AR/EM-SX/SCD.06/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN02-AR/EM-COR/SCD.06-CDLV.04/strength + unit: '1' +- type: pyaml.magnet.quadrupole + name: QCORR_016 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN02-AR/EM-COR/CQLN.08/strength + unit: 1/m +- type: pyaml.magnet.quadrupole + name: QCORR_017 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN02-AR/EM-COR/CQLN.09/strength + unit: 1/m +- type: pyaml.magnet.sextupole + name: SXD22_001 + model: + type: pyaml.magnet.identity_model + unit: 1/m**2 + physics: + type: tango.pyaml.attribute + attribute: AN02-AR/EM-SX/SCD.07/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SXF22_HCOR_001 + mapping: + - [B2, SXF22_HCOR_001.sextupole] + - [B0, SXF22_HCOR_001.hcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN02-AR/EM-SX/SCF.08/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN02-AR/EM-COR/SCF.08-CDLH.05/strength + unit: '1' +- type: pyaml.magnet.cfm_magnet + name: OCTF2_QCORROCT_15_QT_001 + mapping: + - [B3, OCTF2_QCORROCT_15_QT_001.octupole] + - [B1, OCTF2_QCORROCT_15_QT_001.quadrupole] + - [A1, OCTF2_QCORROCT_15_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN02-AR/EM-OCT/OC.03/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN02-AR/EM-COR/OC.03-CQLN.10/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN02-AR/EM-COR/OC.03-CQLT.04/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SXD22_VCOR_001 + mapping: + - [B2, SXD22_VCOR_001.sextupole] + - [A0, SXD22_VCOR_001.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, A0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN02-AR/EM-SX/SCD.09/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN02-AR/EM-COR/SCD.09-CDLV.05/strength + unit: '1' +- type: pyaml.bpm.bpm + name: BPM_015 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN02-AR/DG-EPOS/BPM.06/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN02-AR/DG-EPOS/BPM.06/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: SH9_COR_001 + mapping: + - [B2, SH9_COR_001.sextupole] + - [B0, SH9_COR_001.hcorrector] + - [A0, SH9_COR_001.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0, A0] + units: [1/m**2, '1', '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN02-AR/EM-SX/SHD.04/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN02-AR/EM-COR/SHD.04-CDLH.06/strength + unit: '1' + - type: tango.pyaml.attribute + attribute: AN02-AR/EM-COR/SHD.04-CDLV.06/strength + unit: '1' +- type: pyaml.magnet.quadrupole + name: QCORR_018 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN02-AR/EM-COR/CQLN.11/strength + unit: 1/m +- type: pyaml.magnet.sextupole + name: SH8_001 + model: + type: pyaml.magnet.identity_model + unit: 1/m**2 + physics: + type: tango.pyaml.attribute + attribute: AN02-AR/EM-SX/SHD.05/strength + unit: 1/m**2 +- type: pyaml.magnet.quadrupole + name: QCORR_019 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN02-AR/EM-COR/CQLN.12/strength + unit: 1/m +- type: pyaml.bpm.bpm + name: BPM_016 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN02-AR/DG-EPOS/BPM.07/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN02-AR/DG-EPOS/BPM.07/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: SH7_COR_001 + mapping: + - [B2, SH7_COR_001.sextupole] + - [B0, SH7_COR_001.hcorrector] + - [A0, SH7_COR_001.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0, A0] + units: [1/m**2, '1', '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN02-AR/EM-SX/SHF.06/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN02-AR/EM-COR/SHF.06-CDLH.07/strength + unit: '1' + - type: tango.pyaml.attribute + attribute: AN02-AR/EM-COR/SHF.06-CDLV.07/strength + unit: '1' +- type: pyaml.magnet.cfm_magnet + name: OH7_QCORROCT_16_QT_001 + mapping: + - [B3, OH7_QCORROCT_16_QT_001.octupole] + - [B1, OH7_QCORROCT_16_QT_001.quadrupole] + - [A1, OH7_QCORROCT_16_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN02-AR/EM-OCT/OH.03/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN02-AR/EM-COR/OH.03-CQLN.13/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN02-AR/EM-COR/OH.03-CQLT.05/strength + unit: 1/m**2 +- type: pyaml.bpm.bpm + name: BPM_017 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN03-SD/DG-EPOS/BPM.01/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN03-SD/DG-EPOS/BPM.01/y_pos + unit: mm +- type: pyaml.bpm.bpm + name: BPM_018 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN03-SD/DG-EPOS/BPM.02/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN03-SD/DG-EPOS/BPM.02/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: OH7_QCORROCT_17_QT_001 + mapping: + - [B3, OH7_QCORROCT_17_QT_001.octupole] + - [B1, OH7_QCORROCT_17_QT_001.quadrupole] + - [A1, OH7_QCORROCT_17_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN03-AR/EM-OCT/OH.01/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN03-AR/EM-COR/OH.01-CQLN.01/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN03-AR/EM-COR/OH.01-CQLT.01/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SH7_COR_002 + mapping: + - [B2, SH7_COR_002.sextupole] + - [B0, SH7_COR_002.hcorrector] + - [A0, SH7_COR_002.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0, A0] + units: [1/m**2, '1', '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN03-AR/EM-SX/SHF.01/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN03-AR/EM-COR/SHF.01-CDLH.01/strength + unit: '1' + - type: tango.pyaml.attribute + attribute: AN03-AR/EM-COR/SHF.01-CDLV.01/strength + unit: '1' +- type: pyaml.bpm.bpm + name: BPM_019 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN03-AR/DG-EPOS/BPM.03/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN03-AR/DG-EPOS/BPM.03/y_pos + unit: mm +- type: pyaml.magnet.quadrupole + name: QCORR_020 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN03-AR/EM-COR/CQLN.02/strength + unit: 1/m +- type: pyaml.magnet.sextupole + name: SH8_002 + model: + type: pyaml.magnet.identity_model + unit: 1/m**2 + physics: + type: tango.pyaml.attribute + attribute: AN03-AR/EM-SX/SHD.02/strength + unit: 1/m**2 +- type: pyaml.magnet.quadrupole + name: QCORR_021 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN03-AR/EM-COR/CQLN.03/strength + unit: 1/m +- type: pyaml.magnet.cfm_magnet + name: SH9_COR_002 + mapping: + - [B2, SH9_COR_002.sextupole] + - [B0, SH9_COR_002.hcorrector] + - [A0, SH9_COR_002.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0, A0] + units: [1/m**2, '1', '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN03-AR/EM-SX/SHD.03/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN03-AR/EM-COR/SHD.03-CDLH.02/strength + unit: '1' + - type: tango.pyaml.attribute + attribute: AN03-AR/EM-COR/SHD.03-CDLV.02/strength + unit: '1' +- type: pyaml.magnet.sextupole + name: SXD31_001 + model: + type: pyaml.magnet.identity_model + unit: 1/m**2 + physics: + type: tango.pyaml.attribute + attribute: AN03-AR/EM-SX/SCD.01/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: OCTF3_QCORROCT_18_QT_001 + mapping: + - [B3, OCTF3_QCORROCT_18_QT_001.octupole] + - [B1, OCTF3_QCORROCT_18_QT_001.quadrupole] + - [A1, OCTF3_QCORROCT_18_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN03-AR/EM-OCT/OC.01/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN03-AR/EM-COR/OC.01-CQLN.04/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN03-AR/EM-COR/OC.01-CQLT.02/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SXF31_HCOR_001 + mapping: + - [B2, SXF31_HCOR_001.sextupole] + - [B0, SXF31_HCOR_001.hcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN03-AR/EM-SX/SCF.02/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN03-AR/EM-COR/SCF.02-CDLH.03/strength + unit: '1' +- type: pyaml.bpm.bpm + name: BPM_020 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN03-AR/DG-EPOS/BPM.04/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN03-AR/DG-EPOS/BPM.04/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: SXD31_VCOR_001 + mapping: + - [B2, SXD31_VCOR_001.sextupole] + - [A0, SXD31_VCOR_001.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, A0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN03-AR/EM-SX/SCD.03/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN03-AR/EM-COR/SCD.03-CDLV.03/strength + unit: '1' +- type: pyaml.magnet.quadrupole + name: QCORR_022 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN03-AR/EM-COR/CQLN.05/strength + unit: 1/m +- type: pyaml.magnet.quadrupole + name: QCORR_023 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN03-AR/EM-COR/CQLN.06/strength + unit: 1/m +- type: pyaml.magnet.sextupole + name: SXD3_001 + model: + type: pyaml.magnet.identity_model + unit: 1/m**2 + physics: + type: tango.pyaml.attribute + attribute: AN03-AR/EM-SX/SCD.04/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: OCTF3_QCORROCT_19_QT_001 + mapping: + - [B3, OCTF3_QCORROCT_19_QT_001.octupole] + - [B1, OCTF3_QCORROCT_19_QT_001.quadrupole] + - [A1, OCTF3_QCORROCT_19_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN03-AR/EM-OCT/OC.02/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN03-AR/EM-COR/OC.02-CQLN.07/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN03-AR/EM-COR/OC.02-CQLT.03/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SXF3_HCOR_001 + mapping: + - [B2, SXF3_HCOR_001.sextupole] + - [B0, SXF3_HCOR_001.hcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN03-AR/EM-SX/SCF.05/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN03-AR/EM-COR/SCF.05-CDLH.04/strength + unit: '1' +- type: pyaml.bpm.bpm + name: BPM_021 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN03-AR/DG-EPOS/BPM.05/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN03-AR/DG-EPOS/BPM.05/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: SXD3_VCOR_001 + mapping: + - [B2, SXD3_VCOR_001.sextupole] + - [A0, SXD3_VCOR_001.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, A0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN03-AR/EM-SX/SCD.06/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN03-AR/EM-COR/SCD.06-CDLV.04/strength + unit: '1' +- type: pyaml.magnet.quadrupole + name: QCORR_024 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN03-AR/EM-COR/CQLN.08/strength + unit: 1/m +- type: pyaml.magnet.quadrupole + name: QCORR_025 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN03-AR/EM-COR/CQLN.09/strength + unit: 1/m +- type: pyaml.magnet.sextupole + name: SXD3_002 + model: + type: pyaml.magnet.identity_model + unit: 1/m**2 + physics: + type: tango.pyaml.attribute + attribute: AN03-AR/EM-SX/SCD.07/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: OCTF3_QCORROCT_20_QT_001 + mapping: + - [B3, OCTF3_QCORROCT_20_QT_001.octupole] + - [B1, OCTF3_QCORROCT_20_QT_001.quadrupole] + - [A1, OCTF3_QCORROCT_20_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN03-AR/EM-OCT/OC.03/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN03-AR/EM-COR/OC.03-CQLN.10/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN03-AR/EM-COR/OC.03-CQLT.04/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SXF33_HCOR_001 + mapping: + - [B2, SXF33_HCOR_001.sextupole] + - [B0, SXF33_HCOR_001.hcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN03-AR/EM-SX/SCF.08/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN03-AR/EM-COR/SCF.08-CDLH.05/strength + unit: '1' +- type: pyaml.bpm.bpm + name: BPM_022 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN03-AR/DG-EPOS/BPM.06/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN03-AR/DG-EPOS/BPM.06/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: SXD33_VCOR_001 + mapping: + - [B2, SXD33_VCOR_001.sextupole] + - [A0, SXD33_VCOR_001.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, A0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN03-AR/EM-SX/SCD.09/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN03-AR/EM-COR/SCD.09-CDLV.05/strength + unit: '1' +- type: pyaml.magnet.quadrupole + name: QCORR_026 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN03-AR/EM-COR/CQLN.11/strength + unit: 1/m +- type: pyaml.magnet.quadrupole + name: QCORR_027 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN03-AR/EM-COR/CQLN.12/strength + unit: 1/m +- type: pyaml.magnet.sextupole + name: SXD33_001 + model: + type: pyaml.magnet.identity_model + unit: 1/m**2 + physics: + type: tango.pyaml.attribute + attribute: AN03-AR/EM-SX/SCD.10/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SXF33_HCOR_002 + mapping: + - [B2, SXF33_HCOR_002.sextupole] + - [B0, SXF33_HCOR_002.hcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN03-AR/EM-SX/SCF.11/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN03-AR/EM-COR/SCF.11-CDLH.06/strength + unit: '1' +- type: pyaml.magnet.cfm_magnet + name: OCTF3_QCORROCT_21_QT_001 + mapping: + - [B3, OCTF3_QCORROCT_21_QT_001.octupole] + - [B1, OCTF3_QCORROCT_21_QT_001.quadrupole] + - [A1, OCTF3_QCORROCT_21_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN03-AR/EM-OCT/OC.04/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN03-AR/EM-COR/OC.04-CQLN.13/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN03-AR/EM-COR/OC.04-CQLT.05/strength + unit: 1/m**2 +- type: pyaml.bpm.bpm + name: BPM_023 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN03-AR/DG-EPOS/BPM.07/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN03-AR/DG-EPOS/BPM.07/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: SXD3_VCOR_002 + mapping: + - [B2, SXD3_VCOR_002.sextupole] + - [A0, SXD3_VCOR_002.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, A0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN03-AR/EM-SX/SCD.12/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN03-AR/EM-COR/SCD.12-CDLV.06/strength + unit: '1' +- type: pyaml.magnet.quadrupole + name: QCORR_028 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN03-AR/EM-COR/CQLN.14/strength + unit: 1/m +- type: pyaml.magnet.quadrupole + name: QCORR_029 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN03-AR/EM-COR/CQLN.15/strength + unit: 1/m +- type: pyaml.magnet.sextupole + name: SXD3_003 + model: + type: pyaml.magnet.identity_model + unit: 1/m**2 + physics: + type: tango.pyaml.attribute + attribute: AN03-AR/EM-SX/SCD.13/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SXF3_HCOR_002 + mapping: + - [B2, SXF3_HCOR_002.sextupole] + - [B0, SXF3_HCOR_002.hcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN03-AR/EM-SX/SCF.14/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN03-AR/EM-COR/SCF.14-CDLH.07/strength + unit: '1' +- type: pyaml.magnet.cfm_magnet + name: OCTF3_QCORROCT_22_QT_001 + mapping: + - [B3, OCTF3_QCORROCT_22_QT_001.octupole] + - [B1, OCTF3_QCORROCT_22_QT_001.quadrupole] + - [A1, OCTF3_QCORROCT_22_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN03-AR/EM-OCT/OC.05/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN03-AR/EM-COR/OC.05-CQLN.16/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN03-AR/EM-COR/OC.05-CQLT.06/strength + unit: 1/m**2 +- type: pyaml.bpm.bpm + name: BPM_024 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN03-AR/DG-EPOS/BPM.08/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN03-AR/DG-EPOS/BPM.08/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: SXD3_VCOR_003 + mapping: + - [B2, SXD3_VCOR_003.sextupole] + - [A0, SXD3_VCOR_003.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, A0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN03-AR/EM-SX/SCD.15/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN03-AR/EM-COR/SCD.15-CDLV.07/strength + unit: '1' +- type: pyaml.magnet.quadrupole + name: QCORR_030 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN03-AR/EM-COR/CQLN.17/strength + unit: 1/m +- type: pyaml.magnet.quadrupole + name: QCORR_031 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN03-AR/EM-COR/CQLN.18/strength + unit: 1/m +- type: pyaml.magnet.sextupole + name: SXD32_001 + model: + type: pyaml.magnet.identity_model + unit: 1/m**2 + physics: + type: tango.pyaml.attribute + attribute: AN03-AR/EM-SX/SCD.16/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SXF32_HCOR_001 + mapping: + - [B2, SXF32_HCOR_001.sextupole] + - [B0, SXF32_HCOR_001.hcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN03-AR/EM-SX/SCF.17/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN03-AR/EM-COR/SCF.17-CDLH.08/strength + unit: '1' +- type: pyaml.magnet.cfm_magnet + name: OCTF3_QCORROCT_23_QT_001 + mapping: + - [B3, OCTF3_QCORROCT_23_QT_001.octupole] + - [B1, OCTF3_QCORROCT_23_QT_001.quadrupole] + - [A1, OCTF3_QCORROCT_23_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN03-AR/EM-OCT/OC.06/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN03-AR/EM-COR/OC.06-CQLN.19/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN03-AR/EM-COR/OC.06-CQLT.07/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SXD32_VCOR_001 + mapping: + - [B2, SXD32_VCOR_001.sextupole] + - [A0, SXD32_VCOR_001.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, A0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN03-AR/EM-SX/SCD.18/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN03-AR/EM-COR/SCD.18-CDLV.08/strength + unit: '1' +- type: pyaml.bpm.bpm + name: BPM_025 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN03-AR/DG-EPOS/BPM.09/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN03-AR/DG-EPOS/BPM.09/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: SH9_COR_003 + mapping: + - [B2, SH9_COR_003.sextupole] + - [B0, SH9_COR_003.hcorrector] + - [A0, SH9_COR_003.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0, A0] + units: [1/m**2, '1', '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN03-AR/EM-SX/SHD.04/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN03-AR/EM-COR/SHD.04-CDLH.09/strength + unit: '1' + - type: tango.pyaml.attribute + attribute: AN03-AR/EM-COR/SHD.04-CDLV.09/strength + unit: '1' +- type: pyaml.magnet.quadrupole + name: QCORR_032 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN03-AR/EM-COR/CQLN.20/strength + unit: 1/m +- type: pyaml.magnet.sextupole + name: SH8_003 + model: + type: pyaml.magnet.identity_model + unit: 1/m**2 + physics: + type: tango.pyaml.attribute + attribute: AN03-AR/EM-SX/SHD.05/strength + unit: 1/m**2 +- type: pyaml.magnet.quadrupole + name: QCORR_033 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN03-AR/EM-COR/CQLN.21/strength + unit: 1/m +- type: pyaml.bpm.bpm + name: BPM_026 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN03-AR/DG-EPOS/BPM.10/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN03-AR/DG-EPOS/BPM.10/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: SH7_COR_003 + mapping: + - [B2, SH7_COR_003.sextupole] + - [B0, SH7_COR_003.hcorrector] + - [A0, SH7_COR_003.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0, A0] + units: [1/m**2, '1', '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN03-AR/EM-SX/SHF.06/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN03-AR/EM-COR/SHF.06-CDLH.10/strength + unit: '1' + - type: tango.pyaml.attribute + attribute: AN03-AR/EM-COR/SHF.06-CDLV.10/strength + unit: '1' +- type: pyaml.magnet.cfm_magnet + name: OH7_QCORROCT_24_QT_001 + mapping: + - [B3, OH7_QCORROCT_24_QT_001.octupole] + - [B1, OH7_QCORROCT_24_QT_001.quadrupole] + - [A1, OH7_QCORROCT_24_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN03-AR/EM-OCT/OH.02/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN03-AR/EM-COR/OH.02-CQLN.22/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN03-AR/EM-COR/OH.02-CQLT.08/strength + unit: 1/m**2 +- type: pyaml.bpm.bpm + name: BPM_027 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN04-SD/DG-EPOS/BPM.01/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN04-SD/DG-EPOS/BPM.01/y_pos + unit: mm +- type: pyaml.bpm.bpm + name: BPM_028 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN04-SD/DG-EPOS/BPM.02/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN04-SD/DG-EPOS/BPM.02/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: OH7_QCORROCT_25_QT_001 + mapping: + - [B3, OH7_QCORROCT_25_QT_001.octupole] + - [B1, OH7_QCORROCT_25_QT_001.quadrupole] + - [A1, OH7_QCORROCT_25_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN04-AR/EM-OCT/OH.01/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN04-AR/EM-COR/OH.01-CQLN.01/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN04-AR/EM-COR/OH.01-CQLT.01/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SH7_COR_004 + mapping: + - [B2, SH7_COR_004.sextupole] + - [B0, SH7_COR_004.hcorrector] + - [A0, SH7_COR_004.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0, A0] + units: [1/m**2, '1', '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN04-AR/EM-SX/SHF.01/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN04-AR/EM-COR/SHF.01-CDLH.01/strength + unit: '1' + - type: tango.pyaml.attribute + attribute: AN04-AR/EM-COR/SHF.01-CDLV.01/strength + unit: '1' +- type: pyaml.bpm.bpm + name: BPM_029 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN04-AR/DG-EPOS/BPM.03/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN04-AR/DG-EPOS/BPM.03/y_pos + unit: mm +- type: pyaml.magnet.quadrupole + name: QCORR_034 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN04-AR/EM-COR/CQLN.02/strength + unit: 1/m +- type: pyaml.magnet.sextupole + name: SH8_004 + model: + type: pyaml.magnet.identity_model + unit: 1/m**2 + physics: + type: tango.pyaml.attribute + attribute: AN04-AR/EM-SX/SHD.02/strength + unit: 1/m**2 +- type: pyaml.magnet.quadrupole + name: QCORR_035 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN04-AR/EM-COR/CQLN.03/strength + unit: 1/m +- type: pyaml.magnet.cfm_magnet + name: SH9_COR_004 + mapping: + - [B2, SH9_COR_004.sextupole] + - [B0, SH9_COR_004.hcorrector] + - [A0, SH9_COR_004.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0, A0] + units: [1/m**2, '1', '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN04-AR/EM-SX/SHD.03/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN04-AR/EM-COR/SHD.03-CDLH.02/strength + unit: '1' + - type: tango.pyaml.attribute + attribute: AN04-AR/EM-COR/SHD.03-CDLV.02/strength + unit: '1' +- type: pyaml.magnet.sextupole + name: SXD41_001 + model: + type: pyaml.magnet.identity_model + unit: 1/m**2 + physics: + type: tango.pyaml.attribute + attribute: AN04-AR/EM-SX/SCD.01/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: OCTF4_QCORROCT_26_QT_001 + mapping: + - [B3, OCTF4_QCORROCT_26_QT_001.octupole] + - [B1, OCTF4_QCORROCT_26_QT_001.quadrupole] + - [A1, OCTF4_QCORROCT_26_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN04-AR/EM-OCT/OC.01/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN04-AR/EM-COR/OC.01-CQLN.04/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN04-AR/EM-COR/OC.01-CQLT.02/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SXF41_HCOR_001 + mapping: + - [B2, SXF41_HCOR_001.sextupole] + - [B0, SXF41_HCOR_001.hcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN04-AR/EM-SX/SCF.02/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN04-AR/EM-COR/SCF.02-CDLH.03/strength + unit: '1' +- type: pyaml.bpm.bpm + name: BPM_030 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN04-AR/DG-EPOS/BPM.04/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN04-AR/DG-EPOS/BPM.04/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: SXD41_VCOR_001 + mapping: + - [B2, SXD41_VCOR_001.sextupole] + - [A0, SXD41_VCOR_001.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, A0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN04-AR/EM-SX/SCD.03/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN04-AR/EM-COR/SCD.03-CDLV.03/strength + unit: '1' +- type: pyaml.magnet.quadrupole + name: QCORR_036 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN04-AR/EM-COR/CQLN.05/strength + unit: 1/m +- type: pyaml.magnet.quadrupole + name: QCORR_037 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN04-AR/EM-COR/CQLN.06/strength + unit: 1/m +- type: pyaml.magnet.sextupole + name: SXD4_001 + model: + type: pyaml.magnet.identity_model + unit: 1/m**2 + physics: + type: tango.pyaml.attribute + attribute: AN04-AR/EM-SX/SCD.04/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SXF4_HCOR_001 + mapping: + - [B2, SXF4_HCOR_001.sextupole] + - [B0, SXF4_HCOR_001.hcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN04-AR/EM-SX/SCF.05/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN04-AR/EM-COR/SCF.05-CDLH.04/strength + unit: '1' +- type: pyaml.magnet.cfm_magnet + name: OCTF4_QCORROCT_27_QT_001 + mapping: + - [B3, OCTF4_QCORROCT_27_QT_001.octupole] + - [B1, OCTF4_QCORROCT_27_QT_001.quadrupole] + - [A1, OCTF4_QCORROCT_27_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN04-AR/EM-OCT/OC.02/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN04-AR/EM-COR/OC.02-CQLN.07/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN04-AR/EM-COR/OC.02-CQLT.03/strength + unit: 1/m**2 +- type: pyaml.bpm.bpm + name: BPM_031 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN04-AR/DG-EPOS/BPM.05/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN04-AR/DG-EPOS/BPM.05/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: SXD4_VCOR_001 + mapping: + - [B2, SXD4_VCOR_001.sextupole] + - [A0, SXD4_VCOR_001.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, A0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN04-AR/EM-SX/SCD.06/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN04-AR/EM-COR/SCD.06-CDLV.04/strength + unit: '1' +- type: pyaml.magnet.quadrupole + name: QCORR_038 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN04-AR/EM-COR/CQLN.08/strength + unit: 1/m +- type: pyaml.magnet.quadrupole + name: QCORR_039 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN04-AR/EM-COR/CQLN.09/strength + unit: 1/m +- type: pyaml.magnet.sextupole + name: SXD42_001 + model: + type: pyaml.magnet.identity_model + unit: 1/m**2 + physics: + type: tango.pyaml.attribute + attribute: AN04-AR/EM-SX/SCD.07/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SXF42_HCOR_001 + mapping: + - [B2, SXF42_HCOR_001.sextupole] + - [B0, SXF42_HCOR_001.hcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN04-AR/EM-SX/SCF.08/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN04-AR/EM-COR/SCF.08-CDLH.05/strength + unit: '1' +- type: pyaml.magnet.cfm_magnet + name: OCTF4_QCORROCT_28_QT_001 + mapping: + - [B3, OCTF4_QCORROCT_28_QT_001.octupole] + - [B1, OCTF4_QCORROCT_28_QT_001.quadrupole] + - [A1, OCTF4_QCORROCT_28_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN04-AR/EM-OCT/OC.03/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN04-AR/EM-COR/OC.03-CQLN.10/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN04-AR/EM-COR/OC.03-CQLT.04/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SXD42_VCOR_001 + mapping: + - [B2, SXD42_VCOR_001.sextupole] + - [A0, SXD42_VCOR_001.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, A0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN04-AR/EM-SX/SCD.09/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN04-AR/EM-COR/SCD.09-CDLV.05/strength + unit: '1' +- type: pyaml.bpm.bpm + name: BPM_032 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN04-AR/DG-EPOS/BPM.06/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN04-AR/DG-EPOS/BPM.06/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: SH12_COR_001 + mapping: + - [B2, SH12_COR_001.sextupole] + - [B0, SH12_COR_001.hcorrector] + - [A0, SH12_COR_001.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0, A0] + units: [1/m**2, '1', '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN04-AR/EM-SX/SHD.04/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN04-AR/EM-COR/SHD.04-CDLH.06/strength + unit: '1' + - type: tango.pyaml.attribute + attribute: AN04-AR/EM-COR/SHD.04-CDLV.06/strength + unit: '1' +- type: pyaml.magnet.quadrupole + name: QCORR_040 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN04-AR/EM-COR/CQLN.11/strength + unit: 1/m +- type: pyaml.magnet.sextupole + name: SH11_001 + model: + type: pyaml.magnet.identity_model + unit: 1/m**2 + physics: + type: tango.pyaml.attribute + attribute: AN04-AR/EM-SX/SHD.05/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: OH11_QCORROCT_29_001 + mapping: + - [B3, OH11_QCORROCT_29_001.octupole] + - [B1, OH11_QCORROCT_29_001.quadrupole] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1] + units: [1/m**3, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN04-AR/EM-OCT/OH.02/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN04-AR/EM-COR/OH.02-CQLN.12/strength + unit: 1/m**2 +- type: pyaml.bpm.bpm + name: BPM_033 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN04-AR/DG-EPOS/BPM.07/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN04-AR/DG-EPOS/BPM.07/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: SH10_COR_001 + mapping: + - [B2, SH10_COR_001.sextupole] + - [B0, SH10_COR_001.hcorrector] + - [A0, SH10_COR_001.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0, A0] + units: [1/m**2, '1', '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN04-AR/EM-SX/SHF.06/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN04-AR/EM-COR/SHF.06-CDLH.07/strength + unit: '1' + - type: tango.pyaml.attribute + attribute: AN04-AR/EM-COR/SHF.06-CDLV.07/strength + unit: '1' +- type: pyaml.magnet.cfm_magnet + name: OH10_QCORROCT_30_QT_001 + mapping: + - [B3, OH10_QCORROCT_30_QT_001.octupole] + - [B1, OH10_QCORROCT_30_QT_001.quadrupole] + - [A1, OH10_QCORROCT_30_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN04-AR/EM-OCT/OH.03/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN04-AR/EM-COR/OH.03-CQLN.13/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN04-AR/EM-COR/OH.03-CQLT.05/strength + unit: 1/m**2 +- type: pyaml.bpm.bpm + name: BPM_034 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN05-SD/DG-EPOS/BPM.01/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN05-SD/DG-EPOS/BPM.01/y_pos + unit: mm +- type: pyaml.bpm.bpm + name: BPM_035 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN05-SD/DG-EPOS/BPM.02/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN05-SD/DG-EPOS/BPM.02/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: OH10_QCORROCT_31_QT_001 + mapping: + - [B3, OH10_QCORROCT_31_QT_001.octupole] + - [B1, OH10_QCORROCT_31_QT_001.quadrupole] + - [A1, OH10_QCORROCT_31_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN05-AR/EM-OCT/OH.01/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN05-AR/EM-COR/OH.01-CQLN.01/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN05-AR/EM-COR/OH.01-CQLT.01/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SH10_COR_002 + mapping: + - [B2, SH10_COR_002.sextupole] + - [B0, SH10_COR_002.hcorrector] + - [A0, SH10_COR_002.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0, A0] + units: [1/m**2, '1', '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN05-AR/EM-SX/SHF.01/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN05-AR/EM-COR/SHF.01-CDLH.01/strength + unit: '1' + - type: tango.pyaml.attribute + attribute: AN05-AR/EM-COR/SHF.01-CDLV.01/strength + unit: '1' +- type: pyaml.bpm.bpm + name: BPM_036 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN05-AR/DG-EPOS/BPM.03/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN05-AR/DG-EPOS/BPM.03/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: OH11_QCORROCT_32_001 + mapping: + - [B3, OH11_QCORROCT_32_001.octupole] + - [B1, OH11_QCORROCT_32_001.quadrupole] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1] + units: [1/m**3, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN05-AR/EM-OCT/OH.02/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN05-AR/EM-COR/OH.02-CQLN.02/strength + unit: 1/m**2 +- type: pyaml.magnet.sextupole + name: SH11_002 + model: + type: pyaml.magnet.identity_model + unit: 1/m**2 + physics: + type: tango.pyaml.attribute + attribute: AN05-AR/EM-SX/SHD.02/strength + unit: 1/m**2 +- type: pyaml.magnet.quadrupole + name: QCORR_041 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN05-AR/EM-COR/CQLN.03/strength + unit: 1/m +- type: pyaml.magnet.cfm_magnet + name: SH12_COR_002 + mapping: + - [B2, SH12_COR_002.sextupole] + - [B0, SH12_COR_002.hcorrector] + - [A0, SH12_COR_002.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0, A0] + units: [1/m**2, '1', '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN05-AR/EM-SX/SHD.03/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN05-AR/EM-COR/SHD.03-CDLH.02/strength + unit: '1' + - type: tango.pyaml.attribute + attribute: AN05-AR/EM-COR/SHD.03-CDLV.02/strength + unit: '1' +- type: pyaml.magnet.sextupole + name: SXD51_001 + model: + type: pyaml.magnet.identity_model + unit: 1/m**2 + physics: + type: tango.pyaml.attribute + attribute: AN05-AR/EM-SX/SCD.01/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: OCTF5_QCORROCT_33_QT_001 + mapping: + - [B3, OCTF5_QCORROCT_33_QT_001.octupole] + - [B1, OCTF5_QCORROCT_33_QT_001.quadrupole] + - [A1, OCTF5_QCORROCT_33_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN05-AR/EM-OCT/OC.01/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN05-AR/EM-COR/OC.01-CQLN.04/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN05-AR/EM-COR/OC.01-CQLT.02/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SXF51_HCOR_001 + mapping: + - [B2, SXF51_HCOR_001.sextupole] + - [B0, SXF51_HCOR_001.hcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN05-AR/EM-SX/SCF.02/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN05-AR/EM-COR/SCF.02-CDLH.03/strength + unit: '1' +- type: pyaml.bpm.bpm + name: BPM_037 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN05-AR/DG-EPOS/BPM.04/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN05-AR/DG-EPOS/BPM.04/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: SXD51_VCOR_001 + mapping: + - [B2, SXD51_VCOR_001.sextupole] + - [A0, SXD51_VCOR_001.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, A0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN05-AR/EM-SX/SCD.03/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN05-AR/EM-COR/SCD.03-CDLV.03/strength + unit: '1' +- type: pyaml.magnet.quadrupole + name: QCORR_042 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN05-AR/EM-COR/CQLN.05/strength + unit: 1/m +- type: pyaml.magnet.quadrupole + name: QCORR_043 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN05-AR/EM-COR/CQLN.06/strength + unit: 1/m +- type: pyaml.magnet.sextupole + name: SXD5_001 + model: + type: pyaml.magnet.identity_model + unit: 1/m**2 + physics: + type: tango.pyaml.attribute + attribute: AN05-AR/EM-SX/SCD.04/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: OCTF5_QCORROCT_34_QT_001 + mapping: + - [B3, OCTF5_QCORROCT_34_QT_001.octupole] + - [B1, OCTF5_QCORROCT_34_QT_001.quadrupole] + - [A1, OCTF5_QCORROCT_34_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN05-AR/EM-OCT/OC.02/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN05-AR/EM-COR/OC.02-CQLN.07/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN05-AR/EM-COR/OC.02-CQLT.03/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SXF5_HCOR_001 + mapping: + - [B2, SXF5_HCOR_001.sextupole] + - [B0, SXF5_HCOR_001.hcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN05-AR/EM-SX/SCF.05/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN05-AR/EM-COR/SCF.05-CDLH.04/strength + unit: '1' +- type: pyaml.bpm.bpm + name: BPM_038 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN05-AR/DG-EPOS/BPM.05/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN05-AR/DG-EPOS/BPM.05/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: SXD5_VCOR_001 + mapping: + - [B2, SXD5_VCOR_001.sextupole] + - [A0, SXD5_VCOR_001.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, A0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN05-AR/EM-SX/SCD.06/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN05-AR/EM-COR/SCD.06-CDLV.04/strength + unit: '1' +- type: pyaml.magnet.quadrupole + name: QCORR_044 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN05-AR/EM-COR/CQLN.08/strength + unit: 1/m +- type: pyaml.magnet.quadrupole + name: QCORR_045 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN05-AR/EM-COR/CQLN.09/strength + unit: 1/m +- type: pyaml.magnet.sextupole + name: SXD5_002 + model: + type: pyaml.magnet.identity_model + unit: 1/m**2 + physics: + type: tango.pyaml.attribute + attribute: AN05-AR/EM-SX/SCD.07/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: OCTF5_QCORROCT_35_QT_001 + mapping: + - [B3, OCTF5_QCORROCT_35_QT_001.octupole] + - [B1, OCTF5_QCORROCT_35_QT_001.quadrupole] + - [A1, OCTF5_QCORROCT_35_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN05-AR/EM-OCT/OC.03/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN05-AR/EM-COR/OC.03-CQLN.10/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN05-AR/EM-COR/OC.03-CQLT.04/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SXF53_HCOR_001 + mapping: + - [B2, SXF53_HCOR_001.sextupole] + - [B0, SXF53_HCOR_001.hcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN05-AR/EM-SX/SCF.08/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN05-AR/EM-COR/SCF.08-CDLH.05/strength + unit: '1' +- type: pyaml.bpm.bpm + name: BPM_039 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN05-AR/DG-EPOS/BPM.06/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN05-AR/DG-EPOS/BPM.06/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: SXD53_VCOR_001 + mapping: + - [B2, SXD53_VCOR_001.sextupole] + - [A0, SXD53_VCOR_001.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, A0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN05-AR/EM-SX/SCD.09/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN05-AR/EM-COR/SCD.09-CDLV.05/strength + unit: '1' +- type: pyaml.magnet.quadrupole + name: QCORR_046 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN05-AR/EM-COR/CQLN.11/strength + unit: 1/m +- type: pyaml.magnet.quadrupole + name: QCORR_047 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN05-AR/EM-COR/CQLN.12/strength + unit: 1/m +- type: pyaml.magnet.sextupole + name: SXD53_001 + model: + type: pyaml.magnet.identity_model + unit: 1/m**2 + physics: + type: tango.pyaml.attribute + attribute: AN05-AR/EM-SX/SCD.10/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SXF53_HCOR_002 + mapping: + - [B2, SXF53_HCOR_002.sextupole] + - [B0, SXF53_HCOR_002.hcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN05-AR/EM-SX/SCF.11/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN05-AR/EM-COR/SCF.11-CDLH.06/strength + unit: '1' +- type: pyaml.magnet.cfm_magnet + name: OCTF5_QCORROCT_36_QT_001 + mapping: + - [B3, OCTF5_QCORROCT_36_QT_001.octupole] + - [B1, OCTF5_QCORROCT_36_QT_001.quadrupole] + - [A1, OCTF5_QCORROCT_36_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN05-AR/EM-OCT/OC.04/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN05-AR/EM-COR/OC.04-CQLN.13/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN05-AR/EM-COR/OC.04-CQLT.05/strength + unit: 1/m**2 +- type: pyaml.bpm.bpm + name: BPM_040 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN05-AR/DG-EPOS/BPM.07/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN05-AR/DG-EPOS/BPM.07/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: SXD5_VCOR_002 + mapping: + - [B2, SXD5_VCOR_002.sextupole] + - [A0, SXD5_VCOR_002.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, A0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN05-AR/EM-SX/SCD.12/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN05-AR/EM-COR/SCD.12-CDLV.06/strength + unit: '1' +- type: pyaml.magnet.quadrupole + name: QCORR_048 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN05-AR/EM-COR/CQLN.14/strength + unit: 1/m +- type: pyaml.magnet.quadrupole + name: QCORR_049 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN05-AR/EM-COR/CQLN.15/strength + unit: 1/m +- type: pyaml.magnet.sextupole + name: SXD5_003 + model: + type: pyaml.magnet.identity_model + unit: 1/m**2 + physics: + type: tango.pyaml.attribute + attribute: AN05-AR/EM-SX/SCD.13/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SXF5_HCOR_002 + mapping: + - [B2, SXF5_HCOR_002.sextupole] + - [B0, SXF5_HCOR_002.hcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN05-AR/EM-SX/SCF.14/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN05-AR/EM-COR/SCF.14-CDLH.07/strength + unit: '1' +- type: pyaml.magnet.cfm_magnet + name: OCTF5_QCORROCT_37_QT_001 + mapping: + - [B3, OCTF5_QCORROCT_37_QT_001.octupole] + - [B1, OCTF5_QCORROCT_37_QT_001.quadrupole] + - [A1, OCTF5_QCORROCT_37_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN05-AR/EM-OCT/OC.05/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN05-AR/EM-COR/OC.05-CQLN.16/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN05-AR/EM-COR/OC.05-CQLT.06/strength + unit: 1/m**2 +- type: pyaml.bpm.bpm + name: BPM_041 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN05-AR/DG-EPOS/BPM.08/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN05-AR/DG-EPOS/BPM.08/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: SXD5_VCOR_003 + mapping: + - [B2, SXD5_VCOR_003.sextupole] + - [A0, SXD5_VCOR_003.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, A0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN05-AR/EM-SX/SCD.15/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN05-AR/EM-COR/SCD.15-CDLV.07/strength + unit: '1' +- type: pyaml.magnet.quadrupole + name: QCORR_050 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN05-AR/EM-COR/CQLN.17/strength + unit: 1/m +- type: pyaml.magnet.quadrupole + name: QCORR_051 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN05-AR/EM-COR/CQLN.18/strength + unit: 1/m +- type: pyaml.magnet.sextupole + name: SXD52_001 + model: + type: pyaml.magnet.identity_model + unit: 1/m**2 + physics: + type: tango.pyaml.attribute + attribute: AN05-AR/EM-SX/SCD.16/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SXF52_HCOR_001 + mapping: + - [B2, SXF52_HCOR_001.sextupole] + - [B0, SXF52_HCOR_001.hcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN05-AR/EM-SX/SCF.17/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN05-AR/EM-COR/SCF.17-CDLH.08/strength + unit: '1' +- type: pyaml.magnet.cfm_magnet + name: OCTF5_QCORROCT_38_QT_001 + mapping: + - [B3, OCTF5_QCORROCT_38_QT_001.octupole] + - [B1, OCTF5_QCORROCT_38_QT_001.quadrupole] + - [A1, OCTF5_QCORROCT_38_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN05-AR/EM-OCT/OC.06/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN05-AR/EM-COR/OC.06-CQLN.19/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN05-AR/EM-COR/OC.06-CQLT.07/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SXD52_VCOR_001 + mapping: + - [B2, SXD52_VCOR_001.sextupole] + - [A0, SXD52_VCOR_001.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, A0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN05-AR/EM-SX/SCD.18/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN05-AR/EM-COR/SCD.18-CDLV.08/strength + unit: '1' +- type: pyaml.bpm.bpm + name: BPM_042 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN05-AR/DG-EPOS/BPM.09/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN05-AR/DG-EPOS/BPM.09/y_pos + unit: mm +- type: pyaml.magnet.quadrupole + name: QCORR_052 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN05-AR/EM-COR/CQLN.20/strength + unit: 1/m +- type: pyaml.magnet.cfm_magnet + name: SH15_VCOR_001 + mapping: + - [B2, SH15_VCOR_001.sextupole] + - [A0, SH15_VCOR_001.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, A0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN05-AR/EM-SX/SHD.04/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN05-AR/EM-COR/SHD.04-CDLV.09/strength + unit: '1' +- type: pyaml.bpm.bpm + name: BPM_043 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN05-AR/DG-EPOS/BPM.10/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN05-AR/DG-EPOS/BPM.10/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: SH14_HCOR_001 + mapping: + - [B2, SH14_HCOR_001.sextupole] + - [B0, SH14_HCOR_001.hcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN05-AR/EM-SX/SHD.05/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN05-AR/EM-COR/SHD.05-CDLH.09/strength + unit: '1' +- type: pyaml.magnet.cfm_magnet + name: OH14_QCORROCT_39_001 + mapping: + - [B3, OH14_QCORROCT_39_001.octupole] + - [B1, OH14_QCORROCT_39_001.quadrupole] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1] + units: [1/m**3, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN05-AR/EM-OCT/OH.03/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN05-AR/EM-COR/OH.03-CQLN.21/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SH13_COR_001 + mapping: + - [B2, SH13_COR_001.sextupole] + - [B0, SH13_COR_001.hcorrector] + - [A0, SH13_COR_001.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0, A0] + units: [1/m**2, '1', '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN05-AR/EM-SX/SHF.06/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN05-AR/EM-COR/SHF.06-CDLH.10/strength + unit: '1' + - type: tango.pyaml.attribute + attribute: AN05-AR/EM-COR/SHF.06-CDLV.10/strength + unit: '1' +- type: pyaml.magnet.cfm_magnet + name: OH13_QCORROCT_40_QT_001 + mapping: + - [B3, OH13_QCORROCT_40_QT_001.octupole] + - [B1, OH13_QCORROCT_40_QT_001.quadrupole] + - [A1, OH13_QCORROCT_40_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN05-AR/EM-OCT/OH.04/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN05-AR/EM-COR/OH.04-CQLN.22/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN05-AR/EM-COR/OH.04-CQLT.08/strength + unit: 1/m**2 +- type: pyaml.bpm.bpm + name: BPM_044 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN06-SD/DG-EPOS/BPM.01/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN06-SD/DG-EPOS/BPM.01/y_pos + unit: mm +- type: pyaml.bpm.bpm + name: BPM_045 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN06-SD/DG-EPOS/BPM.02/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN06-SD/DG-EPOS/BPM.02/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: OH16_QCORROCT_41_001 + mapping: + - [B3, OH16_QCORROCT_41_001.octupole] + - [B1, OH16_QCORROCT_41_001.quadrupole] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1] + units: [1/m**3, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN06-SD/EM-OCT/OH.01/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN06-SD/EM-COR/OH.01-CQLN.01/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SH16_COR_001 + mapping: + - [B2, SH16_COR_001.sextupole] + - [B0, SH16_COR_001.hcorrector] + - [A0, SH16_COR_001.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0, A0] + units: [1/m**2, '1', '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN06-SD/EM-SX/SHD.01/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN06-SD/EM-COR/SHD.01-CDLH.01/strength + unit: '1' + - type: tango.pyaml.attribute + attribute: AN06-SD/EM-COR/SHD.01-CDLV.01/strength + unit: '1' +- type: pyaml.magnet.cfm_magnet + name: SH16_COR_002 + mapping: + - [B2, SH16_COR_002.sextupole] + - [B0, SH16_COR_002.hcorrector] + - [A0, SH16_COR_002.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0, A0] + units: [1/m**2, '1', '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN06-SD/EM-SX/SHD.02/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN06-SD/EM-COR/SHD.02-CDLH.02/strength + unit: '1' + - type: tango.pyaml.attribute + attribute: AN06-SD/EM-COR/SHD.02-CDLV.02/strength + unit: '1' +- type: pyaml.magnet.cfm_magnet + name: OH16_QCORROCT_42_001 + mapping: + - [B3, OH16_QCORROCT_42_001.octupole] + - [B1, OH16_QCORROCT_42_001.quadrupole] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1] + units: [1/m**3, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN06-SD/EM-OCT/OH.02/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN06-SD/EM-COR/OH.02-CQLN.02/strength + unit: 1/m**2 +- type: pyaml.bpm.bpm + name: BPM_046 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN06-SD/DG-EPOS/BPM.03/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN06-SD/DG-EPOS/BPM.03/y_pos + unit: mm +- type: pyaml.bpm.bpm + name: BPM_047 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN06-SD/DG-EPOS/BPM.04/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN06-SD/DG-EPOS/BPM.04/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: OH13_QCORROCT_43_QT_001 + mapping: + - [B3, OH13_QCORROCT_43_QT_001.octupole] + - [B1, OH13_QCORROCT_43_QT_001.quadrupole] + - [A1, OH13_QCORROCT_43_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN06-AR/EM-OCT/OH.01/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN06-AR/EM-COR/OH.01-CQLN.01/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN06-AR/EM-COR/OH.01-CQLT.01/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SH13_COR_002 + mapping: + - [B2, SH13_COR_002.sextupole] + - [B0, SH13_COR_002.hcorrector] + - [A0, SH13_COR_002.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0, A0] + units: [1/m**2, '1', '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN06-AR/EM-SX/SHF.01/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN06-AR/EM-COR/SHF.01-CDLH.03/strength + unit: '1' + - type: tango.pyaml.attribute + attribute: AN06-AR/EM-COR/SHF.01-CDLV.03/strength + unit: '1' +- type: pyaml.magnet.cfm_magnet + name: OH14_QCORROCT_44_001 + mapping: + - [B3, OH14_QCORROCT_44_001.octupole] + - [B1, OH14_QCORROCT_44_001.quadrupole] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1] + units: [1/m**3, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN06-AR/EM-OCT/OH.02/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN06-AR/EM-COR/OH.02-CQLN.02/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SH14_HCOR_002 + mapping: + - [B2, SH14_HCOR_002.sextupole] + - [B0, SH14_HCOR_002.hcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN06-AR/EM-SX/SHD.02/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN06-AR/EM-COR/SHD.02-CDLH.04/strength + unit: '1' +- type: pyaml.bpm.bpm + name: BPM_048 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN06-AR/DG-EPOS/BPM.05/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN06-AR/DG-EPOS/BPM.05/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: SH15_VCOR_002 + mapping: + - [B2, SH15_VCOR_002.sextupole] + - [A0, SH15_VCOR_002.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, A0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN06-AR/EM-SX/SHD.03/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN06-AR/EM-COR/SHD.03-CDLV.04/strength + unit: '1' +- type: pyaml.magnet.quadrupole + name: QCORR_053 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN06-AR/EM-COR/CQLN.03/strength + unit: 1/m +- type: pyaml.magnet.sextupole + name: SXD52_002 + model: + type: pyaml.magnet.identity_model + unit: 1/m**2 + physics: + type: tango.pyaml.attribute + attribute: AN06-AR/EM-SX/SCD.01/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: OCTF5_QCORROCT_45_QT_001 + mapping: + - [B3, OCTF5_QCORROCT_45_QT_001.octupole] + - [B1, OCTF5_QCORROCT_45_QT_001.quadrupole] + - [A1, OCTF5_QCORROCT_45_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN06-AR/EM-OCT/OC.01/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN06-AR/EM-COR/OC.01-CQLN.04/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN06-AR/EM-COR/OC.01-CQLT.02/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SXF52_HCOR_002 + mapping: + - [B2, SXF52_HCOR_002.sextupole] + - [B0, SXF52_HCOR_002.hcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN06-AR/EM-SX/SCF.02/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN06-AR/EM-COR/SCF.02-CDLH.05/strength + unit: '1' +- type: pyaml.bpm.bpm + name: BPM_049 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN06-AR/DG-EPOS/BPM.06/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN06-AR/DG-EPOS/BPM.06/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: SXD52_VCOR_002 + mapping: + - [B2, SXD52_VCOR_002.sextupole] + - [A0, SXD52_VCOR_002.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, A0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN06-AR/EM-SX/SCD.03/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN06-AR/EM-COR/SCD.03-CDLV.05/strength + unit: '1' +- type: pyaml.magnet.quadrupole + name: QCORR_054 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN06-AR/EM-COR/CQLN.05/strength + unit: 1/m +- type: pyaml.magnet.quadrupole + name: QCORR_055 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN06-AR/EM-COR/CQLN.06/strength + unit: 1/m +- type: pyaml.magnet.sextupole + name: SXD5_004 + model: + type: pyaml.magnet.identity_model + unit: 1/m**2 + physics: + type: tango.pyaml.attribute + attribute: AN06-AR/EM-SX/SCD.04/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: OCTF5_QCORROCT_46_QT_001 + mapping: + - [B3, OCTF5_QCORROCT_46_QT_001.octupole] + - [B1, OCTF5_QCORROCT_46_QT_001.quadrupole] + - [A1, OCTF5_QCORROCT_46_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN06-AR/EM-OCT/OC.02/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN06-AR/EM-COR/OC.02-CQLN.07/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN06-AR/EM-COR/OC.02-CQLT.03/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SXF5_HCOR_003 + mapping: + - [B2, SXF5_HCOR_003.sextupole] + - [B0, SXF5_HCOR_003.hcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN06-AR/EM-SX/SCF.05/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN06-AR/EM-COR/SCF.05-CDLH.06/strength + unit: '1' +- type: pyaml.bpm.bpm + name: BPM_050 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN06-AR/DG-EPOS/BPM.07/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN06-AR/DG-EPOS/BPM.07/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: SXD5_VCOR_004 + mapping: + - [B2, SXD5_VCOR_004.sextupole] + - [A0, SXD5_VCOR_004.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, A0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN06-AR/EM-SX/SCD.06/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN06-AR/EM-COR/SCD.06-CDLV.06/strength + unit: '1' +- type: pyaml.magnet.quadrupole + name: QCORR_056 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN06-AR/EM-COR/CQLN.08/strength + unit: 1/m +- type: pyaml.magnet.quadrupole + name: QCORR_057 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN06-AR/EM-COR/CQLN.09/strength + unit: 1/m +- type: pyaml.magnet.sextupole + name: SXD5_005 + model: + type: pyaml.magnet.identity_model + unit: 1/m**2 + physics: + type: tango.pyaml.attribute + attribute: AN06-AR/EM-SX/SCD.07/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: OCTF5_QCORROCT_47_QT_001 + mapping: + - [B3, OCTF5_QCORROCT_47_QT_001.octupole] + - [B1, OCTF5_QCORROCT_47_QT_001.quadrupole] + - [A1, OCTF5_QCORROCT_47_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN06-AR/EM-OCT/OC.03/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN06-AR/EM-COR/OC.03-CQLN.10/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN06-AR/EM-COR/OC.03-CQLT.04/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SXF53_HCOR_003 + mapping: + - [B2, SXF53_HCOR_003.sextupole] + - [B0, SXF53_HCOR_003.hcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN06-AR/EM-SX/SCF.08/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN06-AR/EM-COR/SCF.08-CDLH.07/strength + unit: '1' +- type: pyaml.bpm.bpm + name: BPM_051 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN06-AR/DG-EPOS/BPM.08/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN06-AR/DG-EPOS/BPM.08/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: SXD53_VCOR_002 + mapping: + - [B2, SXD53_VCOR_002.sextupole] + - [A0, SXD53_VCOR_002.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, A0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN06-AR/EM-SX/SCD.09/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN06-AR/EM-COR/SCD.09-CDLV.07/strength + unit: '1' +- type: pyaml.magnet.quadrupole + name: QCORR_058 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN06-AR/EM-COR/CQLN.11/strength + unit: 1/m +- type: pyaml.magnet.quadrupole + name: QCORR_059 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN06-AR/EM-COR/CQLN.12/strength + unit: 1/m +- type: pyaml.magnet.sextupole + name: SXD53_002 + model: + type: pyaml.magnet.identity_model + unit: 1/m**2 + physics: + type: tango.pyaml.attribute + attribute: AN06-AR/EM-SX/SCD.10/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SXF53_HCOR_004 + mapping: + - [B2, SXF53_HCOR_004.sextupole] + - [B0, SXF53_HCOR_004.hcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN06-AR/EM-SX/SCF.11/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN06-AR/EM-COR/SCF.11-CDLH.08/strength + unit: '1' +- type: pyaml.magnet.cfm_magnet + name: OCTF5_QCORROCT_48_QT_001 + mapping: + - [B3, OCTF5_QCORROCT_48_QT_001.octupole] + - [B1, OCTF5_QCORROCT_48_QT_001.quadrupole] + - [A1, OCTF5_QCORROCT_48_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN06-AR/EM-OCT/OC.04/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN06-AR/EM-COR/OC.04-CQLN.13/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN06-AR/EM-COR/OC.04-CQLT.05/strength + unit: 1/m**2 +- type: pyaml.bpm.bpm + name: BPM_052 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN06-AR/DG-EPOS/BPM.09/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN06-AR/DG-EPOS/BPM.09/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: SXD5_VCOR_005 + mapping: + - [B2, SXD5_VCOR_005.sextupole] + - [A0, SXD5_VCOR_005.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, A0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN06-AR/EM-SX/SCD.12/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN06-AR/EM-COR/SCD.12-CDLV.08/strength + unit: '1' +- type: pyaml.magnet.quadrupole + name: QCORR_060 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN06-AR/EM-COR/CQLN.14/strength + unit: 1/m +- type: pyaml.magnet.quadrupole + name: QCORR_061 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN06-AR/EM-COR/CQLN.15/strength + unit: 1/m +- type: pyaml.magnet.sextupole + name: SXD5_006 + model: + type: pyaml.magnet.identity_model + unit: 1/m**2 + physics: + type: tango.pyaml.attribute + attribute: AN06-AR/EM-SX/SCD.13/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SXF5_HCOR_004 + mapping: + - [B2, SXF5_HCOR_004.sextupole] + - [B0, SXF5_HCOR_004.hcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN06-AR/EM-SX/SCF.14/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN06-AR/EM-COR/SCF.14-CDLH.09/strength + unit: '1' +- type: pyaml.magnet.cfm_magnet + name: OCTF5_QCORROCT_49_QT_001 + mapping: + - [B3, OCTF5_QCORROCT_49_QT_001.octupole] + - [B1, OCTF5_QCORROCT_49_QT_001.quadrupole] + - [A1, OCTF5_QCORROCT_49_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN06-AR/EM-OCT/OC.05/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN06-AR/EM-COR/OC.05-CQLN.16/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN06-AR/EM-COR/OC.05-CQLT.06/strength + unit: 1/m**2 +- type: pyaml.bpm.bpm + name: BPM_053 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN06-AR/DG-EPOS/BPM.10/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN06-AR/DG-EPOS/BPM.10/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: SXD5_VCOR_006 + mapping: + - [B2, SXD5_VCOR_006.sextupole] + - [A0, SXD5_VCOR_006.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, A0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN06-AR/EM-SX/SCD.15/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN06-AR/EM-COR/SCD.15-CDLV.09/strength + unit: '1' +- type: pyaml.magnet.quadrupole + name: QCORR_062 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN06-AR/EM-COR/CQLN.17/strength + unit: 1/m +- type: pyaml.magnet.quadrupole + name: QCORR_063 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN06-AR/EM-COR/CQLN.18/strength + unit: 1/m +- type: pyaml.magnet.sextupole + name: SXD51_002 + model: + type: pyaml.magnet.identity_model + unit: 1/m**2 + physics: + type: tango.pyaml.attribute + attribute: AN06-AR/EM-SX/SCD.16/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SXF51_HCOR_002 + mapping: + - [B2, SXF51_HCOR_002.sextupole] + - [B0, SXF51_HCOR_002.hcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN06-AR/EM-SX/SCF.17/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN06-AR/EM-COR/SCF.17-CDLH.10/strength + unit: '1' +- type: pyaml.magnet.cfm_magnet + name: OCTF5_QCORROCT_50_QT_001 + mapping: + - [B3, OCTF5_QCORROCT_50_QT_001.octupole] + - [B1, OCTF5_QCORROCT_50_QT_001.quadrupole] + - [A1, OCTF5_QCORROCT_50_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN06-AR/EM-OCT/OC.06/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN06-AR/EM-COR/OC.06-CQLN.19/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN06-AR/EM-COR/OC.06-CQLT.07/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SXD51_VCOR_002 + mapping: + - [B2, SXD51_VCOR_002.sextupole] + - [A0, SXD51_VCOR_002.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, A0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN06-AR/EM-SX/SCD.18/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN06-AR/EM-COR/SCD.18-CDLV.10/strength + unit: '1' +- type: pyaml.bpm.bpm + name: BPM_054 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN06-AR/DG-EPOS/BPM.11/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN06-AR/DG-EPOS/BPM.11/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: SH12_COR_003 + mapping: + - [B2, SH12_COR_003.sextupole] + - [B0, SH12_COR_003.hcorrector] + - [A0, SH12_COR_003.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0, A0] + units: [1/m**2, '1', '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN06-AR/EM-SX/SHD.04/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN06-AR/EM-COR/SHD.04-CDLH.11/strength + unit: '1' + - type: tango.pyaml.attribute + attribute: AN06-AR/EM-COR/SHD.04-CDLV.11/strength + unit: '1' +- type: pyaml.magnet.quadrupole + name: QCORR_064 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN06-AR/EM-COR/CQLN.20/strength + unit: 1/m +- type: pyaml.magnet.sextupole + name: SH11_003 + model: + type: pyaml.magnet.identity_model + unit: 1/m**2 + physics: + type: tango.pyaml.attribute + attribute: AN06-AR/EM-SX/SHD.05/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: OH11_QCORROCT_51_001 + mapping: + - [B3, OH11_QCORROCT_51_001.octupole] + - [B1, OH11_QCORROCT_51_001.quadrupole] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1] + units: [1/m**3, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN06-AR/EM-OCT/OH.03/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN06-AR/EM-COR/OH.03-CQLN.21/strength + unit: 1/m**2 +- type: pyaml.bpm.bpm + name: BPM_055 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN06-AR/DG-EPOS/BPM.12/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN06-AR/DG-EPOS/BPM.12/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: SH10_COR_003 + mapping: + - [B2, SH10_COR_003.sextupole] + - [B0, SH10_COR_003.hcorrector] + - [A0, SH10_COR_003.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0, A0] + units: [1/m**2, '1', '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN06-AR/EM-SX/SHF.06/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN06-AR/EM-COR/SHF.06-CDLH.12/strength + unit: '1' + - type: tango.pyaml.attribute + attribute: AN06-AR/EM-COR/SHF.06-CDLV.12/strength + unit: '1' +- type: pyaml.magnet.cfm_magnet + name: OH10_QCORROCT_52_QT_001 + mapping: + - [B3, OH10_QCORROCT_52_QT_001.octupole] + - [B1, OH10_QCORROCT_52_QT_001.quadrupole] + - [A1, OH10_QCORROCT_52_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN06-AR/EM-OCT/OH.04/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN06-AR/EM-COR/OH.04-CQLN.22/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN06-AR/EM-COR/OH.04-CQLT.08/strength + unit: 1/m**2 +- type: pyaml.bpm.bpm + name: BPM_056 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN07-SD/DG-EPOS/BPM.01/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN07-SD/DG-EPOS/BPM.01/y_pos + unit: mm +- type: pyaml.bpm.bpm + name: BPM_057 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN07-SD/DG-EPOS/BPM.02/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN07-SD/DG-EPOS/BPM.02/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: OH10_QCORROCT_53_QT_001 + mapping: + - [B3, OH10_QCORROCT_53_QT_001.octupole] + - [B1, OH10_QCORROCT_53_QT_001.quadrupole] + - [A1, OH10_QCORROCT_53_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN07-AR/EM-OCT/OH.01/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN07-AR/EM-COR/OH.01-CQLN.01/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN07-AR/EM-COR/OH.01-CQLT.01/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SH10_COR_004 + mapping: + - [B2, SH10_COR_004.sextupole] + - [B0, SH10_COR_004.hcorrector] + - [A0, SH10_COR_004.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0, A0] + units: [1/m**2, '1', '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN07-AR/EM-SX/SHF.01/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN07-AR/EM-COR/SHF.01-CDLH.01/strength + unit: '1' + - type: tango.pyaml.attribute + attribute: AN07-AR/EM-COR/SHF.01-CDLV.01/strength + unit: '1' +- type: pyaml.bpm.bpm + name: BPM_058 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN07-AR/DG-EPOS/BPM.03/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN07-AR/DG-EPOS/BPM.03/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: OH11_QCORROCT_54_001 + mapping: + - [B3, OH11_QCORROCT_54_001.octupole] + - [B1, OH11_QCORROCT_54_001.quadrupole] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1] + units: [1/m**3, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN07-AR/EM-OCT/OH.02/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN07-AR/EM-COR/OH.02-CQLN.02/strength + unit: 1/m**2 +- type: pyaml.magnet.sextupole + name: SH11_004 + model: + type: pyaml.magnet.identity_model + unit: 1/m**2 + physics: + type: tango.pyaml.attribute + attribute: AN07-AR/EM-SX/SHD.02/strength + unit: 1/m**2 +- type: pyaml.magnet.quadrupole + name: QCORR_065 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN07-AR/EM-COR/CQLN.03/strength + unit: 1/m +- type: pyaml.magnet.cfm_magnet + name: SH12_COR_004 + mapping: + - [B2, SH12_COR_004.sextupole] + - [B0, SH12_COR_004.hcorrector] + - [A0, SH12_COR_004.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0, A0] + units: [1/m**2, '1', '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN07-AR/EM-SX/SHD.03/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN07-AR/EM-COR/SHD.03-CDLH.02/strength + unit: '1' + - type: tango.pyaml.attribute + attribute: AN07-AR/EM-COR/SHD.03-CDLV.02/strength + unit: '1' +- type: pyaml.magnet.sextupole + name: SXD42_002 + model: + type: pyaml.magnet.identity_model + unit: 1/m**2 + physics: + type: tango.pyaml.attribute + attribute: AN07-AR/EM-SX/SCD.01/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: OCTF4_QCORROCT_55_QT_001 + mapping: + - [B3, OCTF4_QCORROCT_55_QT_001.octupole] + - [B1, OCTF4_QCORROCT_55_QT_001.quadrupole] + - [A1, OCTF4_QCORROCT_55_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN07-AR/EM-OCT/OC.01/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN07-AR/EM-COR/OC.01-CQLN.04/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN07-AR/EM-COR/OC.01-CQLT.02/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SXF42_HCOR_002 + mapping: + - [B2, SXF42_HCOR_002.sextupole] + - [B0, SXF42_HCOR_002.hcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN07-AR/EM-SX/SCF.02/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN07-AR/EM-COR/SCF.02-CDLH.03/strength + unit: '1' +- type: pyaml.bpm.bpm + name: BPM_059 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN07-AR/DG-EPOS/BPM.04/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN07-AR/DG-EPOS/BPM.04/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: SXD42_VCOR_002 + mapping: + - [B2, SXD42_VCOR_002.sextupole] + - [A0, SXD42_VCOR_002.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, A0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN07-AR/EM-SX/SCD.03/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN07-AR/EM-COR/SCD.03-CDLV.03/strength + unit: '1' +- type: pyaml.magnet.quadrupole + name: QCORR_066 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN07-AR/EM-COR/CQLN.05/strength + unit: 1/m +- type: pyaml.magnet.quadrupole + name: QCORR_067 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN07-AR/EM-COR/CQLN.06/strength + unit: 1/m +- type: pyaml.magnet.sextupole + name: SXD4_002 + model: + type: pyaml.magnet.identity_model + unit: 1/m**2 + physics: + type: tango.pyaml.attribute + attribute: AN07-AR/EM-SX/SCD.04/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: OCTF4_QCORROCT_56_QT_001 + mapping: + - [B3, OCTF4_QCORROCT_56_QT_001.octupole] + - [B1, OCTF4_QCORROCT_56_QT_001.quadrupole] + - [A1, OCTF4_QCORROCT_56_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN07-AR/EM-OCT/OC.02/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN07-AR/EM-COR/OC.02-CQLN.07/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN07-AR/EM-COR/OC.02-CQLT.03/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SXF4_HCOR_002 + mapping: + - [B2, SXF4_HCOR_002.sextupole] + - [B0, SXF4_HCOR_002.hcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN07-AR/EM-SX/SCF.05/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN07-AR/EM-COR/SCF.05-CDLH.04/strength + unit: '1' +- type: pyaml.bpm.bpm + name: BPM_060 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN07-AR/DG-EPOS/BPM.05/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN07-AR/DG-EPOS/BPM.05/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: SXD4_VCOR_002 + mapping: + - [B2, SXD4_VCOR_002.sextupole] + - [A0, SXD4_VCOR_002.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, A0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN07-AR/EM-SX/SCD.06/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN07-AR/EM-COR/SCD.06-CDLV.04/strength + unit: '1' +- type: pyaml.magnet.quadrupole + name: QCORR_068 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN07-AR/EM-COR/CQLN.08/strength + unit: 1/m +- type: pyaml.magnet.quadrupole + name: QCORR_069 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN07-AR/EM-COR/CQLN.09/strength + unit: 1/m +- type: pyaml.magnet.sextupole + name: SXD41_002 + model: + type: pyaml.magnet.identity_model + unit: 1/m**2 + physics: + type: tango.pyaml.attribute + attribute: AN07-AR/EM-SX/SCD.07/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SXF41_HCOR_002 + mapping: + - [B2, SXF41_HCOR_002.sextupole] + - [B0, SXF41_HCOR_002.hcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN07-AR/EM-SX/SCF.08/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN07-AR/EM-COR/SCF.08-CDLH.05/strength + unit: '1' +- type: pyaml.magnet.cfm_magnet + name: OCTF4_QCORROCT_57_QT_001 + mapping: + - [B3, OCTF4_QCORROCT_57_QT_001.octupole] + - [B1, OCTF4_QCORROCT_57_QT_001.quadrupole] + - [A1, OCTF4_QCORROCT_57_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN07-AR/EM-OCT/OC.03/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN07-AR/EM-COR/OC.03-CQLN.10/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN07-AR/EM-COR/OC.03-CQLT.04/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SXD41_VCOR_002 + mapping: + - [B2, SXD41_VCOR_002.sextupole] + - [A0, SXD41_VCOR_002.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, A0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN07-AR/EM-SX/SCD.09/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN07-AR/EM-COR/SCD.09-CDLV.05/strength + unit: '1' +- type: pyaml.bpm.bpm + name: BPM_061 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN07-AR/DG-EPOS/BPM.06/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN07-AR/DG-EPOS/BPM.06/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: SH9_COR_005 + mapping: + - [B2, SH9_COR_005.sextupole] + - [B0, SH9_COR_005.hcorrector] + - [A0, SH9_COR_005.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0, A0] + units: [1/m**2, '1', '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN07-AR/EM-SX/SHD.04/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN07-AR/EM-COR/SHD.04-CDLH.06/strength + unit: '1' + - type: tango.pyaml.attribute + attribute: AN07-AR/EM-COR/SHD.04-CDLV.06/strength + unit: '1' +- type: pyaml.magnet.quadrupole + name: QCORR_070 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN07-AR/EM-COR/CQLN.11/strength + unit: 1/m +- type: pyaml.magnet.sextupole + name: SH8_005 + model: + type: pyaml.magnet.identity_model + unit: 1/m**2 + physics: + type: tango.pyaml.attribute + attribute: AN07-AR/EM-SX/SHD.05/strength + unit: 1/m**2 +- type: pyaml.magnet.quadrupole + name: QCORR_071 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN07-AR/EM-COR/CQLN.12/strength + unit: 1/m +- type: pyaml.bpm.bpm + name: BPM_062 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN07-AR/DG-EPOS/BPM.07/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN07-AR/DG-EPOS/BPM.07/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: SH7_COR_005 + mapping: + - [B2, SH7_COR_005.sextupole] + - [B0, SH7_COR_005.hcorrector] + - [A0, SH7_COR_005.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0, A0] + units: [1/m**2, '1', '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN07-AR/EM-SX/SHF.06/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN07-AR/EM-COR/SHF.06-CDLH.07/strength + unit: '1' + - type: tango.pyaml.attribute + attribute: AN07-AR/EM-COR/SHF.06-CDLV.07/strength + unit: '1' +- type: pyaml.magnet.cfm_magnet + name: OH7_QCORROCT_58_QT_001 + mapping: + - [B3, OH7_QCORROCT_58_QT_001.octupole] + - [B1, OH7_QCORROCT_58_QT_001.quadrupole] + - [A1, OH7_QCORROCT_58_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN07-AR/EM-OCT/OH.03/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN07-AR/EM-COR/OH.03-CQLN.13/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN07-AR/EM-COR/OH.03-CQLT.05/strength + unit: 1/m**2 +- type: pyaml.bpm.bpm + name: BPM_063 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN08-SD/DG-EPOS/BPM.01/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN08-SD/DG-EPOS/BPM.01/y_pos + unit: mm +- type: pyaml.bpm.bpm + name: BPM_064 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN08-SD/DG-EPOS/BPM.02/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN08-SD/DG-EPOS/BPM.02/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: OH7_QCORROCT_59_QT_001 + mapping: + - [B3, OH7_QCORROCT_59_QT_001.octupole] + - [B1, OH7_QCORROCT_59_QT_001.quadrupole] + - [A1, OH7_QCORROCT_59_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN08-AR/EM-OCT/OH.01/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN08-AR/EM-COR/OH.01-CQLN.01/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN08-AR/EM-COR/OH.01-CQLT.01/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SH7_COR_006 + mapping: + - [B2, SH7_COR_006.sextupole] + - [B0, SH7_COR_006.hcorrector] + - [A0, SH7_COR_006.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0, A0] + units: [1/m**2, '1', '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN08-AR/EM-SX/SHF.01/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN08-AR/EM-COR/SHF.01-CDLH.01/strength + unit: '1' + - type: tango.pyaml.attribute + attribute: AN08-AR/EM-COR/SHF.01-CDLV.01/strength + unit: '1' +- type: pyaml.bpm.bpm + name: BPM_065 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN08-AR/DG-EPOS/BPM.03/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN08-AR/DG-EPOS/BPM.03/y_pos + unit: mm +- type: pyaml.magnet.quadrupole + name: QCORR_072 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN08-AR/EM-COR/CQLN.02/strength + unit: 1/m +- type: pyaml.magnet.sextupole + name: SH8_006 + model: + type: pyaml.magnet.identity_model + unit: 1/m**2 + physics: + type: tango.pyaml.attribute + attribute: AN08-AR/EM-SX/SHD.02/strength + unit: 1/m**2 +- type: pyaml.magnet.quadrupole + name: QCORR_073 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN08-AR/EM-COR/CQLN.03/strength + unit: 1/m +- type: pyaml.magnet.cfm_magnet + name: SH9_COR_006 + mapping: + - [B2, SH9_COR_006.sextupole] + - [B0, SH9_COR_006.hcorrector] + - [A0, SH9_COR_006.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0, A0] + units: [1/m**2, '1', '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN08-AR/EM-SX/SHD.03/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN08-AR/EM-COR/SHD.03-CDLH.02/strength + unit: '1' + - type: tango.pyaml.attribute + attribute: AN08-AR/EM-COR/SHD.03-CDLV.02/strength + unit: '1' +- type: pyaml.magnet.sextupole + name: SXD32_002 + model: + type: pyaml.magnet.identity_model + unit: 1/m**2 + physics: + type: tango.pyaml.attribute + attribute: AN08-AR/EM-SX/SCD.01/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: OCTF3_QCORROCT_60_QT_001 + mapping: + - [B3, OCTF3_QCORROCT_60_QT_001.octupole] + - [B1, OCTF3_QCORROCT_60_QT_001.quadrupole] + - [A1, OCTF3_QCORROCT_60_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN08-AR/EM-OCT/OC.01/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN08-AR/EM-COR/OC.01-CQLN.04/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN08-AR/EM-COR/OC.01-CQLT.02/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SXF32_HCOR_002 + mapping: + - [B2, SXF32_HCOR_002.sextupole] + - [B0, SXF32_HCOR_002.hcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN08-AR/EM-SX/SCF.02/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN08-AR/EM-COR/SCF.02-CDLH.03/strength + unit: '1' +- type: pyaml.bpm.bpm + name: BPM_066 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN08-AR/DG-EPOS/BPM.04/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN08-AR/DG-EPOS/BPM.04/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: SXD32_VCOR_002 + mapping: + - [B2, SXD32_VCOR_002.sextupole] + - [A0, SXD32_VCOR_002.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, A0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN08-AR/EM-SX/SCD.03/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN08-AR/EM-COR/SCD.03-CDLV.03/strength + unit: '1' +- type: pyaml.magnet.quadrupole + name: QCORR_074 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN08-AR/EM-COR/CQLN.05/strength + unit: 1/m +- type: pyaml.magnet.quadrupole + name: QCORR_075 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN08-AR/EM-COR/CQLN.06/strength + unit: 1/m +- type: pyaml.magnet.sextupole + name: SXD3_004 + model: + type: pyaml.magnet.identity_model + unit: 1/m**2 + physics: + type: tango.pyaml.attribute + attribute: AN08-AR/EM-SX/SCD.04/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: OCTF3_QCORROCT_61_QT_001 + mapping: + - [B3, OCTF3_QCORROCT_61_QT_001.octupole] + - [B1, OCTF3_QCORROCT_61_QT_001.quadrupole] + - [A1, OCTF3_QCORROCT_61_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN08-AR/EM-OCT/OC.02/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN08-AR/EM-COR/OC.02-CQLN.07/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN08-AR/EM-COR/OC.02-CQLT.03/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SXF3_HCOR_003 + mapping: + - [B2, SXF3_HCOR_003.sextupole] + - [B0, SXF3_HCOR_003.hcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN08-AR/EM-SX/SCF.05/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN08-AR/EM-COR/SCF.05-CDLH.04/strength + unit: '1' +- type: pyaml.bpm.bpm + name: BPM_067 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN08-AR/DG-EPOS/BPM.05/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN08-AR/DG-EPOS/BPM.05/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: SXD3_VCOR_004 + mapping: + - [B2, SXD3_VCOR_004.sextupole] + - [A0, SXD3_VCOR_004.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, A0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN08-AR/EM-SX/SCD.06/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN08-AR/EM-COR/SCD.06-CDLV.04/strength + unit: '1' +- type: pyaml.magnet.quadrupole + name: QCORR_076 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN08-AR/EM-COR/CQLN.08/strength + unit: 1/m +- type: pyaml.magnet.quadrupole + name: QCORR_077 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN08-AR/EM-COR/CQLN.09/strength + unit: 1/m +- type: pyaml.magnet.sextupole + name: SXD3_005 + model: + type: pyaml.magnet.identity_model + unit: 1/m**2 + physics: + type: tango.pyaml.attribute + attribute: AN08-AR/EM-SX/SCD.07/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: OCTF3_QCORROCT_62_QT_001 + mapping: + - [B3, OCTF3_QCORROCT_62_QT_001.octupole] + - [B1, OCTF3_QCORROCT_62_QT_001.quadrupole] + - [A1, OCTF3_QCORROCT_62_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN08-AR/EM-OCT/OC.03/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN08-AR/EM-COR/OC.03-CQLN.10/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN08-AR/EM-COR/OC.03-CQLT.04/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SXF33_HCOR_003 + mapping: + - [B2, SXF33_HCOR_003.sextupole] + - [B0, SXF33_HCOR_003.hcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN08-AR/EM-SX/SCF.08/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN08-AR/EM-COR/SCF.08-CDLH.05/strength + unit: '1' +- type: pyaml.bpm.bpm + name: BPM_068 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN08-AR/DG-EPOS/BPM.06/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN08-AR/DG-EPOS/BPM.06/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: SXD33_VCOR_002 + mapping: + - [B2, SXD33_VCOR_002.sextupole] + - [A0, SXD33_VCOR_002.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, A0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN08-AR/EM-SX/SCD.09/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN08-AR/EM-COR/SCD.09-CDLV.05/strength + unit: '1' +- type: pyaml.magnet.quadrupole + name: QCORR_078 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN08-AR/EM-COR/CQLN.11/strength + unit: 1/m +- type: pyaml.magnet.quadrupole + name: QCORR_079 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN08-AR/EM-COR/CQLN.12/strength + unit: 1/m +- type: pyaml.magnet.sextupole + name: SXD33_002 + model: + type: pyaml.magnet.identity_model + unit: 1/m**2 + physics: + type: tango.pyaml.attribute + attribute: AN08-AR/EM-SX/SCD.10/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SXF33_HCOR_004 + mapping: + - [B2, SXF33_HCOR_004.sextupole] + - [B0, SXF33_HCOR_004.hcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN08-AR/EM-SX/SCF.11/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN08-AR/EM-COR/SCF.11-CDLH.06/strength + unit: '1' +- type: pyaml.magnet.cfm_magnet + name: OCTF3_QCORROCT_63_QT_001 + mapping: + - [B3, OCTF3_QCORROCT_63_QT_001.octupole] + - [B1, OCTF3_QCORROCT_63_QT_001.quadrupole] + - [A1, OCTF3_QCORROCT_63_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN08-AR/EM-OCT/OC.04/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN08-AR/EM-COR/OC.04-CQLN.13/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN08-AR/EM-COR/OC.04-CQLT.05/strength + unit: 1/m**2 +- type: pyaml.bpm.bpm + name: BPM_069 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN08-AR/DG-EPOS/BPM.07/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN08-AR/DG-EPOS/BPM.07/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: SXD3_VCOR_005 + mapping: + - [B2, SXD3_VCOR_005.sextupole] + - [A0, SXD3_VCOR_005.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, A0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN08-AR/EM-SX/SCD.12/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN08-AR/EM-COR/SCD.12-CDLV.06/strength + unit: '1' +- type: pyaml.magnet.quadrupole + name: QCORR_080 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN08-AR/EM-COR/CQLN.14/strength + unit: 1/m +- type: pyaml.magnet.quadrupole + name: QCORR_081 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN08-AR/EM-COR/CQLN.15/strength + unit: 1/m +- type: pyaml.magnet.sextupole + name: SXD3_006 + model: + type: pyaml.magnet.identity_model + unit: 1/m**2 + physics: + type: tango.pyaml.attribute + attribute: AN08-AR/EM-SX/SCD.13/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SXF3_HCOR_004 + mapping: + - [B2, SXF3_HCOR_004.sextupole] + - [B0, SXF3_HCOR_004.hcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN08-AR/EM-SX/SCF.14/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN08-AR/EM-COR/SCF.14-CDLH.07/strength + unit: '1' +- type: pyaml.magnet.cfm_magnet + name: OCTF3_QCORROCT_64_QT_001 + mapping: + - [B3, OCTF3_QCORROCT_64_QT_001.octupole] + - [B1, OCTF3_QCORROCT_64_QT_001.quadrupole] + - [A1, OCTF3_QCORROCT_64_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN08-AR/EM-OCT/OC.05/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN08-AR/EM-COR/OC.05-CQLN.16/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN08-AR/EM-COR/OC.05-CQLT.06/strength + unit: 1/m**2 +- type: pyaml.bpm.bpm + name: BPM_070 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN08-AR/DG-EPOS/BPM.08/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN08-AR/DG-EPOS/BPM.08/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: SXD3_VCOR_006 + mapping: + - [B2, SXD3_VCOR_006.sextupole] + - [A0, SXD3_VCOR_006.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, A0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN08-AR/EM-SX/SCD.15/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN08-AR/EM-COR/SCD.15-CDLV.07/strength + unit: '1' +- type: pyaml.magnet.quadrupole + name: QCORR_082 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN08-AR/EM-COR/CQLN.17/strength + unit: 1/m +- type: pyaml.magnet.quadrupole + name: QCORR_083 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN08-AR/EM-COR/CQLN.18/strength + unit: 1/m +- type: pyaml.magnet.sextupole + name: SXD31_002 + model: + type: pyaml.magnet.identity_model + unit: 1/m**2 + physics: + type: tango.pyaml.attribute + attribute: AN08-AR/EM-SX/SCD.16/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SXF31_HCOR_002 + mapping: + - [B2, SXF31_HCOR_002.sextupole] + - [B0, SXF31_HCOR_002.hcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN08-AR/EM-SX/SCF.17/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN08-AR/EM-COR/SCF.17-CDLH.08/strength + unit: '1' +- type: pyaml.magnet.cfm_magnet + name: OCTF3_QCORROCT_65_QT_001 + mapping: + - [B3, OCTF3_QCORROCT_65_QT_001.octupole] + - [B1, OCTF3_QCORROCT_65_QT_001.quadrupole] + - [A1, OCTF3_QCORROCT_65_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN08-AR/EM-OCT/OC.06/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN08-AR/EM-COR/OC.06-CQLN.19/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN08-AR/EM-COR/OC.06-CQLT.07/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SXD31_VCOR_002 + mapping: + - [B2, SXD31_VCOR_002.sextupole] + - [A0, SXD31_VCOR_002.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, A0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN08-AR/EM-SX/SCD.18/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN08-AR/EM-COR/SCD.18-CDLV.08/strength + unit: '1' +- type: pyaml.bpm.bpm + name: BPM_071 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN08-AR/DG-EPOS/BPM.09/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN08-AR/DG-EPOS/BPM.09/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: SH9_COR_007 + mapping: + - [B2, SH9_COR_007.sextupole] + - [B0, SH9_COR_007.hcorrector] + - [A0, SH9_COR_007.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0, A0] + units: [1/m**2, '1', '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN08-AR/EM-SX/SHD.04/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN08-AR/EM-COR/SHD.04-CDLH.09/strength + unit: '1' + - type: tango.pyaml.attribute + attribute: AN08-AR/EM-COR/SHD.04-CDLV.09/strength + unit: '1' +- type: pyaml.magnet.quadrupole + name: QCORR_084 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN08-AR/EM-COR/CQLN.20/strength + unit: 1/m +- type: pyaml.magnet.sextupole + name: SH8_007 + model: + type: pyaml.magnet.identity_model + unit: 1/m**2 + physics: + type: tango.pyaml.attribute + attribute: AN08-AR/EM-SX/SHD.05/strength + unit: 1/m**2 +- type: pyaml.magnet.quadrupole + name: QCORR_085 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN08-AR/EM-COR/CQLN.21/strength + unit: 1/m +- type: pyaml.bpm.bpm + name: BPM_072 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN08-AR/DG-EPOS/BPM.10/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN08-AR/DG-EPOS/BPM.10/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: SH7_COR_007 + mapping: + - [B2, SH7_COR_007.sextupole] + - [B0, SH7_COR_007.hcorrector] + - [A0, SH7_COR_007.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0, A0] + units: [1/m**2, '1', '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN08-AR/EM-SX/SHF.06/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN08-AR/EM-COR/SHF.06-CDLH.10/strength + unit: '1' + - type: tango.pyaml.attribute + attribute: AN08-AR/EM-COR/SHF.06-CDLV.10/strength + unit: '1' +- type: pyaml.magnet.cfm_magnet + name: OH7_QCORROCT_66_QT_001 + mapping: + - [B3, OH7_QCORROCT_66_QT_001.octupole] + - [B1, OH7_QCORROCT_66_QT_001.quadrupole] + - [A1, OH7_QCORROCT_66_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN08-AR/EM-OCT/OH.02/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN08-AR/EM-COR/OH.02-CQLN.22/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN08-AR/EM-COR/OH.02-CQLT.08/strength + unit: 1/m**2 +- type: pyaml.bpm.bpm + name: BPM_073 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN09-SD/DG-EPOS/BPM.01/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN09-SD/DG-EPOS/BPM.01/y_pos + unit: mm +- type: pyaml.bpm.bpm + name: BPM_074 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN09-SD/DG-EPOS/BPM.02/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN09-SD/DG-EPOS/BPM.02/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: OH7_QCORROCT_67_QT_001 + mapping: + - [B3, OH7_QCORROCT_67_QT_001.octupole] + - [B1, OH7_QCORROCT_67_QT_001.quadrupole] + - [A1, OH7_QCORROCT_67_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN09-AR/EM-OCT/OH.01/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN09-AR/EM-COR/OH.01-CQLN.01/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN09-AR/EM-COR/OH.01-CQLT.01/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SH7_COR_008 + mapping: + - [B2, SH7_COR_008.sextupole] + - [B0, SH7_COR_008.hcorrector] + - [A0, SH7_COR_008.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0, A0] + units: [1/m**2, '1', '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN09-AR/EM-SX/SHF.01/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN09-AR/EM-COR/SHF.01-CDLH.01/strength + unit: '1' + - type: tango.pyaml.attribute + attribute: AN09-AR/EM-COR/SHF.01-CDLV.01/strength + unit: '1' +- type: pyaml.bpm.bpm + name: BPM_075 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN09-AR/DG-EPOS/BPM.03/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN09-AR/DG-EPOS/BPM.03/y_pos + unit: mm +- type: pyaml.magnet.quadrupole + name: QCORR_086 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN09-AR/EM-COR/CQLN.02/strength + unit: 1/m +- type: pyaml.magnet.sextupole + name: SH8_008 + model: + type: pyaml.magnet.identity_model + unit: 1/m**2 + physics: + type: tango.pyaml.attribute + attribute: AN09-AR/EM-SX/SHD.02/strength + unit: 1/m**2 +- type: pyaml.magnet.quadrupole + name: QCORR_087 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN09-AR/EM-COR/CQLN.03/strength + unit: 1/m +- type: pyaml.magnet.cfm_magnet + name: SH9_COR_008 + mapping: + - [B2, SH9_COR_008.sextupole] + - [B0, SH9_COR_008.hcorrector] + - [A0, SH9_COR_008.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0, A0] + units: [1/m**2, '1', '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN09-AR/EM-SX/SHD.03/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN09-AR/EM-COR/SHD.03-CDLH.02/strength + unit: '1' + - type: tango.pyaml.attribute + attribute: AN09-AR/EM-COR/SHD.03-CDLV.02/strength + unit: '1' +- type: pyaml.magnet.sextupole + name: SXD22_002 + model: + type: pyaml.magnet.identity_model + unit: 1/m**2 + physics: + type: tango.pyaml.attribute + attribute: AN09-AR/EM-SX/SCD.01/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: OCTF2_QCORROCT_68_QT_001 + mapping: + - [B3, OCTF2_QCORROCT_68_QT_001.octupole] + - [B1, OCTF2_QCORROCT_68_QT_001.quadrupole] + - [A1, OCTF2_QCORROCT_68_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN09-AR/EM-OCT/OC.01/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN09-AR/EM-COR/OC.01-CQLN.04/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN09-AR/EM-COR/OC.01-CQLT.02/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SXF22_HCOR_002 + mapping: + - [B2, SXF22_HCOR_002.sextupole] + - [B0, SXF22_HCOR_002.hcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN09-AR/EM-SX/SCF.02/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN09-AR/EM-COR/SCF.02-CDLH.03/strength + unit: '1' +- type: pyaml.bpm.bpm + name: BPM_076 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN09-AR/DG-EPOS/BPM.04/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN09-AR/DG-EPOS/BPM.04/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: SXD22_VCOR_002 + mapping: + - [B2, SXD22_VCOR_002.sextupole] + - [A0, SXD22_VCOR_002.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, A0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN09-AR/EM-SX/SCD.03/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN09-AR/EM-COR/SCD.03-CDLV.03/strength + unit: '1' +- type: pyaml.magnet.quadrupole + name: QCORR_088 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN09-AR/EM-COR/CQLN.05/strength + unit: 1/m +- type: pyaml.magnet.quadrupole + name: QCORR_089 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN09-AR/EM-COR/CQLN.06/strength + unit: 1/m +- type: pyaml.magnet.sextupole + name: SXD2_002 + model: + type: pyaml.magnet.identity_model + unit: 1/m**2 + physics: + type: tango.pyaml.attribute + attribute: AN09-AR/EM-SX/SCD.04/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SXF2_HCOR_002 + mapping: + - [B2, SXF2_HCOR_002.sextupole] + - [B0, SXF2_HCOR_002.hcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN09-AR/EM-SX/SCF.05/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN09-AR/EM-COR/SCF.05-CDLH.04/strength + unit: '1' +- type: pyaml.magnet.cfm_magnet + name: OCTF2_QCORROCT_69_QT_001 + mapping: + - [B3, OCTF2_QCORROCT_69_QT_001.octupole] + - [B1, OCTF2_QCORROCT_69_QT_001.quadrupole] + - [A1, OCTF2_QCORROCT_69_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN09-AR/EM-OCT/OC.02/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN09-AR/EM-COR/OC.02-CQLN.07/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN09-AR/EM-COR/OC.02-CQLT.03/strength + unit: 1/m**2 +- type: pyaml.bpm.bpm + name: BPM_077 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN09-AR/DG-EPOS/BPM.05/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN09-AR/DG-EPOS/BPM.05/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: SXD2_VCOR_002 + mapping: + - [B2, SXD2_VCOR_002.sextupole] + - [A0, SXD2_VCOR_002.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, A0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN09-AR/EM-SX/SCD.06/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN09-AR/EM-COR/SCD.06-CDLV.04/strength + unit: '1' +- type: pyaml.magnet.quadrupole + name: QCORR_090 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN09-AR/EM-COR/CQLN.08/strength + unit: 1/m +- type: pyaml.magnet.quadrupole + name: QCORR_091 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN09-AR/EM-COR/CQLN.09/strength + unit: 1/m +- type: pyaml.magnet.sextupole + name: SXD21_002 + model: + type: pyaml.magnet.identity_model + unit: 1/m**2 + physics: + type: tango.pyaml.attribute + attribute: AN09-AR/EM-SX/SCD.07/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SXF21_HCOR_002 + mapping: + - [B2, SXF21_HCOR_002.sextupole] + - [B0, SXF21_HCOR_002.hcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN09-AR/EM-SX/SCF.08/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN09-AR/EM-COR/SCF.08-CDLH.05/strength + unit: '1' +- type: pyaml.magnet.cfm_magnet + name: OCTF2_QCORROCT_70_QT_001 + mapping: + - [B3, OCTF2_QCORROCT_70_QT_001.octupole] + - [B1, OCTF2_QCORROCT_70_QT_001.quadrupole] + - [A1, OCTF2_QCORROCT_70_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN09-AR/EM-OCT/OC.03/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN09-AR/EM-COR/OC.03-CQLN.10/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN09-AR/EM-COR/OC.03-CQLT.04/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SXD21_VCOR_002 + mapping: + - [B2, SXD21_VCOR_002.sextupole] + - [A0, SXD21_VCOR_002.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, A0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN09-AR/EM-SX/SCD.09/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN09-AR/EM-COR/SCD.09-CDLV.05/strength + unit: '1' +- type: pyaml.bpm.bpm + name: BPM_078 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN09-AR/DG-EPOS/BPM.06/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN09-AR/DG-EPOS/BPM.06/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: SH6_COR_003 + mapping: + - [B2, SH6_COR_003.sextupole] + - [B0, SH6_COR_003.hcorrector] + - [A0, SH6_COR_003.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0, A0] + units: [1/m**2, '1', '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN09-AR/EM-SX/SHD.04/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN09-AR/EM-COR/SHD.04-CDLH.06/strength + unit: '1' + - type: tango.pyaml.attribute + attribute: AN09-AR/EM-COR/SHD.04-CDLV.06/strength + unit: '1' +- type: pyaml.magnet.quadrupole + name: QCORR_092 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN09-AR/EM-COR/CQLN.11/strength + unit: 1/m +- type: pyaml.magnet.sextupole + name: SH5_003 + model: + type: pyaml.magnet.identity_model + unit: 1/m**2 + physics: + type: tango.pyaml.attribute + attribute: AN09-AR/EM-SX/SHD.05/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: OH5_QCORROCT_71_001 + mapping: + - [B3, OH5_QCORROCT_71_001.octupole] + - [B1, OH5_QCORROCT_71_001.quadrupole] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1] + units: [1/m**3, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN09-AR/EM-OCT/OH.02/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN09-AR/EM-COR/OH.02-CQLN.12/strength + unit: 1/m**2 +- type: pyaml.bpm.bpm + name: BPM_079 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN09-AR/DG-EPOS/BPM.07/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN09-AR/DG-EPOS/BPM.07/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: SH4_COR_003 + mapping: + - [B2, SH4_COR_003.sextupole] + - [B0, SH4_COR_003.hcorrector] + - [A0, SH4_COR_003.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0, A0] + units: [1/m**2, '1', '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN09-AR/EM-SX/SHF.06/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN09-AR/EM-COR/SHF.06-CDLH.07/strength + unit: '1' + - type: tango.pyaml.attribute + attribute: AN09-AR/EM-COR/SHF.06-CDLV.07/strength + unit: '1' +- type: pyaml.magnet.cfm_magnet + name: OH4_QCORROCT_72_QT_001 + mapping: + - [B3, OH4_QCORROCT_72_QT_001.octupole] + - [B1, OH4_QCORROCT_72_QT_001.quadrupole] + - [A1, OH4_QCORROCT_72_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN09-AR/EM-OCT/OH.03/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN09-AR/EM-COR/OH.03-CQLN.13/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN09-AR/EM-COR/OH.03-CQLT.05/strength + unit: 1/m**2 +- type: pyaml.bpm.bpm + name: BPM_080 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN10-SD/DG-EPOS/BPM.01/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN10-SD/DG-EPOS/BPM.01/y_pos + unit: mm +- type: pyaml.bpm.bpm + name: BPM_081 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN10-SD/DG-EPOS/BPM.02/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN10-SD/DG-EPOS/BPM.02/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: OH4_QCORROCT_73_QT_001 + mapping: + - [B3, OH4_QCORROCT_73_QT_001.octupole] + - [B1, OH4_QCORROCT_73_QT_001.quadrupole] + - [A1, OH4_QCORROCT_73_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN10-AR/EM-OCT/OH.01/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN10-AR/EM-COR/OH.01-CQLN.01/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN10-AR/EM-COR/OH.01-CQLT.01/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SH4_COR_004 + mapping: + - [B2, SH4_COR_004.sextupole] + - [B0, SH4_COR_004.hcorrector] + - [A0, SH4_COR_004.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0, A0] + units: [1/m**2, '1', '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN10-AR/EM-SX/SHF.01/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN10-AR/EM-COR/SHF.01-CDLH.01/strength + unit: '1' + - type: tango.pyaml.attribute + attribute: AN10-AR/EM-COR/SHF.01-CDLV.01/strength + unit: '1' +- type: pyaml.bpm.bpm + name: BPM_082 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN10-AR/DG-EPOS/BPM.03/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN10-AR/DG-EPOS/BPM.03/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: OH5_QCORROCT_74_001 + mapping: + - [B3, OH5_QCORROCT_74_001.octupole] + - [B1, OH5_QCORROCT_74_001.quadrupole] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1] + units: [1/m**3, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN10-AR/EM-OCT/OH.02/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN10-AR/EM-COR/OH.02-CQLN.02/strength + unit: 1/m**2 +- type: pyaml.magnet.sextupole + name: SH5_004 + model: + type: pyaml.magnet.identity_model + unit: 1/m**2 + physics: + type: tango.pyaml.attribute + attribute: AN10-AR/EM-SX/SHD.02/strength + unit: 1/m**2 +- type: pyaml.magnet.quadrupole + name: QCORR_093 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN10-AR/EM-COR/CQLN.03/strength + unit: 1/m +- type: pyaml.magnet.cfm_magnet + name: SH6_COR_004 + mapping: + - [B2, SH6_COR_004.sextupole] + - [B0, SH6_COR_004.hcorrector] + - [A0, SH6_COR_004.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0, A0] + units: [1/m**2, '1', '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN10-AR/EM-SX/SHD.03/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN10-AR/EM-COR/SHD.03-CDLH.02/strength + unit: '1' + - type: tango.pyaml.attribute + attribute: AN10-AR/EM-COR/SHD.03-CDLV.02/strength + unit: '1' +- type: pyaml.magnet.sextupole + name: SXD12_002 + model: + type: pyaml.magnet.identity_model + unit: 1/m**2 + physics: + type: tango.pyaml.attribute + attribute: AN10-AR/EM-SX/SCD.01/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: OCTF1_QCORROCT_75_QT_001 + mapping: + - [B3, OCTF1_QCORROCT_75_QT_001.octupole] + - [B1, OCTF1_QCORROCT_75_QT_001.quadrupole] + - [A1, OCTF1_QCORROCT_75_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN10-AR/EM-OCT/OC.01/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN10-AR/EM-COR/OC.01-CQLN.04/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN10-AR/EM-COR/OC.01-CQLT.02/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SXF12_HCOR_002 + mapping: + - [B2, SXF12_HCOR_002.sextupole] + - [B0, SXF12_HCOR_002.hcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN10-AR/EM-SX/SCF.02/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN10-AR/EM-COR/SCF.02-CDLH.03/strength + unit: '1' +- type: pyaml.bpm.bpm + name: BPM_083 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN10-AR/DG-EPOS/BPM.04/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN10-AR/DG-EPOS/BPM.04/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: SXD12_VCOR_002 + mapping: + - [B2, SXD12_VCOR_002.sextupole] + - [A0, SXD12_VCOR_002.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, A0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN10-AR/EM-SX/SCD.03/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN10-AR/EM-COR/SCD.03-CDLV.03/strength + unit: '1' +- type: pyaml.magnet.quadrupole + name: QCORR_094 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN10-AR/EM-COR/CQLN.05/strength + unit: 1/m +- type: pyaml.magnet.quadrupole + name: QCORR_095 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN10-AR/EM-COR/CQLN.06/strength + unit: 1/m +- type: pyaml.magnet.sextupole + name: SXD1_004 + model: + type: pyaml.magnet.identity_model + unit: 1/m**2 + physics: + type: tango.pyaml.attribute + attribute: AN10-AR/EM-SX/SCD.04/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: OCTF1_QCORROCT_76_QT_001 + mapping: + - [B3, OCTF1_QCORROCT_76_QT_001.octupole] + - [B1, OCTF1_QCORROCT_76_QT_001.quadrupole] + - [A1, OCTF1_QCORROCT_76_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN10-AR/EM-OCT/OC.02/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN10-AR/EM-COR/OC.02-CQLN.07/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN10-AR/EM-COR/OC.02-CQLT.03/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SXF1_HCOR_003 + mapping: + - [B2, SXF1_HCOR_003.sextupole] + - [B0, SXF1_HCOR_003.hcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN10-AR/EM-SX/SCF.05/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN10-AR/EM-COR/SCF.05-CDLH.04/strength + unit: '1' +- type: pyaml.bpm.bpm + name: BPM_084 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN10-AR/DG-EPOS/BPM.05/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN10-AR/DG-EPOS/BPM.05/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: SXD1_VCOR_004 + mapping: + - [B2, SXD1_VCOR_004.sextupole] + - [A0, SXD1_VCOR_004.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, A0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN10-AR/EM-SX/SCD.06/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN10-AR/EM-COR/SCD.06-CDLV.04/strength + unit: '1' +- type: pyaml.magnet.quadrupole + name: QCORR_096 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN10-AR/EM-COR/CQLN.08/strength + unit: 1/m +- type: pyaml.magnet.quadrupole + name: QCORR_097 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN10-AR/EM-COR/CQLN.09/strength + unit: 1/m +- type: pyaml.magnet.sextupole + name: SXD1_005 + model: + type: pyaml.magnet.identity_model + unit: 1/m**2 + physics: + type: tango.pyaml.attribute + attribute: AN10-AR/EM-SX/SCD.07/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: OCTF1_QCORROCT_77_QT_001 + mapping: + - [B3, OCTF1_QCORROCT_77_QT_001.octupole] + - [B1, OCTF1_QCORROCT_77_QT_001.quadrupole] + - [A1, OCTF1_QCORROCT_77_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN10-AR/EM-OCT/OC.03/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN10-AR/EM-COR/OC.03-CQLN.10/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN10-AR/EM-COR/OC.03-CQLT.04/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SXF13_HCOR_003 + mapping: + - [B2, SXF13_HCOR_003.sextupole] + - [B0, SXF13_HCOR_003.hcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN10-AR/EM-SX/SCF.08/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN10-AR/EM-COR/SCF.08-CDLH.05/strength + unit: '1' +- type: pyaml.bpm.bpm + name: BPM_085 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN10-AR/DG-EPOS/BPM.06/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN10-AR/DG-EPOS/BPM.06/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: SXD13_VCOR_002 + mapping: + - [B2, SXD13_VCOR_002.sextupole] + - [A0, SXD13_VCOR_002.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, A0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN10-AR/EM-SX/SCD.09/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN10-AR/EM-COR/SCD.09-CDLV.05/strength + unit: '1' +- type: pyaml.magnet.quadrupole + name: QCORR_098 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN10-AR/EM-COR/CQLN.11/strength + unit: 1/m +- type: pyaml.magnet.quadrupole + name: QCORR_099 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN10-AR/EM-COR/CQLN.12/strength + unit: 1/m +- type: pyaml.magnet.sextupole + name: SXD13_002 + model: + type: pyaml.magnet.identity_model + unit: 1/m**2 + physics: + type: tango.pyaml.attribute + attribute: AN10-AR/EM-SX/SCD.10/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SXF13_HCOR_004 + mapping: + - [B2, SXF13_HCOR_004.sextupole] + - [B0, SXF13_HCOR_004.hcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN10-AR/EM-SX/SCF.11/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN10-AR/EM-COR/SCF.11-CDLH.06/strength + unit: '1' +- type: pyaml.magnet.cfm_magnet + name: OCTF1_QCORROCT_78_QT_001 + mapping: + - [B3, OCTF1_QCORROCT_78_QT_001.octupole] + - [B1, OCTF1_QCORROCT_78_QT_001.quadrupole] + - [A1, OCTF1_QCORROCT_78_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN10-AR/EM-OCT/OC.04/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN10-AR/EM-COR/OC.04-CQLN.13/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN10-AR/EM-COR/OC.04-CQLT.05/strength + unit: 1/m**2 +- type: pyaml.bpm.bpm + name: BPM_086 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN10-AR/DG-EPOS/BPM.07/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN10-AR/DG-EPOS/BPM.07/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: SXD1_VCOR_005 + mapping: + - [B2, SXD1_VCOR_005.sextupole] + - [A0, SXD1_VCOR_005.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, A0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN10-AR/EM-SX/SCD.12/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN10-AR/EM-COR/SCD.12-CDLV.06/strength + unit: '1' +- type: pyaml.magnet.quadrupole + name: QCORR_100 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN10-AR/EM-COR/CQLN.14/strength + unit: 1/m +- type: pyaml.magnet.quadrupole + name: QCORR_101 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN10-AR/EM-COR/CQLN.15/strength + unit: 1/m +- type: pyaml.magnet.sextupole + name: SXD1_006 + model: + type: pyaml.magnet.identity_model + unit: 1/m**2 + physics: + type: tango.pyaml.attribute + attribute: AN10-AR/EM-SX/SCD.13/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SXF1_HCOR_004 + mapping: + - [B2, SXF1_HCOR_004.sextupole] + - [B0, SXF1_HCOR_004.hcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN10-AR/EM-SX/SCF.14/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN10-AR/EM-COR/SCF.14-CDLH.07/strength + unit: '1' +- type: pyaml.magnet.cfm_magnet + name: OCTF1_QCORROCT_79_QT_001 + mapping: + - [B3, OCTF1_QCORROCT_79_QT_001.octupole] + - [B1, OCTF1_QCORROCT_79_QT_001.quadrupole] + - [A1, OCTF1_QCORROCT_79_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN10-AR/EM-OCT/OC.05/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN10-AR/EM-COR/OC.05-CQLN.16/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN10-AR/EM-COR/OC.05-CQLT.06/strength + unit: 1/m**2 +- type: pyaml.bpm.bpm + name: BPM_087 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN10-AR/DG-EPOS/BPM.08/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN10-AR/DG-EPOS/BPM.08/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: SXD1_VCOR_006 + mapping: + - [B2, SXD1_VCOR_006.sextupole] + - [A0, SXD1_VCOR_006.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, A0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN10-AR/EM-SX/SCD.15/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN10-AR/EM-COR/SCD.15-CDLV.07/strength + unit: '1' +- type: pyaml.magnet.quadrupole + name: QCORR_102 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN10-AR/EM-COR/CQLN.17/strength + unit: 1/m +- type: pyaml.magnet.quadrupole + name: QCORR_103 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN10-AR/EM-COR/CQLN.18/strength + unit: 1/m +- type: pyaml.magnet.sextupole + name: SXD11_002 + model: + type: pyaml.magnet.identity_model + unit: 1/m**2 + physics: + type: tango.pyaml.attribute + attribute: AN10-AR/EM-SX/SCD.16/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SXF11_HCOR_002 + mapping: + - [B2, SXF11_HCOR_002.sextupole] + - [B0, SXF11_HCOR_002.hcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN10-AR/EM-SX/SCF.17/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN10-AR/EM-COR/SCF.17-CDLH.08/strength + unit: '1' +- type: pyaml.magnet.cfm_magnet + name: OCTF1_QCORROCT_80_QT_001 + mapping: + - [B3, OCTF1_QCORROCT_80_QT_001.octupole] + - [B1, OCTF1_QCORROCT_80_QT_001.quadrupole] + - [A1, OCTF1_QCORROCT_80_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN10-AR/EM-OCT/OC.06/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN10-AR/EM-COR/OC.06-CQLN.19/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN10-AR/EM-COR/OC.06-CQLT.07/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SXD11_VCOR_002 + mapping: + - [B2, SXD11_VCOR_002.sextupole] + - [A0, SXD11_VCOR_002.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, A0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN10-AR/EM-SX/SCD.18/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN10-AR/EM-COR/SCD.18-CDLV.08/strength + unit: '1' +- type: pyaml.bpm.bpm + name: BPM_088 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN10-AR/DG-EPOS/BPM.09/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN10-AR/DG-EPOS/BPM.09/y_pos + unit: mm +- type: pyaml.magnet.quadrupole + name: QCORR_104 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN10-AR/EM-COR/CQLN.20/strength + unit: 1/m +- type: pyaml.magnet.cfm_magnet + name: SH3_VCOR_002 + mapping: + - [B2, SH3_VCOR_002.sextupole] + - [A0, SH3_VCOR_002.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, A0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN10-AR/EM-SX/SHD.04/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN10-AR/EM-COR/SHD.04-CDLV.09/strength + unit: '1' +- type: pyaml.bpm.bpm + name: BPM_089 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN10-AR/DG-EPOS/BPM.10/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN10-AR/DG-EPOS/BPM.10/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: OH2_QCORROCT_81_001 + mapping: + - [B3, OH2_QCORROCT_81_001.octupole] + - [B1, OH2_QCORROCT_81_001.quadrupole] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1] + units: [1/m**3, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN10-AR/EM-OCT/OH.03/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN10-AR/EM-COR/OH.03-CQLN.21/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SH2_HCOR_002 + mapping: + - [B2, SH2_HCOR_002.sextupole] + - [B0, SH2_HCOR_002.hcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN10-AR/EM-SX/SHD.05/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN10-AR/EM-COR/SHD.05-CDLH.09/strength + unit: '1' +- type: pyaml.magnet.cfm_magnet + name: OH1_QCORROCT_82_QT_001 + mapping: + - [B3, OH1_QCORROCT_82_QT_001.octupole] + - [B1, OH1_QCORROCT_82_QT_001.quadrupole] + - [A1, OH1_QCORROCT_82_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN10-AR/EM-OCT/OH.04/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN10-AR/EM-COR/OH.04-CQLN.22/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN10-AR/EM-COR/OH.04-CQLT.08/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SH1_COR_002 + mapping: + - [B2, SH1_COR_002.sextupole] + - [B0, SH1_COR_002.hcorrector] + - [A0, SH1_COR_002.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0, A0] + units: [1/m**2, '1', '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN10-AR/EM-SX/SHF.06/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN10-AR/EM-COR/SHF.06-CDLH.10/strength + unit: '1' + - type: tango.pyaml.attribute + attribute: AN10-AR/EM-COR/SHF.06-CDLV.10/strength + unit: '1' +- type: pyaml.bpm.bpm + name: BPM_090 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN11-SD/DG-EPOS/BPM.01/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN11-SD/DG-EPOS/BPM.01/y_pos + unit: mm +- type: pyaml.bpm.bpm + name: BPM_091 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN11-SD/DG-EPOS/BPM.02/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN11-SD/DG-EPOS/BPM.02/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: SH1_COR_003 + mapping: + - [B2, SH1_COR_003.sextupole] + - [B0, SH1_COR_003.hcorrector] + - [A0, SH1_COR_003.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0, A0] + units: [1/m**2, '1', '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN11-AR/EM-SX/SHF.01/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN11-AR/EM-COR/SHF.01-CDLH.01/strength + unit: '1' + - type: tango.pyaml.attribute + attribute: AN11-AR/EM-COR/SHF.01-CDLV.01/strength + unit: '1' +- type: pyaml.magnet.cfm_magnet + name: OH1_QCORROCT_83_QT_001 + mapping: + - [B3, OH1_QCORROCT_83_QT_001.octupole] + - [B1, OH1_QCORROCT_83_QT_001.quadrupole] + - [A1, OH1_QCORROCT_83_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN11-AR/EM-OCT/OH.01/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN11-AR/EM-COR/OH.01-CQLN.01/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN11-AR/EM-COR/OH.01-CQLT.01/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SH2_HCOR_003 + mapping: + - [B2, SH2_HCOR_003.sextupole] + - [B0, SH2_HCOR_003.hcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN11-AR/EM-SX/SHD.02/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN11-AR/EM-COR/SHD.02-CDLH.02/strength + unit: '1' +- type: pyaml.magnet.cfm_magnet + name: OH2_QCORROCT_84_001 + mapping: + - [B3, OH2_QCORROCT_84_001.octupole] + - [B1, OH2_QCORROCT_84_001.quadrupole] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1] + units: [1/m**3, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN11-AR/EM-OCT/OH.02/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN11-AR/EM-COR/OH.02-CQLN.02/strength + unit: 1/m**2 +- type: pyaml.bpm.bpm + name: BPM_092 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN11-AR/DG-EPOS/BPM.03/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN11-AR/DG-EPOS/BPM.03/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: SH3_VCOR_003 + mapping: + - [B2, SH3_VCOR_003.sextupole] + - [A0, SH3_VCOR_003.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, A0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN11-AR/EM-SX/SHD.03/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN11-AR/EM-COR/SHD.03-CDLV.02/strength + unit: '1' +- type: pyaml.magnet.quadrupole + name: QCORR_105 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN11-AR/EM-COR/CQLN.03/strength + unit: 1/m +- type: pyaml.magnet.sextupole + name: SXD11_003 + model: + type: pyaml.magnet.identity_model + unit: 1/m**2 + physics: + type: tango.pyaml.attribute + attribute: AN11-AR/EM-SX/SCD.01/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: OCTF1_QCORROCT_85_QT_001 + mapping: + - [B3, OCTF1_QCORROCT_85_QT_001.octupole] + - [B1, OCTF1_QCORROCT_85_QT_001.quadrupole] + - [A1, OCTF1_QCORROCT_85_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN11-AR/EM-OCT/OC.01/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN11-AR/EM-COR/OC.01-CQLN.04/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN11-AR/EM-COR/OC.01-CQLT.02/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SXF11_HCOR_003 + mapping: + - [B2, SXF11_HCOR_003.sextupole] + - [B0, SXF11_HCOR_003.hcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN11-AR/EM-SX/SCF.02/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN11-AR/EM-COR/SCF.02-CDLH.03/strength + unit: '1' +- type: pyaml.bpm.bpm + name: BPM_093 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN11-AR/DG-EPOS/BPM.04/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN11-AR/DG-EPOS/BPM.04/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: SXD11_VCOR_003 + mapping: + - [B2, SXD11_VCOR_003.sextupole] + - [A0, SXD11_VCOR_003.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, A0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN11-AR/EM-SX/SCD.03/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN11-AR/EM-COR/SCD.03-CDLV.03/strength + unit: '1' +- type: pyaml.magnet.quadrupole + name: QCORR_106 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN11-AR/EM-COR/CQLN.05/strength + unit: 1/m +- type: pyaml.magnet.quadrupole + name: QCORR_107 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN11-AR/EM-COR/CQLN.06/strength + unit: 1/m +- type: pyaml.magnet.sextupole + name: SXD1_007 + model: + type: pyaml.magnet.identity_model + unit: 1/m**2 + physics: + type: tango.pyaml.attribute + attribute: AN11-AR/EM-SX/SCD.04/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: OCTF1_QCORROCT_86_QT_001 + mapping: + - [B3, OCTF1_QCORROCT_86_QT_001.octupole] + - [B1, OCTF1_QCORROCT_86_QT_001.quadrupole] + - [A1, OCTF1_QCORROCT_86_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN11-AR/EM-OCT/OC.02/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN11-AR/EM-COR/OC.02-CQLN.07/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN11-AR/EM-COR/OC.02-CQLT.03/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SXF1_HCOR_005 + mapping: + - [B2, SXF1_HCOR_005.sextupole] + - [B0, SXF1_HCOR_005.hcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN11-AR/EM-SX/SCF.05/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN11-AR/EM-COR/SCF.05-CDLH.04/strength + unit: '1' +- type: pyaml.bpm.bpm + name: BPM_094 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN11-AR/DG-EPOS/BPM.05/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN11-AR/DG-EPOS/BPM.05/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: SXD1_VCOR_007 + mapping: + - [B2, SXD1_VCOR_007.sextupole] + - [A0, SXD1_VCOR_007.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, A0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN11-AR/EM-SX/SCD.06/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN11-AR/EM-COR/SCD.06-CDLV.04/strength + unit: '1' +- type: pyaml.magnet.quadrupole + name: QCORR_108 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN11-AR/EM-COR/CQLN.08/strength + unit: 1/m +- type: pyaml.magnet.quadrupole + name: QCORR_109 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN11-AR/EM-COR/CQLN.09/strength + unit: 1/m +- type: pyaml.magnet.sextupole + name: SXD1_008 + model: + type: pyaml.magnet.identity_model + unit: 1/m**2 + physics: + type: tango.pyaml.attribute + attribute: AN11-AR/EM-SX/SCD.07/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: OCTF1_QCORROCT_87_QT_001 + mapping: + - [B3, OCTF1_QCORROCT_87_QT_001.octupole] + - [B1, OCTF1_QCORROCT_87_QT_001.quadrupole] + - [A1, OCTF1_QCORROCT_87_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN11-AR/EM-OCT/OC.03/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN11-AR/EM-COR/OC.03-CQLN.10/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN11-AR/EM-COR/OC.03-CQLT.04/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SXF13_HCOR_005 + mapping: + - [B2, SXF13_HCOR_005.sextupole] + - [B0, SXF13_HCOR_005.hcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN11-AR/EM-SX/SCF.08/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN11-AR/EM-COR/SCF.08-CDLH.05/strength + unit: '1' +- type: pyaml.bpm.bpm + name: BPM_095 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN11-AR/DG-EPOS/BPM.06/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN11-AR/DG-EPOS/BPM.06/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: SXD13_VCOR_003 + mapping: + - [B2, SXD13_VCOR_003.sextupole] + - [A0, SXD13_VCOR_003.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, A0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN11-AR/EM-SX/SCD.09/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN11-AR/EM-COR/SCD.09-CDLV.05/strength + unit: '1' +- type: pyaml.magnet.quadrupole + name: QCORR_110 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN11-AR/EM-COR/CQLN.11/strength + unit: 1/m +- type: pyaml.magnet.quadrupole + name: QCORR_111 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN11-AR/EM-COR/CQLN.12/strength + unit: 1/m +- type: pyaml.magnet.sextupole + name: SXD13_003 + model: + type: pyaml.magnet.identity_model + unit: 1/m**2 + physics: + type: tango.pyaml.attribute + attribute: AN11-AR/EM-SX/SCD.10/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SXF13_HCOR_006 + mapping: + - [B2, SXF13_HCOR_006.sextupole] + - [B0, SXF13_HCOR_006.hcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN11-AR/EM-SX/SCF.11/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN11-AR/EM-COR/SCF.11-CDLH.06/strength + unit: '1' +- type: pyaml.magnet.cfm_magnet + name: OCTF1_QCORROCT_88_QT_001 + mapping: + - [B3, OCTF1_QCORROCT_88_QT_001.octupole] + - [B1, OCTF1_QCORROCT_88_QT_001.quadrupole] + - [A1, OCTF1_QCORROCT_88_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN11-AR/EM-OCT/OC.04/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN11-AR/EM-COR/OC.04-CQLN.13/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN11-AR/EM-COR/OC.04-CQLT.05/strength + unit: 1/m**2 +- type: pyaml.bpm.bpm + name: BPM_096 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN11-AR/DG-EPOS/BPM.07/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN11-AR/DG-EPOS/BPM.07/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: SXD1_VCOR_008 + mapping: + - [B2, SXD1_VCOR_008.sextupole] + - [A0, SXD1_VCOR_008.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, A0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN11-AR/EM-SX/SCD.12/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN11-AR/EM-COR/SCD.12-CDLV.06/strength + unit: '1' +- type: pyaml.magnet.quadrupole + name: QCORR_112 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN11-AR/EM-COR/CQLN.14/strength + unit: 1/m +- type: pyaml.magnet.quadrupole + name: QCORR_113 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN11-AR/EM-COR/CQLN.15/strength + unit: 1/m +- type: pyaml.magnet.sextupole + name: SXD1_009 + model: + type: pyaml.magnet.identity_model + unit: 1/m**2 + physics: + type: tango.pyaml.attribute + attribute: AN11-AR/EM-SX/SCD.13/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SXF1_HCOR_006 + mapping: + - [B2, SXF1_HCOR_006.sextupole] + - [B0, SXF1_HCOR_006.hcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN11-AR/EM-SX/SCF.14/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN11-AR/EM-COR/SCF.14-CDLH.07/strength + unit: '1' +- type: pyaml.magnet.cfm_magnet + name: OCTF1_QCORROCT_89_QT_001 + mapping: + - [B3, OCTF1_QCORROCT_89_QT_001.octupole] + - [B1, OCTF1_QCORROCT_89_QT_001.quadrupole] + - [A1, OCTF1_QCORROCT_89_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN11-AR/EM-OCT/OC.05/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN11-AR/EM-COR/OC.05-CQLN.16/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN11-AR/EM-COR/OC.05-CQLT.06/strength + unit: 1/m**2 +- type: pyaml.bpm.bpm + name: BPM_097 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN11-AR/DG-EPOS/BPM.08/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN11-AR/DG-EPOS/BPM.08/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: SXD1_VCOR_009 + mapping: + - [B2, SXD1_VCOR_009.sextupole] + - [A0, SXD1_VCOR_009.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, A0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN11-AR/EM-SX/SCD.15/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN11-AR/EM-COR/SCD.15-CDLV.07/strength + unit: '1' +- type: pyaml.magnet.quadrupole + name: QCORR_114 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN11-AR/EM-COR/CQLN.17/strength + unit: 1/m +- type: pyaml.magnet.quadrupole + name: QCORR_115 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN11-AR/EM-COR/CQLN.18/strength + unit: 1/m +- type: pyaml.magnet.sextupole + name: SXD12_003 + model: + type: pyaml.magnet.identity_model + unit: 1/m**2 + physics: + type: tango.pyaml.attribute + attribute: AN11-AR/EM-SX/SCD.16/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SXF12_HCOR_003 + mapping: + - [B2, SXF12_HCOR_003.sextupole] + - [B0, SXF12_HCOR_003.hcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN11-AR/EM-SX/SCF.17/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN11-AR/EM-COR/SCF.17-CDLH.08/strength + unit: '1' +- type: pyaml.magnet.cfm_magnet + name: OCTF1_QCORROCT_90_QT_001 + mapping: + - [B3, OCTF1_QCORROCT_90_QT_001.octupole] + - [B1, OCTF1_QCORROCT_90_QT_001.quadrupole] + - [A1, OCTF1_QCORROCT_90_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN11-AR/EM-OCT/OC.06/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN11-AR/EM-COR/OC.06-CQLN.19/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN11-AR/EM-COR/OC.06-CQLT.07/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SXD12_VCOR_003 + mapping: + - [B2, SXD12_VCOR_003.sextupole] + - [A0, SXD12_VCOR_003.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, A0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN11-AR/EM-SX/SCD.18/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN11-AR/EM-COR/SCD.18-CDLV.08/strength + unit: '1' +- type: pyaml.bpm.bpm + name: BPM_098 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN11-AR/DG-EPOS/BPM.09/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN11-AR/DG-EPOS/BPM.09/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: SH6_COR_005 + mapping: + - [B2, SH6_COR_005.sextupole] + - [B0, SH6_COR_005.hcorrector] + - [A0, SH6_COR_005.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0, A0] + units: [1/m**2, '1', '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN11-AR/EM-SX/SHD.04/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN11-AR/EM-COR/SHD.04-CDLH.09/strength + unit: '1' + - type: tango.pyaml.attribute + attribute: AN11-AR/EM-COR/SHD.04-CDLV.09/strength + unit: '1' +- type: pyaml.magnet.quadrupole + name: QCORR_116 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN11-AR/EM-COR/CQLN.20/strength + unit: 1/m +- type: pyaml.magnet.sextupole + name: SH5_005 + model: + type: pyaml.magnet.identity_model + unit: 1/m**2 + physics: + type: tango.pyaml.attribute + attribute: AN11-AR/EM-SX/SHD.05/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: OH5_QCORROCT_91_001 + mapping: + - [B3, OH5_QCORROCT_91_001.octupole] + - [B1, OH5_QCORROCT_91_001.quadrupole] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1] + units: [1/m**3, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN11-AR/EM-OCT/OH.03/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN11-AR/EM-COR/OH.03-CQLN.21/strength + unit: 1/m**2 +- type: pyaml.bpm.bpm + name: BPM_099 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN11-AR/DG-EPOS/BPM.10/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN11-AR/DG-EPOS/BPM.10/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: SH4_COR_005 + mapping: + - [B2, SH4_COR_005.sextupole] + - [B0, SH4_COR_005.hcorrector] + - [A0, SH4_COR_005.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0, A0] + units: [1/m**2, '1', '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN11-AR/EM-SX/SHF.06/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN11-AR/EM-COR/SHF.06-CDLH.10/strength + unit: '1' + - type: tango.pyaml.attribute + attribute: AN11-AR/EM-COR/SHF.06-CDLV.10/strength + unit: '1' +- type: pyaml.magnet.cfm_magnet + name: OH4_QCORROCT_92_QT_001 + mapping: + - [B3, OH4_QCORROCT_92_QT_001.octupole] + - [B1, OH4_QCORROCT_92_QT_001.quadrupole] + - [A1, OH4_QCORROCT_92_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN11-AR/EM-OCT/OH.04/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN11-AR/EM-COR/OH.04-CQLN.22/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN11-AR/EM-COR/OH.04-CQLT.08/strength + unit: 1/m**2 +- type: pyaml.bpm.bpm + name: BPM_100 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN12-SD/DG-EPOS/BPM.01/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN12-SD/DG-EPOS/BPM.01/y_pos + unit: mm +- type: pyaml.bpm.bpm + name: BPM_101 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN12-SD/DG-EPOS/BPM.02/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN12-SD/DG-EPOS/BPM.02/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: OH4_QCORROCT_93_QT_001 + mapping: + - [B3, OH4_QCORROCT_93_QT_001.octupole] + - [B1, OH4_QCORROCT_93_QT_001.quadrupole] + - [A1, OH4_QCORROCT_93_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN12-AR/EM-OCT/OH.01/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN12-AR/EM-COR/OH.01-CQLN.01/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN12-AR/EM-COR/OH.01-CQLT.01/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SH4_COR_006 + mapping: + - [B2, SH4_COR_006.sextupole] + - [B0, SH4_COR_006.hcorrector] + - [A0, SH4_COR_006.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0, A0] + units: [1/m**2, '1', '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN12-AR/EM-SX/SHF.01/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN12-AR/EM-COR/SHF.01-CDLH.01/strength + unit: '1' + - type: tango.pyaml.attribute + attribute: AN12-AR/EM-COR/SHF.01-CDLV.01/strength + unit: '1' +- type: pyaml.bpm.bpm + name: BPM_102 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN12-AR/DG-EPOS/BPM.03/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN12-AR/DG-EPOS/BPM.03/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: OH5_QCORROCT_94_001 + mapping: + - [B3, OH5_QCORROCT_94_001.octupole] + - [B1, OH5_QCORROCT_94_001.quadrupole] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1] + units: [1/m**3, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN12-AR/EM-OCT/OH.02/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN12-AR/EM-COR/OH.02-CQLN.02/strength + unit: 1/m**2 +- type: pyaml.magnet.sextupole + name: SH5_006 + model: + type: pyaml.magnet.identity_model + unit: 1/m**2 + physics: + type: tango.pyaml.attribute + attribute: AN12-AR/EM-SX/SHD.02/strength + unit: 1/m**2 +- type: pyaml.magnet.quadrupole + name: QCORR_117 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN12-AR/EM-COR/CQLN.03/strength + unit: 1/m +- type: pyaml.magnet.cfm_magnet + name: SH6_COR_006 + mapping: + - [B2, SH6_COR_006.sextupole] + - [B0, SH6_COR_006.hcorrector] + - [A0, SH6_COR_006.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0, A0] + units: [1/m**2, '1', '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN12-AR/EM-SX/SHD.03/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN12-AR/EM-COR/SHD.03-CDLH.02/strength + unit: '1' + - type: tango.pyaml.attribute + attribute: AN12-AR/EM-COR/SHD.03-CDLV.02/strength + unit: '1' +- type: pyaml.magnet.sextupole + name: SXD21_003 + model: + type: pyaml.magnet.identity_model + unit: 1/m**2 + physics: + type: tango.pyaml.attribute + attribute: AN12-AR/EM-SX/SCD.01/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: OCTF2_QCORROCT_95_QT_001 + mapping: + - [B3, OCTF2_QCORROCT_95_QT_001.octupole] + - [B1, OCTF2_QCORROCT_95_QT_001.quadrupole] + - [A1, OCTF2_QCORROCT_95_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN12-AR/EM-OCT/OC.01/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN12-AR/EM-COR/OC.01-CQLN.04/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN12-AR/EM-COR/OC.01-CQLT.02/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SXF21_HCOR_003 + mapping: + - [B2, SXF21_HCOR_003.sextupole] + - [B0, SXF21_HCOR_003.hcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN12-AR/EM-SX/SCF.02/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN12-AR/EM-COR/SCF.02-CDLH.03/strength + unit: '1' +- type: pyaml.bpm.bpm + name: BPM_103 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN12-AR/DG-EPOS/BPM.04/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN12-AR/DG-EPOS/BPM.04/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: SXD21_VCOR_003 + mapping: + - [B2, SXD21_VCOR_003.sextupole] + - [A0, SXD21_VCOR_003.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, A0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN12-AR/EM-SX/SCD.03/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN12-AR/EM-COR/SCD.03-CDLV.03/strength + unit: '1' +- type: pyaml.magnet.quadrupole + name: QCORR_118 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN12-AR/EM-COR/CQLN.05/strength + unit: 1/m +- type: pyaml.magnet.quadrupole + name: QCORR_119 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN12-AR/EM-COR/CQLN.06/strength + unit: 1/m +- type: pyaml.magnet.sextupole + name: SXD2_003 + model: + type: pyaml.magnet.identity_model + unit: 1/m**2 + physics: + type: tango.pyaml.attribute + attribute: AN12-AR/EM-SX/SCD.04/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: OCTF2_QCORROCT_96_QT_001 + mapping: + - [B3, OCTF2_QCORROCT_96_QT_001.octupole] + - [B1, OCTF2_QCORROCT_96_QT_001.quadrupole] + - [A1, OCTF2_QCORROCT_96_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN12-AR/EM-OCT/OC.02/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN12-AR/EM-COR/OC.02-CQLN.07/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN12-AR/EM-COR/OC.02-CQLT.03/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SXF2_HCOR_003 + mapping: + - [B2, SXF2_HCOR_003.sextupole] + - [B0, SXF2_HCOR_003.hcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN12-AR/EM-SX/SCF.05/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN12-AR/EM-COR/SCF.05-CDLH.04/strength + unit: '1' +- type: pyaml.bpm.bpm + name: BPM_104 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN12-AR/DG-EPOS/BPM.05/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN12-AR/DG-EPOS/BPM.05/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: SXD2_VCOR_003 + mapping: + - [B2, SXD2_VCOR_003.sextupole] + - [A0, SXD2_VCOR_003.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, A0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN12-AR/EM-SX/SCD.06/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN12-AR/EM-COR/SCD.06-CDLV.04/strength + unit: '1' +- type: pyaml.magnet.quadrupole + name: QCORR_120 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN12-AR/EM-COR/CQLN.08/strength + unit: 1/m +- type: pyaml.magnet.quadrupole + name: QCORR_121 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN12-AR/EM-COR/CQLN.09/strength + unit: 1/m +- type: pyaml.magnet.sextupole + name: SXD22_003 + model: + type: pyaml.magnet.identity_model + unit: 1/m**2 + physics: + type: tango.pyaml.attribute + attribute: AN12-AR/EM-SX/SCD.07/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SXF22_HCOR_003 + mapping: + - [B2, SXF22_HCOR_003.sextupole] + - [B0, SXF22_HCOR_003.hcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN12-AR/EM-SX/SCF.08/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN12-AR/EM-COR/SCF.08-CDLH.05/strength + unit: '1' +- type: pyaml.magnet.cfm_magnet + name: OCTF2_QCORROCT_97_QT_001 + mapping: + - [B3, OCTF2_QCORROCT_97_QT_001.octupole] + - [B1, OCTF2_QCORROCT_97_QT_001.quadrupole] + - [A1, OCTF2_QCORROCT_97_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN12-AR/EM-OCT/OC.03/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN12-AR/EM-COR/OC.03-CQLN.10/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN12-AR/EM-COR/OC.03-CQLT.04/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SXD22_VCOR_003 + mapping: + - [B2, SXD22_VCOR_003.sextupole] + - [A0, SXD22_VCOR_003.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, A0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN12-AR/EM-SX/SCD.09/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN12-AR/EM-COR/SCD.09-CDLV.05/strength + unit: '1' +- type: pyaml.bpm.bpm + name: BPM_105 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN12-AR/DG-EPOS/BPM.06/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN12-AR/DG-EPOS/BPM.06/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: SH9_COR_009 + mapping: + - [B2, SH9_COR_009.sextupole] + - [B0, SH9_COR_009.hcorrector] + - [A0, SH9_COR_009.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0, A0] + units: [1/m**2, '1', '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN12-AR/EM-SX/SHD.04/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN12-AR/EM-COR/SHD.04-CDLH.06/strength + unit: '1' + - type: tango.pyaml.attribute + attribute: AN12-AR/EM-COR/SHD.04-CDLV.06/strength + unit: '1' +- type: pyaml.magnet.quadrupole + name: QCORR_122 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN12-AR/EM-COR/CQLN.11/strength + unit: 1/m +- type: pyaml.magnet.sextupole + name: SH8_009 + model: + type: pyaml.magnet.identity_model + unit: 1/m**2 + physics: + type: tango.pyaml.attribute + attribute: AN12-AR/EM-SX/SHD.05/strength + unit: 1/m**2 +- type: pyaml.magnet.quadrupole + name: QCORR_123 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN12-AR/EM-COR/CQLN.12/strength + unit: 1/m +- type: pyaml.bpm.bpm + name: BPM_106 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN12-AR/DG-EPOS/BPM.07/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN12-AR/DG-EPOS/BPM.07/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: SH7_COR_009 + mapping: + - [B2, SH7_COR_009.sextupole] + - [B0, SH7_COR_009.hcorrector] + - [A0, SH7_COR_009.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0, A0] + units: [1/m**2, '1', '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN12-AR/EM-SX/SHF.06/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN12-AR/EM-COR/SHF.06-CDLH.07/strength + unit: '1' + - type: tango.pyaml.attribute + attribute: AN12-AR/EM-COR/SHF.06-CDLV.07/strength + unit: '1' +- type: pyaml.magnet.cfm_magnet + name: OH7_QCORROCT_98_QT_001 + mapping: + - [B3, OH7_QCORROCT_98_QT_001.octupole] + - [B1, OH7_QCORROCT_98_QT_001.quadrupole] + - [A1, OH7_QCORROCT_98_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN12-AR/EM-OCT/OH.03/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN12-AR/EM-COR/OH.03-CQLN.13/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN12-AR/EM-COR/OH.03-CQLT.05/strength + unit: 1/m**2 +- type: pyaml.bpm.bpm + name: BPM_107 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN13-SD/DG-EPOS/BPM.01/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN13-SD/DG-EPOS/BPM.01/y_pos + unit: mm +- type: pyaml.bpm.bpm + name: BPM_108 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN13-SD/DG-EPOS/BPM.02/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN13-SD/DG-EPOS/BPM.02/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: OH7_QCORROCT_99_QT_001 + mapping: + - [B3, OH7_QCORROCT_99_QT_001.octupole] + - [B1, OH7_QCORROCT_99_QT_001.quadrupole] + - [A1, OH7_QCORROCT_99_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN13-AR/EM-OCT/OH.01/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN13-AR/EM-COR/OH.01-CQLN.01/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN13-AR/EM-COR/OH.01-CQLT.01/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SH7_COR_010 + mapping: + - [B2, SH7_COR_010.sextupole] + - [B0, SH7_COR_010.hcorrector] + - [A0, SH7_COR_010.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0, A0] + units: [1/m**2, '1', '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN13-AR/EM-SX/SHF.01/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN13-AR/EM-COR/SHF.01-CDLH.01/strength + unit: '1' + - type: tango.pyaml.attribute + attribute: AN13-AR/EM-COR/SHF.01-CDLV.01/strength + unit: '1' +- type: pyaml.bpm.bpm + name: BPM_109 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN13-AR/DG-EPOS/BPM.03/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN13-AR/DG-EPOS/BPM.03/y_pos + unit: mm +- type: pyaml.magnet.quadrupole + name: QCORR_124 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN13-AR/EM-COR/CQLN.02/strength + unit: 1/m +- type: pyaml.magnet.sextupole + name: SH8_010 + model: + type: pyaml.magnet.identity_model + unit: 1/m**2 + physics: + type: tango.pyaml.attribute + attribute: AN13-AR/EM-SX/SHD.02/strength + unit: 1/m**2 +- type: pyaml.magnet.quadrupole + name: QCORR_125 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN13-AR/EM-COR/CQLN.03/strength + unit: 1/m +- type: pyaml.magnet.cfm_magnet + name: SH9_COR_010 + mapping: + - [B2, SH9_COR_010.sextupole] + - [B0, SH9_COR_010.hcorrector] + - [A0, SH9_COR_010.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0, A0] + units: [1/m**2, '1', '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN13-AR/EM-SX/SHD.03/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN13-AR/EM-COR/SHD.03-CDLH.02/strength + unit: '1' + - type: tango.pyaml.attribute + attribute: AN13-AR/EM-COR/SHD.03-CDLV.02/strength + unit: '1' +- type: pyaml.magnet.sextupole + name: SXD31_003 + model: + type: pyaml.magnet.identity_model + unit: 1/m**2 + physics: + type: tango.pyaml.attribute + attribute: AN13-AR/EM-SX/SCD.01/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: OCTF3_QCORROCT_100_QT_001 + mapping: + - [B3, OCTF3_QCORROCT_100_QT_001.octupole] + - [B1, OCTF3_QCORROCT_100_QT_001.quadrupole] + - [A1, OCTF3_QCORROCT_100_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN13-AR/EM-OCT/OC.01/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN13-AR/EM-COR/OC.01-CQLN.04/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN13-AR/EM-COR/OC.01-CQLT.02/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SXF31_HCOR_003 + mapping: + - [B2, SXF31_HCOR_003.sextupole] + - [B0, SXF31_HCOR_003.hcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN13-AR/EM-SX/SCF.02/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN13-AR/EM-COR/SCF.02-CDLH.03/strength + unit: '1' +- type: pyaml.bpm.bpm + name: BPM_110 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN13-AR/DG-EPOS/BPM.04/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN13-AR/DG-EPOS/BPM.04/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: SXD31_VCOR_003 + mapping: + - [B2, SXD31_VCOR_003.sextupole] + - [A0, SXD31_VCOR_003.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, A0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN13-AR/EM-SX/SCD.03/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN13-AR/EM-COR/SCD.03-CDLV.03/strength + unit: '1' +- type: pyaml.magnet.quadrupole + name: QCORR_126 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN13-AR/EM-COR/CQLN.05/strength + unit: 1/m +- type: pyaml.magnet.quadrupole + name: QCORR_127 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN13-AR/EM-COR/CQLN.06/strength + unit: 1/m +- type: pyaml.magnet.sextupole + name: SXD3_007 + model: + type: pyaml.magnet.identity_model + unit: 1/m**2 + physics: + type: tango.pyaml.attribute + attribute: AN13-AR/EM-SX/SCD.04/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: OCTF3_QCORROCT_101_QT_001 + mapping: + - [B3, OCTF3_QCORROCT_101_QT_001.octupole] + - [B1, OCTF3_QCORROCT_101_QT_001.quadrupole] + - [A1, OCTF3_QCORROCT_101_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN13-AR/EM-OCT/OC.02/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN13-AR/EM-COR/OC.02-CQLN.07/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN13-AR/EM-COR/OC.02-CQLT.03/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SXF3_HCOR_005 + mapping: + - [B2, SXF3_HCOR_005.sextupole] + - [B0, SXF3_HCOR_005.hcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN13-AR/EM-SX/SCF.05/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN13-AR/EM-COR/SCF.05-CDLH.04/strength + unit: '1' +- type: pyaml.bpm.bpm + name: BPM_111 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN13-AR/DG-EPOS/BPM.05/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN13-AR/DG-EPOS/BPM.05/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: SXD3_VCOR_007 + mapping: + - [B2, SXD3_VCOR_007.sextupole] + - [A0, SXD3_VCOR_007.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, A0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN13-AR/EM-SX/SCD.06/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN13-AR/EM-COR/SCD.06-CDLV.04/strength + unit: '1' +- type: pyaml.magnet.quadrupole + name: QCORR_128 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN13-AR/EM-COR/CQLN.08/strength + unit: 1/m +- type: pyaml.magnet.quadrupole + name: QCORR_129 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN13-AR/EM-COR/CQLN.09/strength + unit: 1/m +- type: pyaml.magnet.sextupole + name: SXD3_008 + model: + type: pyaml.magnet.identity_model + unit: 1/m**2 + physics: + type: tango.pyaml.attribute + attribute: AN13-AR/EM-SX/SCD.07/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: OCTF3_QCORROCT_102_QT_001 + mapping: + - [B3, OCTF3_QCORROCT_102_QT_001.octupole] + - [B1, OCTF3_QCORROCT_102_QT_001.quadrupole] + - [A1, OCTF3_QCORROCT_102_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN13-AR/EM-OCT/OC.03/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN13-AR/EM-COR/OC.03-CQLN.10/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN13-AR/EM-COR/OC.03-CQLT.04/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SXF33_HCOR_005 + mapping: + - [B2, SXF33_HCOR_005.sextupole] + - [B0, SXF33_HCOR_005.hcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN13-AR/EM-SX/SCF.08/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN13-AR/EM-COR/SCF.08-CDLH.05/strength + unit: '1' +- type: pyaml.bpm.bpm + name: BPM_112 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN13-AR/DG-EPOS/BPM.06/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN13-AR/DG-EPOS/BPM.06/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: SXD33_VCOR_003 + mapping: + - [B2, SXD33_VCOR_003.sextupole] + - [A0, SXD33_VCOR_003.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, A0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN13-AR/EM-SX/SCD.09/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN13-AR/EM-COR/SCD.09-CDLV.05/strength + unit: '1' +- type: pyaml.magnet.quadrupole + name: QCORR_130 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN13-AR/EM-COR/CQLN.11/strength + unit: 1/m +- type: pyaml.magnet.quadrupole + name: QCORR_131 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN13-AR/EM-COR/CQLN.12/strength + unit: 1/m +- type: pyaml.magnet.sextupole + name: SXD33_003 + model: + type: pyaml.magnet.identity_model + unit: 1/m**2 + physics: + type: tango.pyaml.attribute + attribute: AN13-AR/EM-SX/SCD.10/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SXF33_HCOR_006 + mapping: + - [B2, SXF33_HCOR_006.sextupole] + - [B0, SXF33_HCOR_006.hcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN13-AR/EM-SX/SCF.11/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN13-AR/EM-COR/SCF.11-CDLH.06/strength + unit: '1' +- type: pyaml.magnet.cfm_magnet + name: OCTF3_QCORROCT_103_QT_001 + mapping: + - [B3, OCTF3_QCORROCT_103_QT_001.octupole] + - [B1, OCTF3_QCORROCT_103_QT_001.quadrupole] + - [A1, OCTF3_QCORROCT_103_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN13-AR/EM-OCT/OC.04/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN13-AR/EM-COR/OC.04-CQLN.13/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN13-AR/EM-COR/OC.04-CQLT.05/strength + unit: 1/m**2 +- type: pyaml.bpm.bpm + name: BPM_113 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN13-AR/DG-EPOS/BPM.07/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN13-AR/DG-EPOS/BPM.07/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: SXD3_VCOR_008 + mapping: + - [B2, SXD3_VCOR_008.sextupole] + - [A0, SXD3_VCOR_008.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, A0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN13-AR/EM-SX/SCD.12/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN13-AR/EM-COR/SCD.12-CDLV.06/strength + unit: '1' +- type: pyaml.magnet.quadrupole + name: QCORR_132 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN13-AR/EM-COR/CQLN.14/strength + unit: 1/m +- type: pyaml.magnet.quadrupole + name: QCORR_133 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN13-AR/EM-COR/CQLN.15/strength + unit: 1/m +- type: pyaml.magnet.sextupole + name: SXD3_009 + model: + type: pyaml.magnet.identity_model + unit: 1/m**2 + physics: + type: tango.pyaml.attribute + attribute: AN13-AR/EM-SX/SCD.13/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SXF3_HCOR_006 + mapping: + - [B2, SXF3_HCOR_006.sextupole] + - [B0, SXF3_HCOR_006.hcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN13-AR/EM-SX/SCF.14/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN13-AR/EM-COR/SCF.14-CDLH.07/strength + unit: '1' +- type: pyaml.magnet.cfm_magnet + name: OCTF3_QCORROCT_104_QT_001 + mapping: + - [B3, OCTF3_QCORROCT_104_QT_001.octupole] + - [B1, OCTF3_QCORROCT_104_QT_001.quadrupole] + - [A1, OCTF3_QCORROCT_104_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN13-AR/EM-OCT/OC.05/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN13-AR/EM-COR/OC.05-CQLN.16/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN13-AR/EM-COR/OC.05-CQLT.06/strength + unit: 1/m**2 +- type: pyaml.bpm.bpm + name: BPM_114 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN13-AR/DG-EPOS/BPM.08/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN13-AR/DG-EPOS/BPM.08/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: SXD3_VCOR_009 + mapping: + - [B2, SXD3_VCOR_009.sextupole] + - [A0, SXD3_VCOR_009.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, A0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN13-AR/EM-SX/SCD.15/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN13-AR/EM-COR/SCD.15-CDLV.07/strength + unit: '1' +- type: pyaml.magnet.quadrupole + name: QCORR_134 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN13-AR/EM-COR/CQLN.17/strength + unit: 1/m +- type: pyaml.magnet.quadrupole + name: QCORR_135 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN13-AR/EM-COR/CQLN.18/strength + unit: 1/m +- type: pyaml.magnet.sextupole + name: SXD32_003 + model: + type: pyaml.magnet.identity_model + unit: 1/m**2 + physics: + type: tango.pyaml.attribute + attribute: AN13-AR/EM-SX/SCD.16/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SXF32_HCOR_003 + mapping: + - [B2, SXF32_HCOR_003.sextupole] + - [B0, SXF32_HCOR_003.hcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN13-AR/EM-SX/SCF.17/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN13-AR/EM-COR/SCF.17-CDLH.08/strength + unit: '1' +- type: pyaml.magnet.cfm_magnet + name: OCTF3_QCORROCT_105_QT_001 + mapping: + - [B3, OCTF3_QCORROCT_105_QT_001.octupole] + - [B1, OCTF3_QCORROCT_105_QT_001.quadrupole] + - [A1, OCTF3_QCORROCT_105_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN13-AR/EM-OCT/OC.06/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN13-AR/EM-COR/OC.06-CQLN.19/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN13-AR/EM-COR/OC.06-CQLT.07/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SXD32_VCOR_003 + mapping: + - [B2, SXD32_VCOR_003.sextupole] + - [A0, SXD32_VCOR_003.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, A0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN13-AR/EM-SX/SCD.18/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN13-AR/EM-COR/SCD.18-CDLV.08/strength + unit: '1' +- type: pyaml.bpm.bpm + name: BPM_115 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN13-AR/DG-EPOS/BPM.09/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN13-AR/DG-EPOS/BPM.09/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: SH9_COR_011 + mapping: + - [B2, SH9_COR_011.sextupole] + - [B0, SH9_COR_011.hcorrector] + - [A0, SH9_COR_011.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0, A0] + units: [1/m**2, '1', '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN13-AR/EM-SX/SHD.04/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN13-AR/EM-COR/SHD.04-CDLH.09/strength + unit: '1' + - type: tango.pyaml.attribute + attribute: AN13-AR/EM-COR/SHD.04-CDLV.09/strength + unit: '1' +- type: pyaml.magnet.quadrupole + name: QCORR_136 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN13-AR/EM-COR/CQLN.20/strength + unit: 1/m +- type: pyaml.magnet.sextupole + name: SH8_011 + model: + type: pyaml.magnet.identity_model + unit: 1/m**2 + physics: + type: tango.pyaml.attribute + attribute: AN13-AR/EM-SX/SHD.05/strength + unit: 1/m**2 +- type: pyaml.magnet.quadrupole + name: QCORR_137 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN13-AR/EM-COR/CQLN.21/strength + unit: 1/m +- type: pyaml.bpm.bpm + name: BPM_116 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN13-AR/DG-EPOS/BPM.10/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN13-AR/DG-EPOS/BPM.10/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: SH7_COR_011 + mapping: + - [B2, SH7_COR_011.sextupole] + - [B0, SH7_COR_011.hcorrector] + - [A0, SH7_COR_011.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0, A0] + units: [1/m**2, '1', '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN13-AR/EM-SX/SHF.06/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN13-AR/EM-COR/SHF.06-CDLH.10/strength + unit: '1' + - type: tango.pyaml.attribute + attribute: AN13-AR/EM-COR/SHF.06-CDLV.10/strength + unit: '1' +- type: pyaml.magnet.cfm_magnet + name: OH7_QCORROCT_106_QT_001 + mapping: + - [B3, OH7_QCORROCT_106_QT_001.octupole] + - [B1, OH7_QCORROCT_106_QT_001.quadrupole] + - [A1, OH7_QCORROCT_106_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN13-AR/EM-OCT/OH.02/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN13-AR/EM-COR/OH.02-CQLN.22/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN13-AR/EM-COR/OH.02-CQLT.08/strength + unit: 1/m**2 +- type: pyaml.bpm.bpm + name: BPM_117 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN14-SD/DG-EPOS/BPM.01/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN14-SD/DG-EPOS/BPM.01/y_pos + unit: mm +- type: pyaml.bpm.bpm + name: BPM_118 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN14-SD/DG-EPOS/BPM.02/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN14-SD/DG-EPOS/BPM.02/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: OH7_QCORROCT_107_QT_001 + mapping: + - [B3, OH7_QCORROCT_107_QT_001.octupole] + - [B1, OH7_QCORROCT_107_QT_001.quadrupole] + - [A1, OH7_QCORROCT_107_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN14-AR/EM-OCT/OH.01/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN14-AR/EM-COR/OH.01-CQLN.01/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN14-AR/EM-COR/OH.01-CQLT.01/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SH7_COR_012 + mapping: + - [B2, SH7_COR_012.sextupole] + - [B0, SH7_COR_012.hcorrector] + - [A0, SH7_COR_012.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0, A0] + units: [1/m**2, '1', '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN14-AR/EM-SX/SHF.01/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN14-AR/EM-COR/SHF.01-CDLH.01/strength + unit: '1' + - type: tango.pyaml.attribute + attribute: AN14-AR/EM-COR/SHF.01-CDLV.01/strength + unit: '1' +- type: pyaml.bpm.bpm + name: BPM_119 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN14-AR/DG-EPOS/BPM.03/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN14-AR/DG-EPOS/BPM.03/y_pos + unit: mm +- type: pyaml.magnet.quadrupole + name: QCORR_138 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN14-AR/EM-COR/CQLN.02/strength + unit: 1/m +- type: pyaml.magnet.sextupole + name: SH8_012 + model: + type: pyaml.magnet.identity_model + unit: 1/m**2 + physics: + type: tango.pyaml.attribute + attribute: AN14-AR/EM-SX/SHD.02/strength + unit: 1/m**2 +- type: pyaml.magnet.quadrupole + name: QCORR_139 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN14-AR/EM-COR/CQLN.03/strength + unit: 1/m +- type: pyaml.magnet.cfm_magnet + name: SH9_COR_012 + mapping: + - [B2, SH9_COR_012.sextupole] + - [B0, SH9_COR_012.hcorrector] + - [A0, SH9_COR_012.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0, A0] + units: [1/m**2, '1', '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN14-AR/EM-SX/SHD.03/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN14-AR/EM-COR/SHD.03-CDLH.02/strength + unit: '1' + - type: tango.pyaml.attribute + attribute: AN14-AR/EM-COR/SHD.03-CDLV.02/strength + unit: '1' +- type: pyaml.magnet.sextupole + name: SXD41_003 + model: + type: pyaml.magnet.identity_model + unit: 1/m**2 + physics: + type: tango.pyaml.attribute + attribute: AN14-AR/EM-SX/SCD.01/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: OCTF4_QCORROCT_108_QT_001 + mapping: + - [B3, OCTF4_QCORROCT_108_QT_001.octupole] + - [B1, OCTF4_QCORROCT_108_QT_001.quadrupole] + - [A1, OCTF4_QCORROCT_108_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN14-AR/EM-OCT/OC.01/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN14-AR/EM-COR/OC.01-CQLN.04/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN14-AR/EM-COR/OC.01-CQLT.02/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SXF41_HCOR_003 + mapping: + - [B2, SXF41_HCOR_003.sextupole] + - [B0, SXF41_HCOR_003.hcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN14-AR/EM-SX/SCF.02/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN14-AR/EM-COR/SCF.02-CDLH.03/strength + unit: '1' +- type: pyaml.bpm.bpm + name: BPM_120 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN14-AR/DG-EPOS/BPM.04/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN14-AR/DG-EPOS/BPM.04/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: SXD41_VCOR_003 + mapping: + - [B2, SXD41_VCOR_003.sextupole] + - [A0, SXD41_VCOR_003.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, A0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN14-AR/EM-SX/SCD.03/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN14-AR/EM-COR/SCD.03-CDLV.03/strength + unit: '1' +- type: pyaml.magnet.quadrupole + name: QCORR_140 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN14-AR/EM-COR/CQLN.05/strength + unit: 1/m +- type: pyaml.magnet.quadrupole + name: QCORR_141 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN14-AR/EM-COR/CQLN.06/strength + unit: 1/m +- type: pyaml.magnet.sextupole + name: SXD4_003 + model: + type: pyaml.magnet.identity_model + unit: 1/m**2 + physics: + type: tango.pyaml.attribute + attribute: AN14-AR/EM-SX/SCD.04/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SXF4_HCOR_003 + mapping: + - [B2, SXF4_HCOR_003.sextupole] + - [B0, SXF4_HCOR_003.hcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN14-AR/EM-SX/SCF.05/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN14-AR/EM-COR/SCF.05-CDLH.04/strength + unit: '1' +- type: pyaml.magnet.cfm_magnet + name: OCTF4_QCORROCT_109_QT_001 + mapping: + - [B3, OCTF4_QCORROCT_109_QT_001.octupole] + - [B1, OCTF4_QCORROCT_109_QT_001.quadrupole] + - [A1, OCTF4_QCORROCT_109_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN14-AR/EM-OCT/OC.02/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN14-AR/EM-COR/OC.02-CQLN.07/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN14-AR/EM-COR/OC.02-CQLT.03/strength + unit: 1/m**2 +- type: pyaml.bpm.bpm + name: BPM_121 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN14-AR/DG-EPOS/BPM.05/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN14-AR/DG-EPOS/BPM.05/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: SXD4_VCOR_003 + mapping: + - [B2, SXD4_VCOR_003.sextupole] + - [A0, SXD4_VCOR_003.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, A0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN14-AR/EM-SX/SCD.06/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN14-AR/EM-COR/SCD.06-CDLV.04/strength + unit: '1' +- type: pyaml.magnet.quadrupole + name: QCORR_142 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN14-AR/EM-COR/CQLN.08/strength + unit: 1/m +- type: pyaml.magnet.quadrupole + name: QCORR_143 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN14-AR/EM-COR/CQLN.09/strength + unit: 1/m +- type: pyaml.magnet.sextupole + name: SXD42_003 + model: + type: pyaml.magnet.identity_model + unit: 1/m**2 + physics: + type: tango.pyaml.attribute + attribute: AN14-AR/EM-SX/SCD.07/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SXF42_HCOR_003 + mapping: + - [B2, SXF42_HCOR_003.sextupole] + - [B0, SXF42_HCOR_003.hcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN14-AR/EM-SX/SCF.08/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN14-AR/EM-COR/SCF.08-CDLH.05/strength + unit: '1' +- type: pyaml.magnet.cfm_magnet + name: OCTF4_QCORROCT_110_QT_001 + mapping: + - [B3, OCTF4_QCORROCT_110_QT_001.octupole] + - [B1, OCTF4_QCORROCT_110_QT_001.quadrupole] + - [A1, OCTF4_QCORROCT_110_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN14-AR/EM-OCT/OC.03/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN14-AR/EM-COR/OC.03-CQLN.10/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN14-AR/EM-COR/OC.03-CQLT.04/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SXD42_VCOR_003 + mapping: + - [B2, SXD42_VCOR_003.sextupole] + - [A0, SXD42_VCOR_003.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, A0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN14-AR/EM-SX/SCD.09/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN14-AR/EM-COR/SCD.09-CDLV.05/strength + unit: '1' +- type: pyaml.bpm.bpm + name: BPM_122 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN14-AR/DG-EPOS/BPM.06/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN14-AR/DG-EPOS/BPM.06/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: SH12_COR_005 + mapping: + - [B2, SH12_COR_005.sextupole] + - [B0, SH12_COR_005.hcorrector] + - [A0, SH12_COR_005.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0, A0] + units: [1/m**2, '1', '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN14-AR/EM-SX/SHD.04/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN14-AR/EM-COR/SHD.04-CDLH.06/strength + unit: '1' + - type: tango.pyaml.attribute + attribute: AN14-AR/EM-COR/SHD.04-CDLV.06/strength + unit: '1' +- type: pyaml.magnet.quadrupole + name: QCORR_144 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN14-AR/EM-COR/CQLN.11/strength + unit: 1/m +- type: pyaml.magnet.sextupole + name: SH11_005 + model: + type: pyaml.magnet.identity_model + unit: 1/m**2 + physics: + type: tango.pyaml.attribute + attribute: AN14-AR/EM-SX/SHD.05/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: OH11_QCORROCT_111_001 + mapping: + - [B3, OH11_QCORROCT_111_001.octupole] + - [B1, OH11_QCORROCT_111_001.quadrupole] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1] + units: [1/m**3, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN14-AR/EM-OCT/OH.02/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN14-AR/EM-COR/OH.02-CQLN.12/strength + unit: 1/m**2 +- type: pyaml.bpm.bpm + name: BPM_123 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN14-AR/DG-EPOS/BPM.07/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN14-AR/DG-EPOS/BPM.07/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: SH10_COR_005 + mapping: + - [B2, SH10_COR_005.sextupole] + - [B0, SH10_COR_005.hcorrector] + - [A0, SH10_COR_005.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0, A0] + units: [1/m**2, '1', '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN14-AR/EM-SX/SHF.06/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN14-AR/EM-COR/SHF.06-CDLH.07/strength + unit: '1' + - type: tango.pyaml.attribute + attribute: AN14-AR/EM-COR/SHF.06-CDLV.07/strength + unit: '1' +- type: pyaml.magnet.cfm_magnet + name: OH10_QCORROCT_112_QT_001 + mapping: + - [B3, OH10_QCORROCT_112_QT_001.octupole] + - [B1, OH10_QCORROCT_112_QT_001.quadrupole] + - [A1, OH10_QCORROCT_112_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN14-AR/EM-OCT/OH.03/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN14-AR/EM-COR/OH.03-CQLN.13/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN14-AR/EM-COR/OH.03-CQLT.05/strength + unit: 1/m**2 +- type: pyaml.bpm.bpm + name: BPM_124 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN15-SD/DG-EPOS/BPM.01/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN15-SD/DG-EPOS/BPM.01/y_pos + unit: mm +- type: pyaml.bpm.bpm + name: BPM_125 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN15-SD/DG-EPOS/BPM.02/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN15-SD/DG-EPOS/BPM.02/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: OH10_QCORROCT_113_QT_001 + mapping: + - [B3, OH10_QCORROCT_113_QT_001.octupole] + - [B1, OH10_QCORROCT_113_QT_001.quadrupole] + - [A1, OH10_QCORROCT_113_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN15-AR/EM-OCT/OH.01/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN15-AR/EM-COR/OH.01-CQLN.01/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN15-AR/EM-COR/OH.01-CQLT.01/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SH10_COR_006 + mapping: + - [B2, SH10_COR_006.sextupole] + - [B0, SH10_COR_006.hcorrector] + - [A0, SH10_COR_006.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0, A0] + units: [1/m**2, '1', '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN15-AR/EM-SX/SHF.01/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN15-AR/EM-COR/SHF.01-CDLH.01/strength + unit: '1' + - type: tango.pyaml.attribute + attribute: AN15-AR/EM-COR/SHF.01-CDLV.01/strength + unit: '1' +- type: pyaml.bpm.bpm + name: BPM_126 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN15-AR/DG-EPOS/BPM.03/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN15-AR/DG-EPOS/BPM.03/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: OH11_QCORROCT_114_001 + mapping: + - [B3, OH11_QCORROCT_114_001.octupole] + - [B1, OH11_QCORROCT_114_001.quadrupole] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1] + units: [1/m**3, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN15-AR/EM-OCT/OH.02/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN15-AR/EM-COR/OH.02-CQLN.02/strength + unit: 1/m**2 +- type: pyaml.magnet.sextupole + name: SH11_006 + model: + type: pyaml.magnet.identity_model + unit: 1/m**2 + physics: + type: tango.pyaml.attribute + attribute: AN15-AR/EM-SX/SHD.02/strength + unit: 1/m**2 +- type: pyaml.magnet.quadrupole + name: QCORR_145 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN15-AR/EM-COR/CQLN.03/strength + unit: 1/m +- type: pyaml.magnet.cfm_magnet + name: SH12_COR_006 + mapping: + - [B2, SH12_COR_006.sextupole] + - [B0, SH12_COR_006.hcorrector] + - [A0, SH12_COR_006.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0, A0] + units: [1/m**2, '1', '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN15-AR/EM-SX/SHD.03/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN15-AR/EM-COR/SHD.03-CDLH.02/strength + unit: '1' + - type: tango.pyaml.attribute + attribute: AN15-AR/EM-COR/SHD.03-CDLV.02/strength + unit: '1' +- type: pyaml.magnet.sextupole + name: SXD51_003 + model: + type: pyaml.magnet.identity_model + unit: 1/m**2 + physics: + type: tango.pyaml.attribute + attribute: AN15-AR/EM-SX/SCD.01/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: OCTF5_QCORROCT_115_QT_001 + mapping: + - [B3, OCTF5_QCORROCT_115_QT_001.octupole] + - [B1, OCTF5_QCORROCT_115_QT_001.quadrupole] + - [A1, OCTF5_QCORROCT_115_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN15-AR/EM-OCT/OC.01/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN15-AR/EM-COR/OC.01-CQLN.04/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN15-AR/EM-COR/OC.01-CQLT.02/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SXF51_HCOR_003 + mapping: + - [B2, SXF51_HCOR_003.sextupole] + - [B0, SXF51_HCOR_003.hcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN15-AR/EM-SX/SCF.02/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN15-AR/EM-COR/SCF.02-CDLH.03/strength + unit: '1' +- type: pyaml.bpm.bpm + name: BPM_127 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN15-AR/DG-EPOS/BPM.04/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN15-AR/DG-EPOS/BPM.04/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: SXD51_VCOR_003 + mapping: + - [B2, SXD51_VCOR_003.sextupole] + - [A0, SXD51_VCOR_003.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, A0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN15-AR/EM-SX/SCD.03/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN15-AR/EM-COR/SCD.03-CDLV.03/strength + unit: '1' +- type: pyaml.magnet.quadrupole + name: QCORR_146 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN15-AR/EM-COR/CQLN.05/strength + unit: 1/m +- type: pyaml.magnet.quadrupole + name: QCORR_147 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN15-AR/EM-COR/CQLN.06/strength + unit: 1/m +- type: pyaml.magnet.sextupole + name: SXD5_007 + model: + type: pyaml.magnet.identity_model + unit: 1/m**2 + physics: + type: tango.pyaml.attribute + attribute: AN15-AR/EM-SX/SCD.04/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: OCTF5_QCORROCT_116_QT_001 + mapping: + - [B3, OCTF5_QCORROCT_116_QT_001.octupole] + - [B1, OCTF5_QCORROCT_116_QT_001.quadrupole] + - [A1, OCTF5_QCORROCT_116_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN15-AR/EM-OCT/OC.02/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN15-AR/EM-COR/OC.02-CQLN.07/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN15-AR/EM-COR/OC.02-CQLT.03/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SXF5_HCOR_005 + mapping: + - [B2, SXF5_HCOR_005.sextupole] + - [B0, SXF5_HCOR_005.hcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN15-AR/EM-SX/SCF.05/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN15-AR/EM-COR/SCF.05-CDLH.04/strength + unit: '1' +- type: pyaml.bpm.bpm + name: BPM_128 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN15-AR/DG-EPOS/BPM.05/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN15-AR/DG-EPOS/BPM.05/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: SXD5_VCOR_007 + mapping: + - [B2, SXD5_VCOR_007.sextupole] + - [A0, SXD5_VCOR_007.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, A0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN15-AR/EM-SX/SCD.06/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN15-AR/EM-COR/SCD.06-CDLV.04/strength + unit: '1' +- type: pyaml.magnet.quadrupole + name: QCORR_148 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN15-AR/EM-COR/CQLN.08/strength + unit: 1/m +- type: pyaml.magnet.quadrupole + name: QCORR_149 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN15-AR/EM-COR/CQLN.09/strength + unit: 1/m +- type: pyaml.magnet.sextupole + name: SXD5_008 + model: + type: pyaml.magnet.identity_model + unit: 1/m**2 + physics: + type: tango.pyaml.attribute + attribute: AN15-AR/EM-SX/SCD.07/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: OCTF5_QCORROCT_117_QT_001 + mapping: + - [B3, OCTF5_QCORROCT_117_QT_001.octupole] + - [B1, OCTF5_QCORROCT_117_QT_001.quadrupole] + - [A1, OCTF5_QCORROCT_117_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN15-AR/EM-OCT/OC.03/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN15-AR/EM-COR/OC.03-CQLN.10/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN15-AR/EM-COR/OC.03-CQLT.04/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SXF53_HCOR_005 + mapping: + - [B2, SXF53_HCOR_005.sextupole] + - [B0, SXF53_HCOR_005.hcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN15-AR/EM-SX/SCF.08/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN15-AR/EM-COR/SCF.08-CDLH.05/strength + unit: '1' +- type: pyaml.bpm.bpm + name: BPM_129 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN15-AR/DG-EPOS/BPM.06/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN15-AR/DG-EPOS/BPM.06/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: SXD53_VCOR_003 + mapping: + - [B2, SXD53_VCOR_003.sextupole] + - [A0, SXD53_VCOR_003.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, A0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN15-AR/EM-SX/SCD.09/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN15-AR/EM-COR/SCD.09-CDLV.05/strength + unit: '1' +- type: pyaml.magnet.quadrupole + name: QCORR_150 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN15-AR/EM-COR/CQLN.11/strength + unit: 1/m +- type: pyaml.magnet.quadrupole + name: QCORR_151 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN15-AR/EM-COR/CQLN.12/strength + unit: 1/m +- type: pyaml.magnet.sextupole + name: SXD53_003 + model: + type: pyaml.magnet.identity_model + unit: 1/m**2 + physics: + type: tango.pyaml.attribute + attribute: AN15-AR/EM-SX/SCD.10/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SXF53_HCOR_006 + mapping: + - [B2, SXF53_HCOR_006.sextupole] + - [B0, SXF53_HCOR_006.hcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN15-AR/EM-SX/SCF.11/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN15-AR/EM-COR/SCF.11-CDLH.06/strength + unit: '1' +- type: pyaml.magnet.cfm_magnet + name: OCTF5_QCORROCT_118_QT_001 + mapping: + - [B3, OCTF5_QCORROCT_118_QT_001.octupole] + - [B1, OCTF5_QCORROCT_118_QT_001.quadrupole] + - [A1, OCTF5_QCORROCT_118_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN15-AR/EM-OCT/OC.04/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN15-AR/EM-COR/OC.04-CQLN.13/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN15-AR/EM-COR/OC.04-CQLT.05/strength + unit: 1/m**2 +- type: pyaml.bpm.bpm + name: BPM_130 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN15-AR/DG-EPOS/BPM.07/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN15-AR/DG-EPOS/BPM.07/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: SXD5_VCOR_008 + mapping: + - [B2, SXD5_VCOR_008.sextupole] + - [A0, SXD5_VCOR_008.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, A0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN15-AR/EM-SX/SCD.12/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN15-AR/EM-COR/SCD.12-CDLV.06/strength + unit: '1' +- type: pyaml.magnet.quadrupole + name: QCORR_152 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN15-AR/EM-COR/CQLN.14/strength + unit: 1/m +- type: pyaml.magnet.quadrupole + name: QCORR_153 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN15-AR/EM-COR/CQLN.15/strength + unit: 1/m +- type: pyaml.magnet.sextupole + name: SXD5_009 + model: + type: pyaml.magnet.identity_model + unit: 1/m**2 + physics: + type: tango.pyaml.attribute + attribute: AN15-AR/EM-SX/SCD.13/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SXF5_HCOR_006 + mapping: + - [B2, SXF5_HCOR_006.sextupole] + - [B0, SXF5_HCOR_006.hcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN15-AR/EM-SX/SCF.14/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN15-AR/EM-COR/SCF.14-CDLH.07/strength + unit: '1' +- type: pyaml.magnet.cfm_magnet + name: OCTF5_QCORROCT_119_QT_001 + mapping: + - [B3, OCTF5_QCORROCT_119_QT_001.octupole] + - [B1, OCTF5_QCORROCT_119_QT_001.quadrupole] + - [A1, OCTF5_QCORROCT_119_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN15-AR/EM-OCT/OC.05/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN15-AR/EM-COR/OC.05-CQLN.16/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN15-AR/EM-COR/OC.05-CQLT.06/strength + unit: 1/m**2 +- type: pyaml.bpm.bpm + name: BPM_131 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN15-AR/DG-EPOS/BPM.08/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN15-AR/DG-EPOS/BPM.08/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: SXD5_VCOR_009 + mapping: + - [B2, SXD5_VCOR_009.sextupole] + - [A0, SXD5_VCOR_009.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, A0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN15-AR/EM-SX/SCD.15/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN15-AR/EM-COR/SCD.15-CDLV.07/strength + unit: '1' +- type: pyaml.magnet.quadrupole + name: QCORR_154 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN15-AR/EM-COR/CQLN.17/strength + unit: 1/m +- type: pyaml.magnet.quadrupole + name: QCORR_155 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN15-AR/EM-COR/CQLN.18/strength + unit: 1/m +- type: pyaml.magnet.sextupole + name: SXD52_003 + model: + type: pyaml.magnet.identity_model + unit: 1/m**2 + physics: + type: tango.pyaml.attribute + attribute: AN15-AR/EM-SX/SCD.16/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SXF52_HCOR_003 + mapping: + - [B2, SXF52_HCOR_003.sextupole] + - [B0, SXF52_HCOR_003.hcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN15-AR/EM-SX/SCF.17/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN15-AR/EM-COR/SCF.17-CDLH.08/strength + unit: '1' +- type: pyaml.magnet.cfm_magnet + name: OCTF5_QCORROCT_120_QT_001 + mapping: + - [B3, OCTF5_QCORROCT_120_QT_001.octupole] + - [B1, OCTF5_QCORROCT_120_QT_001.quadrupole] + - [A1, OCTF5_QCORROCT_120_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN15-AR/EM-OCT/OC.06/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN15-AR/EM-COR/OC.06-CQLN.19/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN15-AR/EM-COR/OC.06-CQLT.07/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SXD52_VCOR_003 + mapping: + - [B2, SXD52_VCOR_003.sextupole] + - [A0, SXD52_VCOR_003.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, A0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN15-AR/EM-SX/SCD.18/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN15-AR/EM-COR/SCD.18-CDLV.08/strength + unit: '1' +- type: pyaml.bpm.bpm + name: BPM_132 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN15-AR/DG-EPOS/BPM.09/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN15-AR/DG-EPOS/BPM.09/y_pos + unit: mm +- type: pyaml.magnet.quadrupole + name: QCORR_156 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN15-AR/EM-COR/CQLN.20/strength + unit: 1/m +- type: pyaml.magnet.cfm_magnet + name: SH15_VCOR_003 + mapping: + - [B2, SH15_VCOR_003.sextupole] + - [A0, SH15_VCOR_003.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, A0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN15-AR/EM-SX/SHD.04/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN15-AR/EM-COR/SHD.04-CDLV.09/strength + unit: '1' +- type: pyaml.bpm.bpm + name: BPM_133 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN15-AR/DG-EPOS/BPM.10/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN15-AR/DG-EPOS/BPM.10/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: SH14_HCOR_003 + mapping: + - [B2, SH14_HCOR_003.sextupole] + - [B0, SH14_HCOR_003.hcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN15-AR/EM-SX/SHD.05/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN15-AR/EM-COR/SHD.05-CDLH.09/strength + unit: '1' +- type: pyaml.magnet.cfm_magnet + name: OH141_QCORROCT_121_001 + mapping: + - [B3, OH141_QCORROCT_121_001.octupole] + - [B1, OH141_QCORROCT_121_001.quadrupole] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1] + units: [1/m**3, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN15-AR/EM-OCT/OH.03/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN15-AR/EM-COR/OH.03-CQLN.21/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SH13_COR_003 + mapping: + - [B2, SH13_COR_003.sextupole] + - [B0, SH13_COR_003.hcorrector] + - [A0, SH13_COR_003.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0, A0] + units: [1/m**2, '1', '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN15-AR/EM-SX/SHF.06/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN15-AR/EM-COR/SHF.06-CDLH.10/strength + unit: '1' + - type: tango.pyaml.attribute + attribute: AN15-AR/EM-COR/SHF.06-CDLV.10/strength + unit: '1' +- type: pyaml.magnet.cfm_magnet + name: OH131_QCORROCT_122_001 + mapping: + - [B3, OH131_QCORROCT_122_001.octupole] + - [B1, OH131_QCORROCT_122_001.quadrupole] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1] + units: [1/m**3, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN15-AR/EM-OCT/OH.04/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN15-AR/EM-COR/OH.04-CQLN.22/strength + unit: 1/m**2 +- type: pyaml.bpm.bpm + name: BPM_134 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN16-SD/DG-EPOS/BPM.01/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN16-SD/DG-EPOS/BPM.01/y_pos + unit: mm +- type: pyaml.bpm.bpm + name: BPM_135 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN16-SD/DG-EPOS/BPM.02/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN16-SD/DG-EPOS/BPM.02/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: OH16_QCORROCT_123_001 + mapping: + - [B3, OH16_QCORROCT_123_001.octupole] + - [B1, OH16_QCORROCT_123_001.quadrupole] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1] + units: [1/m**3, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN16-SD/EM-OCT/OH.01/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN16-SD/EM-COR/OH.01-CQLN.01/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SH16_COR_003 + mapping: + - [B2, SH16_COR_003.sextupole] + - [B0, SH16_COR_003.hcorrector] + - [A0, SH16_COR_003.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0, A0] + units: [1/m**2, '1', '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN16-SD/EM-SX/SHD.01/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN16-SD/EM-COR/SHD.01-CDLH.01/strength + unit: '1' + - type: tango.pyaml.attribute + attribute: AN16-SD/EM-COR/SHD.01-CDLV.01/strength + unit: '1' +- type: pyaml.magnet.cfm_magnet + name: SH16_COR_004 + mapping: + - [B2, SH16_COR_004.sextupole] + - [B0, SH16_COR_004.hcorrector] + - [A0, SH16_COR_004.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0, A0] + units: [1/m**2, '1', '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN16-SD/EM-SX/SHD.02/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN16-SD/EM-COR/SHD.02-CDLH.02/strength + unit: '1' + - type: tango.pyaml.attribute + attribute: AN16-SD/EM-COR/SHD.02-CDLV.02/strength + unit: '1' +- type: pyaml.magnet.cfm_magnet + name: OH16_QCORROCT_124_001 + mapping: + - [B3, OH16_QCORROCT_124_001.octupole] + - [B1, OH16_QCORROCT_124_001.quadrupole] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1] + units: [1/m**3, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN16-SD/EM-OCT/OH.02/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN16-SD/EM-COR/OH.02-CQLN.02/strength + unit: 1/m**2 +- type: pyaml.bpm.bpm + name: BPM_136 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN16-SD/DG-EPOS/BPM.03/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN16-SD/DG-EPOS/BPM.03/y_pos + unit: mm +- type: pyaml.bpm.bpm + name: BPM_137 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN16-SD/DG-EPOS/BPM.04/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN16-SD/DG-EPOS/BPM.04/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: OH132_QCORROCT_125_001 + mapping: + - [B3, OH132_QCORROCT_125_001.octupole] + - [B1, OH132_QCORROCT_125_001.quadrupole] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1] + units: [1/m**3, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN16-AR/EM-OCT/OH.01/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN16-AR/EM-COR/OH.01-CQLN.01/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SH13_COR_004 + mapping: + - [B2, SH13_COR_004.sextupole] + - [B0, SH13_COR_004.hcorrector] + - [A0, SH13_COR_004.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0, A0] + units: [1/m**2, '1', '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN16-AR/EM-SX/SHF.01/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN16-AR/EM-COR/SHF.01-CDLH.03/strength + unit: '1' + - type: tango.pyaml.attribute + attribute: AN16-AR/EM-COR/SHF.01-CDLV.03/strength + unit: '1' +- type: pyaml.magnet.cfm_magnet + name: OH142_QCORROCT_126_001 + mapping: + - [B3, OH142_QCORROCT_126_001.octupole] + - [B1, OH142_QCORROCT_126_001.quadrupole] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1] + units: [1/m**3, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN16-AR/EM-OCT/OH.02/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN16-AR/EM-COR/OH.02-CQLN.02/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SH14_HCOR_004 + mapping: + - [B2, SH14_HCOR_004.sextupole] + - [B0, SH14_HCOR_004.hcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN16-AR/EM-SX/SHD.02/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN16-AR/EM-COR/SHD.02-CDLH.04/strength + unit: '1' +- type: pyaml.bpm.bpm + name: BPM_138 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN16-AR/DG-EPOS/BPM.05/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN16-AR/DG-EPOS/BPM.05/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: SH15_VCOR_004 + mapping: + - [B2, SH15_VCOR_004.sextupole] + - [A0, SH15_VCOR_004.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, A0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN16-AR/EM-SX/SHD.03/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN16-AR/EM-COR/SHD.03-CDLV.04/strength + unit: '1' +- type: pyaml.magnet.quadrupole + name: QCORR_157 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN16-AR/EM-COR/CQLN.03/strength + unit: 1/m +- type: pyaml.magnet.sextupole + name: SXD52_004 + model: + type: pyaml.magnet.identity_model + unit: 1/m**2 + physics: + type: tango.pyaml.attribute + attribute: AN16-AR/EM-SX/SCD.01/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: OCTF5_QCORROCT_127_QT_001 + mapping: + - [B3, OCTF5_QCORROCT_127_QT_001.octupole] + - [B1, OCTF5_QCORROCT_127_QT_001.quadrupole] + - [A1, OCTF5_QCORROCT_127_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN16-AR/EM-OCT/OC.01/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN16-AR/EM-COR/OC.01-CQLN.04/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN16-AR/EM-COR/OC.01-CQLT.01/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SXF52_HCOR_004 + mapping: + - [B2, SXF52_HCOR_004.sextupole] + - [B0, SXF52_HCOR_004.hcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN16-AR/EM-SX/SCF.02/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN16-AR/EM-COR/SCF.02-CDLH.05/strength + unit: '1' +- type: pyaml.bpm.bpm + name: BPM_139 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN16-AR/DG-EPOS/BPM.06/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN16-AR/DG-EPOS/BPM.06/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: SXD52_VCOR_004 + mapping: + - [B2, SXD52_VCOR_004.sextupole] + - [A0, SXD52_VCOR_004.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, A0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN16-AR/EM-SX/SCD.03/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN16-AR/EM-COR/SCD.03-CDLV.05/strength + unit: '1' +- type: pyaml.magnet.quadrupole + name: QCORR_158 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN16-AR/EM-COR/CQLN.05/strength + unit: 1/m +- type: pyaml.magnet.quadrupole + name: QCORR_159 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN16-AR/EM-COR/CQLN.06/strength + unit: 1/m +- type: pyaml.magnet.sextupole + name: SXD5_010 + model: + type: pyaml.magnet.identity_model + unit: 1/m**2 + physics: + type: tango.pyaml.attribute + attribute: AN16-AR/EM-SX/SCD.04/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: OCTF5_QCORROCT_128_QT_001 + mapping: + - [B3, OCTF5_QCORROCT_128_QT_001.octupole] + - [B1, OCTF5_QCORROCT_128_QT_001.quadrupole] + - [A1, OCTF5_QCORROCT_128_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN16-AR/EM-OCT/OC.02/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN16-AR/EM-COR/OC.02-CQLN.07/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN16-AR/EM-COR/OC.02-CQLT.02/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SXF5_HCOR_007 + mapping: + - [B2, SXF5_HCOR_007.sextupole] + - [B0, SXF5_HCOR_007.hcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN16-AR/EM-SX/SCF.05/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN16-AR/EM-COR/SCF.05-CDLH.06/strength + unit: '1' +- type: pyaml.bpm.bpm + name: BPM_140 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN16-AR/DG-EPOS/BPM.07/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN16-AR/DG-EPOS/BPM.07/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: SXD5_VCOR_010 + mapping: + - [B2, SXD5_VCOR_010.sextupole] + - [A0, SXD5_VCOR_010.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, A0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN16-AR/EM-SX/SCD.06/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN16-AR/EM-COR/SCD.06-CDLV.06/strength + unit: '1' +- type: pyaml.magnet.quadrupole + name: QCORR_160 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN16-AR/EM-COR/CQLN.08/strength + unit: 1/m +- type: pyaml.magnet.quadrupole + name: QCORR_161 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN16-AR/EM-COR/CQLN.09/strength + unit: 1/m +- type: pyaml.magnet.sextupole + name: SXD5_011 + model: + type: pyaml.magnet.identity_model + unit: 1/m**2 + physics: + type: tango.pyaml.attribute + attribute: AN16-AR/EM-SX/SCD.07/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: OCTF5_QCORROCT_129_QT_001 + mapping: + - [B3, OCTF5_QCORROCT_129_QT_001.octupole] + - [B1, OCTF5_QCORROCT_129_QT_001.quadrupole] + - [A1, OCTF5_QCORROCT_129_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN16-AR/EM-OCT/OC.03/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN16-AR/EM-COR/OC.03-CQLN.10/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN16-AR/EM-COR/OC.03-CQLT.03/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SXF53_HCOR_007 + mapping: + - [B2, SXF53_HCOR_007.sextupole] + - [B0, SXF53_HCOR_007.hcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN16-AR/EM-SX/SCF.08/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN16-AR/EM-COR/SCF.08-CDLH.07/strength + unit: '1' +- type: pyaml.bpm.bpm + name: BPM_141 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN16-AR/DG-EPOS/BPM.08/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN16-AR/DG-EPOS/BPM.08/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: SXD53_VCOR_004 + mapping: + - [B2, SXD53_VCOR_004.sextupole] + - [A0, SXD53_VCOR_004.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, A0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN16-AR/EM-SX/SCD.09/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN16-AR/EM-COR/SCD.09-CDLV.07/strength + unit: '1' +- type: pyaml.magnet.quadrupole + name: QCORR_162 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN16-AR/EM-COR/CQLN.11/strength + unit: 1/m +- type: pyaml.magnet.quadrupole + name: QCORR_163 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN16-AR/EM-COR/CQLN.12/strength + unit: 1/m +- type: pyaml.magnet.sextupole + name: SXD53_004 + model: + type: pyaml.magnet.identity_model + unit: 1/m**2 + physics: + type: tango.pyaml.attribute + attribute: AN16-AR/EM-SX/SCD.10/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SXF53_HCOR_008 + mapping: + - [B2, SXF53_HCOR_008.sextupole] + - [B0, SXF53_HCOR_008.hcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN16-AR/EM-SX/SCF.11/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN16-AR/EM-COR/SCF.11-CDLH.08/strength + unit: '1' +- type: pyaml.magnet.cfm_magnet + name: OCTF5_QCORROCT_130_QT_001 + mapping: + - [B3, OCTF5_QCORROCT_130_QT_001.octupole] + - [B1, OCTF5_QCORROCT_130_QT_001.quadrupole] + - [A1, OCTF5_QCORROCT_130_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN16-AR/EM-OCT/OC.04/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN16-AR/EM-COR/OC.04-CQLN.13/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN16-AR/EM-COR/OC.04-CQLT.04/strength + unit: 1/m**2 +- type: pyaml.bpm.bpm + name: BPM_142 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN16-AR/DG-EPOS/BPM.09/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN16-AR/DG-EPOS/BPM.09/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: SXD5_VCOR_011 + mapping: + - [B2, SXD5_VCOR_011.sextupole] + - [A0, SXD5_VCOR_011.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, A0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN16-AR/EM-SX/SCD.12/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN16-AR/EM-COR/SCD.12-CDLV.08/strength + unit: '1' +- type: pyaml.magnet.quadrupole + name: QCORR_164 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN16-AR/EM-COR/CQLN.14/strength + unit: 1/m +- type: pyaml.magnet.quadrupole + name: QCORR_165 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN16-AR/EM-COR/CQLN.15/strength + unit: 1/m +- type: pyaml.magnet.sextupole + name: SXD5_012 + model: + type: pyaml.magnet.identity_model + unit: 1/m**2 + physics: + type: tango.pyaml.attribute + attribute: AN16-AR/EM-SX/SCD.13/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SXF5_HCOR_008 + mapping: + - [B2, SXF5_HCOR_008.sextupole] + - [B0, SXF5_HCOR_008.hcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN16-AR/EM-SX/SCF.14/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN16-AR/EM-COR/SCF.14-CDLH.09/strength + unit: '1' +- type: pyaml.magnet.cfm_magnet + name: OCTF5_QCORROCT_131_QT_001 + mapping: + - [B3, OCTF5_QCORROCT_131_QT_001.octupole] + - [B1, OCTF5_QCORROCT_131_QT_001.quadrupole] + - [A1, OCTF5_QCORROCT_131_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN16-AR/EM-OCT/OC.05/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN16-AR/EM-COR/OC.05-CQLN.16/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN16-AR/EM-COR/OC.05-CQLT.05/strength + unit: 1/m**2 +- type: pyaml.bpm.bpm + name: BPM_143 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN16-AR/DG-EPOS/BPM.10/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN16-AR/DG-EPOS/BPM.10/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: SXD5_VCOR_012 + mapping: + - [B2, SXD5_VCOR_012.sextupole] + - [A0, SXD5_VCOR_012.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, A0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN16-AR/EM-SX/SCD.15/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN16-AR/EM-COR/SCD.15-CDLV.09/strength + unit: '1' +- type: pyaml.magnet.quadrupole + name: QCORR_166 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN16-AR/EM-COR/CQLN.17/strength + unit: 1/m +- type: pyaml.magnet.quadrupole + name: QCORR_167 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN16-AR/EM-COR/CQLN.18/strength + unit: 1/m +- type: pyaml.magnet.sextupole + name: SXD51_004 + model: + type: pyaml.magnet.identity_model + unit: 1/m**2 + physics: + type: tango.pyaml.attribute + attribute: AN16-AR/EM-SX/SCD.16/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SXF51_HCOR_004 + mapping: + - [B2, SXF51_HCOR_004.sextupole] + - [B0, SXF51_HCOR_004.hcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN16-AR/EM-SX/SCF.17/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN16-AR/EM-COR/SCF.17-CDLH.10/strength + unit: '1' +- type: pyaml.magnet.cfm_magnet + name: OCTF5_QCORROCT_132_QT_001 + mapping: + - [B3, OCTF5_QCORROCT_132_QT_001.octupole] + - [B1, OCTF5_QCORROCT_132_QT_001.quadrupole] + - [A1, OCTF5_QCORROCT_132_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN16-AR/EM-OCT/OC.06/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN16-AR/EM-COR/OC.06-CQLN.19/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN16-AR/EM-COR/OC.06-CQLT.06/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SXD51_VCOR_004 + mapping: + - [B2, SXD51_VCOR_004.sextupole] + - [A0, SXD51_VCOR_004.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, A0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN16-AR/EM-SX/SCD.18/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN16-AR/EM-COR/SCD.18-CDLV.10/strength + unit: '1' +- type: pyaml.bpm.bpm + name: BPM_144 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN16-AR/DG-EPOS/BPM.11/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN16-AR/DG-EPOS/BPM.11/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: SH12_COR_007 + mapping: + - [B2, SH12_COR_007.sextupole] + - [B0, SH12_COR_007.hcorrector] + - [A0, SH12_COR_007.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0, A0] + units: [1/m**2, '1', '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN16-AR/EM-SX/SHD.04/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN16-AR/EM-COR/SHD.04-CDLH.11/strength + unit: '1' + - type: tango.pyaml.attribute + attribute: AN16-AR/EM-COR/SHD.04-CDLV.11/strength + unit: '1' +- type: pyaml.magnet.quadrupole + name: QCORR_168 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN16-AR/EM-COR/CQLN.20/strength + unit: 1/m +- type: pyaml.magnet.sextupole + name: SH11_007 + model: + type: pyaml.magnet.identity_model + unit: 1/m**2 + physics: + type: tango.pyaml.attribute + attribute: AN16-AR/EM-SX/SHD.05/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: OH11_QCORROCT_133_001 + mapping: + - [B3, OH11_QCORROCT_133_001.octupole] + - [B1, OH11_QCORROCT_133_001.quadrupole] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1] + units: [1/m**3, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN16-AR/EM-OCT/OH.03/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN16-AR/EM-COR/OH.03-CQLN.21/strength + unit: 1/m**2 +- type: pyaml.bpm.bpm + name: BPM_145 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN16-AR/DG-EPOS/BPM.12/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN16-AR/DG-EPOS/BPM.12/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: SH10_COR_007 + mapping: + - [B2, SH10_COR_007.sextupole] + - [B0, SH10_COR_007.hcorrector] + - [A0, SH10_COR_007.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0, A0] + units: [1/m**2, '1', '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN16-AR/EM-SX/SHF.06/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN16-AR/EM-COR/SHF.06-CDLH.12/strength + unit: '1' + - type: tango.pyaml.attribute + attribute: AN16-AR/EM-COR/SHF.06-CDLV.12/strength + unit: '1' +- type: pyaml.magnet.cfm_magnet + name: OH10_QCORROCT_134_QT_001 + mapping: + - [B3, OH10_QCORROCT_134_QT_001.octupole] + - [B1, OH10_QCORROCT_134_QT_001.quadrupole] + - [A1, OH10_QCORROCT_134_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN16-AR/EM-OCT/OH.04/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN16-AR/EM-COR/OH.04-CQLN.22/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN16-AR/EM-COR/OH.04-CQLT.07/strength + unit: 1/m**2 +- type: pyaml.bpm.bpm + name: BPM_146 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN17-SD/DG-EPOS/BPM.01/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN17-SD/DG-EPOS/BPM.01/y_pos + unit: mm +- type: pyaml.bpm.bpm + name: BPM_147 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN17-SD/DG-EPOS/BPM.02/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN17-SD/DG-EPOS/BPM.02/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: OH10_QCORROCT_135_QT_001 + mapping: + - [B3, OH10_QCORROCT_135_QT_001.octupole] + - [B1, OH10_QCORROCT_135_QT_001.quadrupole] + - [A1, OH10_QCORROCT_135_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN17-AR/EM-OCT/OH.01/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN17-AR/EM-COR/OH.01-CQLN.01/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN17-AR/EM-COR/OH.01-CQLT.01/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SH10_COR_008 + mapping: + - [B2, SH10_COR_008.sextupole] + - [B0, SH10_COR_008.hcorrector] + - [A0, SH10_COR_008.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0, A0] + units: [1/m**2, '1', '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN17-AR/EM-SX/SHF.01/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN17-AR/EM-COR/SHF.01-CDLH.01/strength + unit: '1' + - type: tango.pyaml.attribute + attribute: AN17-AR/EM-COR/SHF.01-CDLV.01/strength + unit: '1' +- type: pyaml.bpm.bpm + name: BPM_148 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN17-AR/DG-EPOS/BPM.03/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN17-AR/DG-EPOS/BPM.03/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: OH11_QCORROCT_136_001 + mapping: + - [B3, OH11_QCORROCT_136_001.octupole] + - [B1, OH11_QCORROCT_136_001.quadrupole] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1] + units: [1/m**3, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN17-AR/EM-OCT/OH.02/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN17-AR/EM-COR/OH.02-CQLN.02/strength + unit: 1/m**2 +- type: pyaml.magnet.sextupole + name: SH11_008 + model: + type: pyaml.magnet.identity_model + unit: 1/m**2 + physics: + type: tango.pyaml.attribute + attribute: AN17-AR/EM-SX/SHD.02/strength + unit: 1/m**2 +- type: pyaml.magnet.quadrupole + name: QCORR_169 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN17-AR/EM-COR/CQLN.03/strength + unit: 1/m +- type: pyaml.magnet.cfm_magnet + name: SH12_COR_008 + mapping: + - [B2, SH12_COR_008.sextupole] + - [B0, SH12_COR_008.hcorrector] + - [A0, SH12_COR_008.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0, A0] + units: [1/m**2, '1', '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN17-AR/EM-SX/SHD.03/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN17-AR/EM-COR/SHD.03-CDLH.02/strength + unit: '1' + - type: tango.pyaml.attribute + attribute: AN17-AR/EM-COR/SHD.03-CDLV.02/strength + unit: '1' +- type: pyaml.magnet.sextupole + name: SXD42_004 + model: + type: pyaml.magnet.identity_model + unit: 1/m**2 + physics: + type: tango.pyaml.attribute + attribute: AN17-AR/EM-SX/SCD.01/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: OCTF4_QCORROCT_137_QT_001 + mapping: + - [B3, OCTF4_QCORROCT_137_QT_001.octupole] + - [B1, OCTF4_QCORROCT_137_QT_001.quadrupole] + - [A1, OCTF4_QCORROCT_137_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN17-AR/EM-OCT/OC.01/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN17-AR/EM-COR/OC.01-CQLN.04/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN17-AR/EM-COR/OC.01-CQLT.02/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SXF42_HCOR_004 + mapping: + - [B2, SXF42_HCOR_004.sextupole] + - [B0, SXF42_HCOR_004.hcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN17-AR/EM-SX/SCF.02/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN17-AR/EM-COR/SCF.02-CDLH.03/strength + unit: '1' +- type: pyaml.bpm.bpm + name: BPM_149 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN17-AR/DG-EPOS/BPM.04/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN17-AR/DG-EPOS/BPM.04/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: SXD42_VCOR_004 + mapping: + - [B2, SXD42_VCOR_004.sextupole] + - [A0, SXD42_VCOR_004.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, A0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN17-AR/EM-SX/SCD.03/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN17-AR/EM-COR/SCD.03-CDLV.03/strength + unit: '1' +- type: pyaml.magnet.quadrupole + name: QCORR_170 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN17-AR/EM-COR/CQLN.05/strength + unit: 1/m +- type: pyaml.magnet.quadrupole + name: QCORR_171 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN17-AR/EM-COR/CQLN.06/strength + unit: 1/m +- type: pyaml.magnet.sextupole + name: SXD4_004 + model: + type: pyaml.magnet.identity_model + unit: 1/m**2 + physics: + type: tango.pyaml.attribute + attribute: AN17-AR/EM-SX/SCD.04/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: OCTF4_QCORROCT_138_QT_001 + mapping: + - [B3, OCTF4_QCORROCT_138_QT_001.octupole] + - [B1, OCTF4_QCORROCT_138_QT_001.quadrupole] + - [A1, OCTF4_QCORROCT_138_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN17-AR/EM-OCT/OC.02/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN17-AR/EM-COR/OC.02-CQLN.07/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN17-AR/EM-COR/OC.02-CQLT.03/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SXF4_HCOR_004 + mapping: + - [B2, SXF4_HCOR_004.sextupole] + - [B0, SXF4_HCOR_004.hcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN17-AR/EM-SX/SCF.05/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN17-AR/EM-COR/SCF.05-CDLH.04/strength + unit: '1' +- type: pyaml.bpm.bpm + name: BPM_150 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN17-AR/DG-EPOS/BPM.05/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN17-AR/DG-EPOS/BPM.05/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: SXD4_VCOR_004 + mapping: + - [B2, SXD4_VCOR_004.sextupole] + - [A0, SXD4_VCOR_004.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, A0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN17-AR/EM-SX/SCD.06/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN17-AR/EM-COR/SCD.06-CDLV.04/strength + unit: '1' +- type: pyaml.magnet.quadrupole + name: QCORR_172 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN17-AR/EM-COR/CQLN.08/strength + unit: 1/m +- type: pyaml.magnet.quadrupole + name: QCORR_173 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN17-AR/EM-COR/CQLN.09/strength + unit: 1/m +- type: pyaml.magnet.sextupole + name: SXD41_004 + model: + type: pyaml.magnet.identity_model + unit: 1/m**2 + physics: + type: tango.pyaml.attribute + attribute: AN17-AR/EM-SX/SCD.07/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SXF41_HCOR_004 + mapping: + - [B2, SXF41_HCOR_004.sextupole] + - [B0, SXF41_HCOR_004.hcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN17-AR/EM-SX/SCF.08/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN17-AR/EM-COR/SCF.08-CDLH.05/strength + unit: '1' +- type: pyaml.magnet.cfm_magnet + name: OCTF4_QCORROCT_139_QT_001 + mapping: + - [B3, OCTF4_QCORROCT_139_QT_001.octupole] + - [B1, OCTF4_QCORROCT_139_QT_001.quadrupole] + - [A1, OCTF4_QCORROCT_139_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN17-AR/EM-OCT/OC.03/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN17-AR/EM-COR/OC.03-CQLN.10/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN17-AR/EM-COR/OC.03-CQLT.04/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SXD41_VCOR_004 + mapping: + - [B2, SXD41_VCOR_004.sextupole] + - [A0, SXD41_VCOR_004.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, A0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN17-AR/EM-SX/SCD.09/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN17-AR/EM-COR/SCD.09-CDLV.05/strength + unit: '1' +- type: pyaml.bpm.bpm + name: BPM_151 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN17-AR/DG-EPOS/BPM.06/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN17-AR/DG-EPOS/BPM.06/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: SH9_COR_013 + mapping: + - [B2, SH9_COR_013.sextupole] + - [B0, SH9_COR_013.hcorrector] + - [A0, SH9_COR_013.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0, A0] + units: [1/m**2, '1', '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN17-AR/EM-SX/SHD.04/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN17-AR/EM-COR/SHD.04-CDLH.06/strength + unit: '1' + - type: tango.pyaml.attribute + attribute: AN17-AR/EM-COR/SHD.04-CDLV.06/strength + unit: '1' +- type: pyaml.magnet.quadrupole + name: QCORR_174 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN17-AR/EM-COR/CQLN.11/strength + unit: 1/m +- type: pyaml.magnet.sextupole + name: SH8_013 + model: + type: pyaml.magnet.identity_model + unit: 1/m**2 + physics: + type: tango.pyaml.attribute + attribute: AN17-AR/EM-SX/SHD.05/strength + unit: 1/m**2 +- type: pyaml.magnet.quadrupole + name: QCORR_175 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN17-AR/EM-COR/CQLN.12/strength + unit: 1/m +- type: pyaml.bpm.bpm + name: BPM_152 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN17-AR/DG-EPOS/BPM.07/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN17-AR/DG-EPOS/BPM.07/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: SH7_COR_013 + mapping: + - [B2, SH7_COR_013.sextupole] + - [B0, SH7_COR_013.hcorrector] + - [A0, SH7_COR_013.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0, A0] + units: [1/m**2, '1', '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN17-AR/EM-SX/SHF.06/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN17-AR/EM-COR/SHF.06-CDLH.07/strength + unit: '1' + - type: tango.pyaml.attribute + attribute: AN17-AR/EM-COR/SHF.06-CDLV.07/strength + unit: '1' +- type: pyaml.magnet.cfm_magnet + name: OH7_QCORROCT_140_QT_001 + mapping: + - [B3, OH7_QCORROCT_140_QT_001.octupole] + - [B1, OH7_QCORROCT_140_QT_001.quadrupole] + - [A1, OH7_QCORROCT_140_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN17-AR/EM-OCT/OH.03/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN17-AR/EM-COR/OH.03-CQLN.13/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN17-AR/EM-COR/OH.03-CQLT.05/strength + unit: 1/m**2 +- type: pyaml.bpm.bpm + name: BPM_153 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN18-SD/DG-EPOS/BPM.01/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN18-SD/DG-EPOS/BPM.01/y_pos + unit: mm +- type: pyaml.bpm.bpm + name: BPM_154 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN18-SD/DG-EPOS/BPM.02/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN18-SD/DG-EPOS/BPM.02/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: OH7_QCORROCT_141_QT_001 + mapping: + - [B3, OH7_QCORROCT_141_QT_001.octupole] + - [B1, OH7_QCORROCT_141_QT_001.quadrupole] + - [A1, OH7_QCORROCT_141_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN18-AR/EM-OCT/OH.01/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN18-AR/EM-COR/OH.01-CQLN.01/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN18-AR/EM-COR/OH.01-CQLT.01/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SH7_COR_014 + mapping: + - [B2, SH7_COR_014.sextupole] + - [B0, SH7_COR_014.hcorrector] + - [A0, SH7_COR_014.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0, A0] + units: [1/m**2, '1', '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN18-AR/EM-SX/SHF.01/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN18-AR/EM-COR/SHF.01-CDLH.01/strength + unit: '1' + - type: tango.pyaml.attribute + attribute: AN18-AR/EM-COR/SHF.01-CDLV.01/strength + unit: '1' +- type: pyaml.bpm.bpm + name: BPM_155 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN18-AR/DG-EPOS/BPM.03/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN18-AR/DG-EPOS/BPM.03/y_pos + unit: mm +- type: pyaml.magnet.quadrupole + name: QCORR_176 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN18-AR/EM-COR/CQLN.02/strength + unit: 1/m +- type: pyaml.magnet.sextupole + name: SH8_014 + model: + type: pyaml.magnet.identity_model + unit: 1/m**2 + physics: + type: tango.pyaml.attribute + attribute: AN18-AR/EM-SX/SHD.02/strength + unit: 1/m**2 +- type: pyaml.magnet.quadrupole + name: QCORR_177 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN18-AR/EM-COR/CQLN.03/strength + unit: 1/m +- type: pyaml.magnet.cfm_magnet + name: SH9_COR_014 + mapping: + - [B2, SH9_COR_014.sextupole] + - [B0, SH9_COR_014.hcorrector] + - [A0, SH9_COR_014.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0, A0] + units: [1/m**2, '1', '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN18-AR/EM-SX/SHD.03/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN18-AR/EM-COR/SHD.03-CDLH.02/strength + unit: '1' + - type: tango.pyaml.attribute + attribute: AN18-AR/EM-COR/SHD.03-CDLV.02/strength + unit: '1' +- type: pyaml.magnet.sextupole + name: SXD32_004 + model: + type: pyaml.magnet.identity_model + unit: 1/m**2 + physics: + type: tango.pyaml.attribute + attribute: AN18-AR/EM-SX/SCD.01/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: OCTF3_QCORROCT_142_QT_001 + mapping: + - [B3, OCTF3_QCORROCT_142_QT_001.octupole] + - [B1, OCTF3_QCORROCT_142_QT_001.quadrupole] + - [A1, OCTF3_QCORROCT_142_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN18-AR/EM-OCT/OC.01/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN18-AR/EM-COR/OC.01-CQLN.04/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN18-AR/EM-COR/OC.01-CQLT.02/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SXF32_HCOR_004 + mapping: + - [B2, SXF32_HCOR_004.sextupole] + - [B0, SXF32_HCOR_004.hcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN18-AR/EM-SX/SCF.02/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN18-AR/EM-COR/SCF.02-CDLH.03/strength + unit: '1' +- type: pyaml.bpm.bpm + name: BPM_156 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN18-AR/DG-EPOS/BPM.04/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN18-AR/DG-EPOS/BPM.04/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: SXD32_VCOR_004 + mapping: + - [B2, SXD32_VCOR_004.sextupole] + - [A0, SXD32_VCOR_004.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, A0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN18-AR/EM-SX/SCD.03/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN18-AR/EM-COR/SCD.03-CDLV.03/strength + unit: '1' +- type: pyaml.magnet.quadrupole + name: QCORR_178 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN18-AR/EM-COR/CQLN.05/strength + unit: 1/m +- type: pyaml.magnet.quadrupole + name: QCORR_179 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN18-AR/EM-COR/CQLN.06/strength + unit: 1/m +- type: pyaml.magnet.sextupole + name: SXD3_010 + model: + type: pyaml.magnet.identity_model + unit: 1/m**2 + physics: + type: tango.pyaml.attribute + attribute: AN18-AR/EM-SX/SCD.04/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: OCTF3_QCORROCT_143_QT_001 + mapping: + - [B3, OCTF3_QCORROCT_143_QT_001.octupole] + - [B1, OCTF3_QCORROCT_143_QT_001.quadrupole] + - [A1, OCTF3_QCORROCT_143_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN18-AR/EM-OCT/OC.02/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN18-AR/EM-COR/OC.02-CQLN.07/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN18-AR/EM-COR/OC.02-CQLT.03/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SXF3_HCOR_007 + mapping: + - [B2, SXF3_HCOR_007.sextupole] + - [B0, SXF3_HCOR_007.hcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN18-AR/EM-SX/SCF.05/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN18-AR/EM-COR/SCF.05-CDLH.04/strength + unit: '1' +- type: pyaml.bpm.bpm + name: BPM_157 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN18-AR/DG-EPOS/BPM.05/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN18-AR/DG-EPOS/BPM.05/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: SXD3_VCOR_010 + mapping: + - [B2, SXD3_VCOR_010.sextupole] + - [A0, SXD3_VCOR_010.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, A0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN18-AR/EM-SX/SCD.06/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN18-AR/EM-COR/SCD.06-CDLV.04/strength + unit: '1' +- type: pyaml.magnet.quadrupole + name: QCORR_180 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN18-AR/EM-COR/CQLN.08/strength + unit: 1/m +- type: pyaml.magnet.quadrupole + name: QCORR_181 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN18-AR/EM-COR/CQLN.09/strength + unit: 1/m +- type: pyaml.magnet.sextupole + name: SXD3_011 + model: + type: pyaml.magnet.identity_model + unit: 1/m**2 + physics: + type: tango.pyaml.attribute + attribute: AN18-AR/EM-SX/SCD.07/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: OCTF3_QCORROCT_144_QT_001 + mapping: + - [B3, OCTF3_QCORROCT_144_QT_001.octupole] + - [B1, OCTF3_QCORROCT_144_QT_001.quadrupole] + - [A1, OCTF3_QCORROCT_144_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN18-AR/EM-OCT/OC.03/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN18-AR/EM-COR/OC.03-CQLN.10/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN18-AR/EM-COR/OC.03-CQLT.04/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SXF33_HCOR_007 + mapping: + - [B2, SXF33_HCOR_007.sextupole] + - [B0, SXF33_HCOR_007.hcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN18-AR/EM-SX/SCF.08/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN18-AR/EM-COR/SCF.08-CDLH.05/strength + unit: '1' +- type: pyaml.bpm.bpm + name: BPM_158 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN18-AR/DG-EPOS/BPM.06/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN18-AR/DG-EPOS/BPM.06/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: SXD33_VCOR_004 + mapping: + - [B2, SXD33_VCOR_004.sextupole] + - [A0, SXD33_VCOR_004.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, A0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN18-AR/EM-SX/SCD.09/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN18-AR/EM-COR/SCD.09-CDLV.05/strength + unit: '1' +- type: pyaml.magnet.quadrupole + name: QCORR_182 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN18-AR/EM-COR/CQLN.11/strength + unit: 1/m +- type: pyaml.magnet.quadrupole + name: QCORR_183 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN18-AR/EM-COR/CQLN.12/strength + unit: 1/m +- type: pyaml.magnet.sextupole + name: SXD33_004 + model: + type: pyaml.magnet.identity_model + unit: 1/m**2 + physics: + type: tango.pyaml.attribute + attribute: AN18-AR/EM-SX/SCD.10/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SXF33_HCOR_008 + mapping: + - [B2, SXF33_HCOR_008.sextupole] + - [B0, SXF33_HCOR_008.hcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN18-AR/EM-SX/SCF.11/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN18-AR/EM-COR/SCF.11-CDLH.06/strength + unit: '1' +- type: pyaml.magnet.cfm_magnet + name: OCTF3_QCORROCT_145_QT_001 + mapping: + - [B3, OCTF3_QCORROCT_145_QT_001.octupole] + - [B1, OCTF3_QCORROCT_145_QT_001.quadrupole] + - [A1, OCTF3_QCORROCT_145_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN18-AR/EM-OCT/OC.04/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN18-AR/EM-COR/OC.04-CQLN.13/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN18-AR/EM-COR/OC.04-CQLT.05/strength + unit: 1/m**2 +- type: pyaml.bpm.bpm + name: BPM_159 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN18-AR/DG-EPOS/BPM.07/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN18-AR/DG-EPOS/BPM.07/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: SXD3_VCOR_011 + mapping: + - [B2, SXD3_VCOR_011.sextupole] + - [A0, SXD3_VCOR_011.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, A0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN18-AR/EM-SX/SCD.12/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN18-AR/EM-COR/SCD.12-CDLV.06/strength + unit: '1' +- type: pyaml.magnet.quadrupole + name: QCORR_184 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN18-AR/EM-COR/CQLN.14/strength + unit: 1/m +- type: pyaml.magnet.quadrupole + name: QCORR_185 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN18-AR/EM-COR/CQLN.15/strength + unit: 1/m +- type: pyaml.magnet.sextupole + name: SXD3_012 + model: + type: pyaml.magnet.identity_model + unit: 1/m**2 + physics: + type: tango.pyaml.attribute + attribute: AN18-AR/EM-SX/SCD.13/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SXF3_HCOR_008 + mapping: + - [B2, SXF3_HCOR_008.sextupole] + - [B0, SXF3_HCOR_008.hcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN18-AR/EM-SX/SCF.14/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN18-AR/EM-COR/SCF.14-CDLH.07/strength + unit: '1' +- type: pyaml.magnet.cfm_magnet + name: OCTF3_QCORROCT_146_QT_001 + mapping: + - [B3, OCTF3_QCORROCT_146_QT_001.octupole] + - [B1, OCTF3_QCORROCT_146_QT_001.quadrupole] + - [A1, OCTF3_QCORROCT_146_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN18-AR/EM-OCT/OC.05/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN18-AR/EM-COR/OC.05-CQLN.16/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN18-AR/EM-COR/OC.05-CQLT.06/strength + unit: 1/m**2 +- type: pyaml.bpm.bpm + name: BPM_160 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN18-AR/DG-EPOS/BPM.08/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN18-AR/DG-EPOS/BPM.08/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: SXD3_VCOR_012 + mapping: + - [B2, SXD3_VCOR_012.sextupole] + - [A0, SXD3_VCOR_012.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, A0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN18-AR/EM-SX/SCD.15/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN18-AR/EM-COR/SCD.15-CDLV.07/strength + unit: '1' +- type: pyaml.magnet.quadrupole + name: QCORR_186 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN18-AR/EM-COR/CQLN.17/strength + unit: 1/m +- type: pyaml.magnet.quadrupole + name: QCORR_187 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN18-AR/EM-COR/CQLN.18/strength + unit: 1/m +- type: pyaml.magnet.sextupole + name: SXD31_004 + model: + type: pyaml.magnet.identity_model + unit: 1/m**2 + physics: + type: tango.pyaml.attribute + attribute: AN18-AR/EM-SX/SCD.16/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SXF31_HCOR_004 + mapping: + - [B2, SXF31_HCOR_004.sextupole] + - [B0, SXF31_HCOR_004.hcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN18-AR/EM-SX/SCF.17/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN18-AR/EM-COR/SCF.17-CDLH.08/strength + unit: '1' +- type: pyaml.magnet.cfm_magnet + name: OCTF3_QCORROCT_147_QT_001 + mapping: + - [B3, OCTF3_QCORROCT_147_QT_001.octupole] + - [B1, OCTF3_QCORROCT_147_QT_001.quadrupole] + - [A1, OCTF3_QCORROCT_147_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN18-AR/EM-OCT/OC.06/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN18-AR/EM-COR/OC.06-CQLN.19/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN18-AR/EM-COR/OC.06-CQLT.07/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SXD31_VCOR_004 + mapping: + - [B2, SXD31_VCOR_004.sextupole] + - [A0, SXD31_VCOR_004.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, A0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN18-AR/EM-SX/SCD.18/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN18-AR/EM-COR/SCD.18-CDLV.08/strength + unit: '1' +- type: pyaml.bpm.bpm + name: BPM_161 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN18-AR/DG-EPOS/BPM.09/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN18-AR/DG-EPOS/BPM.09/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: SH9_COR_015 + mapping: + - [B2, SH9_COR_015.sextupole] + - [B0, SH9_COR_015.hcorrector] + - [A0, SH9_COR_015.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0, A0] + units: [1/m**2, '1', '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN18-AR/EM-SX/SHD.04/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN18-AR/EM-COR/SHD.04-CDLH.09/strength + unit: '1' + - type: tango.pyaml.attribute + attribute: AN18-AR/EM-COR/SHD.04-CDLV.09/strength + unit: '1' +- type: pyaml.magnet.quadrupole + name: QCORR_188 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN18-AR/EM-COR/CQLN.20/strength + unit: 1/m +- type: pyaml.magnet.sextupole + name: SH8_015 + model: + type: pyaml.magnet.identity_model + unit: 1/m**2 + physics: + type: tango.pyaml.attribute + attribute: AN18-AR/EM-SX/SHD.05/strength + unit: 1/m**2 +- type: pyaml.magnet.quadrupole + name: QCORR_189 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN18-AR/EM-COR/CQLN.21/strength + unit: 1/m +- type: pyaml.bpm.bpm + name: BPM_162 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN18-AR/DG-EPOS/BPM.10/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN18-AR/DG-EPOS/BPM.10/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: SH7_COR_015 + mapping: + - [B2, SH7_COR_015.sextupole] + - [B0, SH7_COR_015.hcorrector] + - [A0, SH7_COR_015.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0, A0] + units: [1/m**2, '1', '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN18-AR/EM-SX/SHF.06/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN18-AR/EM-COR/SHF.06-CDLH.10/strength + unit: '1' + - type: tango.pyaml.attribute + attribute: AN18-AR/EM-COR/SHF.06-CDLV.10/strength + unit: '1' +- type: pyaml.magnet.cfm_magnet + name: OH7_QCORROCT_148_QT_001 + mapping: + - [B3, OH7_QCORROCT_148_QT_001.octupole] + - [B1, OH7_QCORROCT_148_QT_001.quadrupole] + - [A1, OH7_QCORROCT_148_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN18-AR/EM-OCT/OH.02/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN18-AR/EM-COR/OH.02-CQLN.22/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN18-AR/EM-COR/OH.02-CQLT.08/strength + unit: 1/m**2 +- type: pyaml.bpm.bpm + name: BPM_163 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN19-SD/DG-EPOS/BPM.01/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN19-SD/DG-EPOS/BPM.01/y_pos + unit: mm +- type: pyaml.bpm.bpm + name: BPM_164 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN19-SD/DG-EPOS/BPM.02/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN19-SD/DG-EPOS/BPM.02/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: OH7_QCORROCT_149_QT_001 + mapping: + - [B3, OH7_QCORROCT_149_QT_001.octupole] + - [B1, OH7_QCORROCT_149_QT_001.quadrupole] + - [A1, OH7_QCORROCT_149_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN19-AR/EM-OCT/OH.01/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN19-AR/EM-COR/OH.01-CQLN.01/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN19-AR/EM-COR/OH.01-CQLT.01/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SH7_COR_016 + mapping: + - [B2, SH7_COR_016.sextupole] + - [B0, SH7_COR_016.hcorrector] + - [A0, SH7_COR_016.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0, A0] + units: [1/m**2, '1', '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN19-AR/EM-SX/SHF.01/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN19-AR/EM-COR/SHF.01-CDLH.01/strength + unit: '1' + - type: tango.pyaml.attribute + attribute: AN19-AR/EM-COR/SHF.01-CDLV.01/strength + unit: '1' +- type: pyaml.bpm.bpm + name: BPM_165 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN19-AR/DG-EPOS/BPM.03/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN19-AR/DG-EPOS/BPM.03/y_pos + unit: mm +- type: pyaml.magnet.quadrupole + name: QCORR_190 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN19-AR/EM-COR/CQLN.02/strength + unit: 1/m +- type: pyaml.magnet.sextupole + name: SH8_016 + model: + type: pyaml.magnet.identity_model + unit: 1/m**2 + physics: + type: tango.pyaml.attribute + attribute: AN19-AR/EM-SX/SHD.02/strength + unit: 1/m**2 +- type: pyaml.magnet.quadrupole + name: QCORR_191 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN19-AR/EM-COR/CQLN.03/strength + unit: 1/m +- type: pyaml.magnet.cfm_magnet + name: SH9_COR_016 + mapping: + - [B2, SH9_COR_016.sextupole] + - [B0, SH9_COR_016.hcorrector] + - [A0, SH9_COR_016.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0, A0] + units: [1/m**2, '1', '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN19-AR/EM-SX/SHD.03/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN19-AR/EM-COR/SHD.03-CDLH.02/strength + unit: '1' + - type: tango.pyaml.attribute + attribute: AN19-AR/EM-COR/SHD.03-CDLV.02/strength + unit: '1' +- type: pyaml.magnet.sextupole + name: SXD22_004 + model: + type: pyaml.magnet.identity_model + unit: 1/m**2 + physics: + type: tango.pyaml.attribute + attribute: AN19-AR/EM-SX/SCD.01/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: OCTF2_QCORROCT_150_QT_001 + mapping: + - [B3, OCTF2_QCORROCT_150_QT_001.octupole] + - [B1, OCTF2_QCORROCT_150_QT_001.quadrupole] + - [A1, OCTF2_QCORROCT_150_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN19-AR/EM-OCT/OC.01/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN19-AR/EM-COR/OC.01-CQLN.04/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN19-AR/EM-COR/OC.01-CQLT.02/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SXF22_HCOR_004 + mapping: + - [B2, SXF22_HCOR_004.sextupole] + - [B0, SXF22_HCOR_004.hcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN19-AR/EM-SX/SCF.02/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN19-AR/EM-COR/SCF.02-CDLH.03/strength + unit: '1' +- type: pyaml.bpm.bpm + name: BPM_166 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN19-AR/DG-EPOS/BPM.04/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN19-AR/DG-EPOS/BPM.04/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: SXD22_VCOR_004 + mapping: + - [B2, SXD22_VCOR_004.sextupole] + - [A0, SXD22_VCOR_004.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, A0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN19-AR/EM-SX/SCD.03/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN19-AR/EM-COR/SCD.03-CDLV.03/strength + unit: '1' +- type: pyaml.magnet.quadrupole + name: QCORR_192 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN19-AR/EM-COR/CQLN.05/strength + unit: 1/m +- type: pyaml.magnet.quadrupole + name: QCORR_193 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN19-AR/EM-COR/CQLN.06/strength + unit: 1/m +- type: pyaml.magnet.sextupole + name: SXD2_004 + model: + type: pyaml.magnet.identity_model + unit: 1/m**2 + physics: + type: tango.pyaml.attribute + attribute: AN19-AR/EM-SX/SCD.04/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SXF2_HCOR_004 + mapping: + - [B2, SXF2_HCOR_004.sextupole] + - [B0, SXF2_HCOR_004.hcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN19-AR/EM-SX/SCF.05/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN19-AR/EM-COR/SCF.05-CDLH.04/strength + unit: '1' +- type: pyaml.magnet.cfm_magnet + name: OCTF2_QCORROCT_151_QT_001 + mapping: + - [B3, OCTF2_QCORROCT_151_QT_001.octupole] + - [B1, OCTF2_QCORROCT_151_QT_001.quadrupole] + - [A1, OCTF2_QCORROCT_151_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN19-AR/EM-OCT/OC.02/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN19-AR/EM-COR/OC.02-CQLN.07/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN19-AR/EM-COR/OC.02-CQLT.03/strength + unit: 1/m**2 +- type: pyaml.bpm.bpm + name: BPM_167 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN19-AR/DG-EPOS/BPM.05/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN19-AR/DG-EPOS/BPM.05/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: SXD2_VCOR_004 + mapping: + - [B2, SXD2_VCOR_004.sextupole] + - [A0, SXD2_VCOR_004.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, A0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN19-AR/EM-SX/SCD.06/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN19-AR/EM-COR/SCD.06-CDLV.04/strength + unit: '1' +- type: pyaml.magnet.quadrupole + name: QCORR_194 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN19-AR/EM-COR/CQLN.08/strength + unit: 1/m +- type: pyaml.magnet.quadrupole + name: QCORR_195 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN19-AR/EM-COR/CQLN.09/strength + unit: 1/m +- type: pyaml.magnet.sextupole + name: SXD21_004 + model: + type: pyaml.magnet.identity_model + unit: 1/m**2 + physics: + type: tango.pyaml.attribute + attribute: AN19-AR/EM-SX/SCD.07/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SXF21_HCOR_004 + mapping: + - [B2, SXF21_HCOR_004.sextupole] + - [B0, SXF21_HCOR_004.hcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN19-AR/EM-SX/SCF.08/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN19-AR/EM-COR/SCF.08-CDLH.05/strength + unit: '1' +- type: pyaml.magnet.cfm_magnet + name: OCTF2_QCORROCT_152_QT_001 + mapping: + - [B3, OCTF2_QCORROCT_152_QT_001.octupole] + - [B1, OCTF2_QCORROCT_152_QT_001.quadrupole] + - [A1, OCTF2_QCORROCT_152_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN19-AR/EM-OCT/OC.03/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN19-AR/EM-COR/OC.03-CQLN.10/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN19-AR/EM-COR/OC.03-CQLT.04/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SXD21_VCOR_004 + mapping: + - [B2, SXD21_VCOR_004.sextupole] + - [A0, SXD21_VCOR_004.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, A0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN19-AR/EM-SX/SCD.09/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN19-AR/EM-COR/SCD.09-CDLV.05/strength + unit: '1' +- type: pyaml.bpm.bpm + name: BPM_168 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN19-AR/DG-EPOS/BPM.06/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN19-AR/DG-EPOS/BPM.06/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: SH6_COR_007 + mapping: + - [B2, SH6_COR_007.sextupole] + - [B0, SH6_COR_007.hcorrector] + - [A0, SH6_COR_007.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0, A0] + units: [1/m**2, '1', '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN19-AR/EM-SX/SHD.04/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN19-AR/EM-COR/SHD.04-CDLH.06/strength + unit: '1' + - type: tango.pyaml.attribute + attribute: AN19-AR/EM-COR/SHD.04-CDLV.06/strength + unit: '1' +- type: pyaml.magnet.quadrupole + name: QCORR_196 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN19-AR/EM-COR/CQLN.11/strength + unit: 1/m +- type: pyaml.magnet.sextupole + name: SH5_007 + model: + type: pyaml.magnet.identity_model + unit: 1/m**2 + physics: + type: tango.pyaml.attribute + attribute: AN19-AR/EM-SX/SHD.05/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: OH5_QCORROCT_153_001 + mapping: + - [B3, OH5_QCORROCT_153_001.octupole] + - [B1, OH5_QCORROCT_153_001.quadrupole] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1] + units: [1/m**3, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN19-AR/EM-OCT/OH.02/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN19-AR/EM-COR/OH.02-CQLN.12/strength + unit: 1/m**2 +- type: pyaml.bpm.bpm + name: BPM_169 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN19-AR/DG-EPOS/BPM.07/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN19-AR/DG-EPOS/BPM.07/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: SH4_COR_007 + mapping: + - [B2, SH4_COR_007.sextupole] + - [B0, SH4_COR_007.hcorrector] + - [A0, SH4_COR_007.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0, A0] + units: [1/m**2, '1', '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN19-AR/EM-SX/SHF.06/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN19-AR/EM-COR/SHF.06-CDLH.07/strength + unit: '1' + - type: tango.pyaml.attribute + attribute: AN19-AR/EM-COR/SHF.06-CDLV.07/strength + unit: '1' +- type: pyaml.magnet.cfm_magnet + name: OH4_QCORROCT_154_QT_001 + mapping: + - [B3, OH4_QCORROCT_154_QT_001.octupole] + - [B1, OH4_QCORROCT_154_QT_001.quadrupole] + - [A1, OH4_QCORROCT_154_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN19-AR/EM-OCT/OH.03/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN19-AR/EM-COR/OH.03-CQLN.13/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN19-AR/EM-COR/OH.03-CQLT.05/strength + unit: 1/m**2 +- type: pyaml.bpm.bpm + name: BPM_170 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN20-SD/DG-EPOS/BPM.01/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN20-SD/DG-EPOS/BPM.01/y_pos + unit: mm +- type: pyaml.bpm.bpm + name: BPM_171 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN20-SD/DG-EPOS/BPM.02/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN20-SD/DG-EPOS/BPM.02/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: OH4_QCORROCT_155_QT_001 + mapping: + - [B3, OH4_QCORROCT_155_QT_001.octupole] + - [B1, OH4_QCORROCT_155_QT_001.quadrupole] + - [A1, OH4_QCORROCT_155_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN20-AR/EM-OCT/OH.01/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN20-AR/EM-COR/OH.01-CQLN.01/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN20-AR/EM-COR/OH.01-CQLT.01/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SH4_COR_008 + mapping: + - [B2, SH4_COR_008.sextupole] + - [B0, SH4_COR_008.hcorrector] + - [A0, SH4_COR_008.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0, A0] + units: [1/m**2, '1', '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN20-AR/EM-SX/SHF.01/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN20-AR/EM-COR/SHF.01-CDLH.01/strength + unit: '1' + - type: tango.pyaml.attribute + attribute: AN20-AR/EM-COR/SHF.01-CDLV.01/strength + unit: '1' +- type: pyaml.bpm.bpm + name: BPM_172 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN20-AR/DG-EPOS/BPM.03/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN20-AR/DG-EPOS/BPM.03/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: OH5_QCORROCT_156_001 + mapping: + - [B3, OH5_QCORROCT_156_001.octupole] + - [B1, OH5_QCORROCT_156_001.quadrupole] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1] + units: [1/m**3, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN20-AR/EM-OCT/OH.02/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN20-AR/EM-COR/OH.02-CQLN.02/strength + unit: 1/m**2 +- type: pyaml.magnet.sextupole + name: SH5_008 + model: + type: pyaml.magnet.identity_model + unit: 1/m**2 + physics: + type: tango.pyaml.attribute + attribute: AN20-AR/EM-SX/SHD.02/strength + unit: 1/m**2 +- type: pyaml.magnet.quadrupole + name: QCORR_197 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN20-AR/EM-COR/CQLN.03/strength + unit: 1/m +- type: pyaml.magnet.cfm_magnet + name: SH6_COR_008 + mapping: + - [B2, SH6_COR_008.sextupole] + - [B0, SH6_COR_008.hcorrector] + - [A0, SH6_COR_008.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0, A0] + units: [1/m**2, '1', '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN20-AR/EM-SX/SHD.03/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN20-AR/EM-COR/SHD.03-CDLH.02/strength + unit: '1' + - type: tango.pyaml.attribute + attribute: AN20-AR/EM-COR/SHD.03-CDLV.02/strength + unit: '1' +- type: pyaml.magnet.sextupole + name: SXD12_004 + model: + type: pyaml.magnet.identity_model + unit: 1/m**2 + physics: + type: tango.pyaml.attribute + attribute: AN20-AR/EM-SX/SCD.01/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: OCTF1_QCORROCT_157_QT_001 + mapping: + - [B3, OCTF1_QCORROCT_157_QT_001.octupole] + - [B1, OCTF1_QCORROCT_157_QT_001.quadrupole] + - [A1, OCTF1_QCORROCT_157_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN20-AR/EM-OCT/OC.01/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN20-AR/EM-COR/OC.01-CQLN.04/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN20-AR/EM-COR/OC.01-CQLT.02/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SXF12_HCOR_004 + mapping: + - [B2, SXF12_HCOR_004.sextupole] + - [B0, SXF12_HCOR_004.hcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN20-AR/EM-SX/SCF.02/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN20-AR/EM-COR/SCF.02-CDLH.03/strength + unit: '1' +- type: pyaml.bpm.bpm + name: BPM_173 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN20-AR/DG-EPOS/BPM.04/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN20-AR/DG-EPOS/BPM.04/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: SXD12_VCOR_004 + mapping: + - [B2, SXD12_VCOR_004.sextupole] + - [A0, SXD12_VCOR_004.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, A0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN20-AR/EM-SX/SCD.03/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN20-AR/EM-COR/SCD.03-CDLV.03/strength + unit: '1' +- type: pyaml.magnet.quadrupole + name: QCORR_198 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN20-AR/EM-COR/CQLN.05/strength + unit: 1/m +- type: pyaml.magnet.quadrupole + name: QCORR_199 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN20-AR/EM-COR/CQLN.06/strength + unit: 1/m +- type: pyaml.magnet.sextupole + name: SXD1_010 + model: + type: pyaml.magnet.identity_model + unit: 1/m**2 + physics: + type: tango.pyaml.attribute + attribute: AN20-AR/EM-SX/SCD.04/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: OCTF1_QCORROCT_158_QT_001 + mapping: + - [B3, OCTF1_QCORROCT_158_QT_001.octupole] + - [B1, OCTF1_QCORROCT_158_QT_001.quadrupole] + - [A1, OCTF1_QCORROCT_158_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN20-AR/EM-OCT/OC.02/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN20-AR/EM-COR/OC.02-CQLN.07/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN20-AR/EM-COR/OC.02-CQLT.03/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SXF1_HCOR_007 + mapping: + - [B2, SXF1_HCOR_007.sextupole] + - [B0, SXF1_HCOR_007.hcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN20-AR/EM-SX/SCF.05/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN20-AR/EM-COR/SCF.05-CDLH.04/strength + unit: '1' +- type: pyaml.bpm.bpm + name: BPM_174 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN20-AR/DG-EPOS/BPM.05/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN20-AR/DG-EPOS/BPM.05/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: SXD1_VCOR_010 + mapping: + - [B2, SXD1_VCOR_010.sextupole] + - [A0, SXD1_VCOR_010.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, A0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN20-AR/EM-SX/SCD.06/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN20-AR/EM-COR/SCD.06-CDLV.04/strength + unit: '1' +- type: pyaml.magnet.quadrupole + name: QCORR_200 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN20-AR/EM-COR/CQLN.08/strength + unit: 1/m +- type: pyaml.magnet.quadrupole + name: QCORR_201 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN20-AR/EM-COR/CQLN.09/strength + unit: 1/m +- type: pyaml.magnet.sextupole + name: SXD1_011 + model: + type: pyaml.magnet.identity_model + unit: 1/m**2 + physics: + type: tango.pyaml.attribute + attribute: AN20-AR/EM-SX/SCD.07/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: OCTF1_QCORROCT_159_QT_001 + mapping: + - [B3, OCTF1_QCORROCT_159_QT_001.octupole] + - [B1, OCTF1_QCORROCT_159_QT_001.quadrupole] + - [A1, OCTF1_QCORROCT_159_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN20-AR/EM-OCT/OC.03/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN20-AR/EM-COR/OC.03-CQLN.10/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN20-AR/EM-COR/OC.03-CQLT.04/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SXF13_HCOR_007 + mapping: + - [B2, SXF13_HCOR_007.sextupole] + - [B0, SXF13_HCOR_007.hcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN20-AR/EM-SX/SCF.08/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN20-AR/EM-COR/SCF.08-CDLH.05/strength + unit: '1' +- type: pyaml.bpm.bpm + name: BPM_175 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN20-AR/DG-EPOS/BPM.06/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN20-AR/DG-EPOS/BPM.06/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: SXD13_VCOR_004 + mapping: + - [B2, SXD13_VCOR_004.sextupole] + - [A0, SXD13_VCOR_004.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, A0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN20-AR/EM-SX/SCD.09/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN20-AR/EM-COR/SCD.09-CDLV.05/strength + unit: '1' +- type: pyaml.magnet.quadrupole + name: QCORR_202 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN20-AR/EM-COR/CQLN.11/strength + unit: 1/m +- type: pyaml.magnet.quadrupole + name: QCORR_203 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN20-AR/EM-COR/CQLN.12/strength + unit: 1/m +- type: pyaml.magnet.sextupole + name: SXD13_004 + model: + type: pyaml.magnet.identity_model + unit: 1/m**2 + physics: + type: tango.pyaml.attribute + attribute: AN20-AR/EM-SX/SCD.10/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SXF13_HCOR_008 + mapping: + - [B2, SXF13_HCOR_008.sextupole] + - [B0, SXF13_HCOR_008.hcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN20-AR/EM-SX/SCF.11/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN20-AR/EM-COR/SCF.11-CDLH.06/strength + unit: '1' +- type: pyaml.magnet.cfm_magnet + name: OCTF1_QCORROCT_160_QT_001 + mapping: + - [B3, OCTF1_QCORROCT_160_QT_001.octupole] + - [B1, OCTF1_QCORROCT_160_QT_001.quadrupole] + - [A1, OCTF1_QCORROCT_160_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN20-AR/EM-OCT/OC.04/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN20-AR/EM-COR/OC.04-CQLN.13/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN20-AR/EM-COR/OC.04-CQLT.05/strength + unit: 1/m**2 +- type: pyaml.bpm.bpm + name: BPM_176 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN20-AR/DG-EPOS/BPM.07/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN20-AR/DG-EPOS/BPM.07/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: SXD1_VCOR_011 + mapping: + - [B2, SXD1_VCOR_011.sextupole] + - [A0, SXD1_VCOR_011.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, A0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN20-AR/EM-SX/SCD.12/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN20-AR/EM-COR/SCD.12-CDLV.06/strength + unit: '1' +- type: pyaml.magnet.quadrupole + name: QCORR_204 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN20-AR/EM-COR/CQLN.14/strength + unit: 1/m +- type: pyaml.magnet.quadrupole + name: QCORR_205 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN20-AR/EM-COR/CQLN.15/strength + unit: 1/m +- type: pyaml.magnet.sextupole + name: SXD1_012 + model: + type: pyaml.magnet.identity_model + unit: 1/m**2 + physics: + type: tango.pyaml.attribute + attribute: AN20-AR/EM-SX/SCD.13/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SXF1_HCOR_008 + mapping: + - [B2, SXF1_HCOR_008.sextupole] + - [B0, SXF1_HCOR_008.hcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN20-AR/EM-SX/SCF.14/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN20-AR/EM-COR/SCF.14-CDLH.07/strength + unit: '1' +- type: pyaml.magnet.cfm_magnet + name: OCTF1_QCORROCT_161_QT_001 + mapping: + - [B3, OCTF1_QCORROCT_161_QT_001.octupole] + - [B1, OCTF1_QCORROCT_161_QT_001.quadrupole] + - [A1, OCTF1_QCORROCT_161_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN20-AR/EM-OCT/OC.05/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN20-AR/EM-COR/OC.05-CQLN.16/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN20-AR/EM-COR/OC.05-CQLT.06/strength + unit: 1/m**2 +- type: pyaml.bpm.bpm + name: BPM_177 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN20-AR/DG-EPOS/BPM.08/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN20-AR/DG-EPOS/BPM.08/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: SXD1_VCOR_012 + mapping: + - [B2, SXD1_VCOR_012.sextupole] + - [A0, SXD1_VCOR_012.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, A0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN20-AR/EM-SX/SCD.15/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN20-AR/EM-COR/SCD.15-CDLV.07/strength + unit: '1' +- type: pyaml.magnet.quadrupole + name: QCORR_206 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN20-AR/EM-COR/CQLN.17/strength + unit: 1/m +- type: pyaml.magnet.quadrupole + name: QCORR_207 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN20-AR/EM-COR/CQLN.18/strength + unit: 1/m +- type: pyaml.magnet.sextupole + name: SXD11_004 + model: + type: pyaml.magnet.identity_model + unit: 1/m**2 + physics: + type: tango.pyaml.attribute + attribute: AN20-AR/EM-SX/SCD.16/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SXF11_HCOR_004 + mapping: + - [B2, SXF11_HCOR_004.sextupole] + - [B0, SXF11_HCOR_004.hcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN20-AR/EM-SX/SCF.17/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN20-AR/EM-COR/SCF.17-CDLH.08/strength + unit: '1' +- type: pyaml.magnet.cfm_magnet + name: OCTF1_QCORROCT_162_QT_001 + mapping: + - [B3, OCTF1_QCORROCT_162_QT_001.octupole] + - [B1, OCTF1_QCORROCT_162_QT_001.quadrupole] + - [A1, OCTF1_QCORROCT_162_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN20-AR/EM-OCT/OC.06/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN20-AR/EM-COR/OC.06-CQLN.19/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN20-AR/EM-COR/OC.06-CQLT.07/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SXD11_VCOR_004 + mapping: + - [B2, SXD11_VCOR_004.sextupole] + - [A0, SXD11_VCOR_004.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, A0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN20-AR/EM-SX/SCD.18/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN20-AR/EM-COR/SCD.18-CDLV.08/strength + unit: '1' +- type: pyaml.bpm.bpm + name: BPM_178 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN20-AR/DG-EPOS/BPM.09/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN20-AR/DG-EPOS/BPM.09/y_pos + unit: mm +- type: pyaml.magnet.quadrupole + name: QCORR_208 + model: + type: pyaml.magnet.identity_model + unit: 1/m + physics: + type: tango.pyaml.attribute + attribute: AN20-AR/EM-COR/CQLN.20/strength + unit: 1/m +- type: pyaml.magnet.cfm_magnet + name: SH3_VCOR_004 + mapping: + - [B2, SH3_VCOR_004.sextupole] + - [A0, SH3_VCOR_004.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, A0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN20-AR/EM-SX/SHD.04/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN20-AR/EM-COR/SHD.04-CDLV.09/strength + unit: '1' +- type: pyaml.bpm.bpm + name: BPM_179 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN20-AR/DG-EPOS/BPM.10/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN20-AR/DG-EPOS/BPM.10/y_pos + unit: mm +- type: pyaml.magnet.cfm_magnet + name: OH2_QCORROCT_163_001 + mapping: + - [B3, OH2_QCORROCT_163_001.octupole] + - [B1, OH2_QCORROCT_163_001.quadrupole] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1] + units: [1/m**3, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN20-AR/EM-OCT/OH.03/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN20-AR/EM-COR/OH.03-CQLN.21/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SH2_HCOR_004 + mapping: + - [B2, SH2_HCOR_004.sextupole] + - [B0, SH2_HCOR_004.hcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0] + units: [1/m**2, '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN20-AR/EM-SX/SHD.05/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN20-AR/EM-COR/SHD.05-CDLH.09/strength + unit: '1' +- type: pyaml.magnet.cfm_magnet + name: OH1_QCORROCT_164_QT_001 + mapping: + - [B3, OH1_QCORROCT_164_QT_001.octupole] + - [B1, OH1_QCORROCT_164_QT_001.quadrupole] + - [A1, OH1_QCORROCT_164_QT_001.skewquad] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B3, B1, A1] + units: [1/m**3, 1/m**2, 1/m**2] + physics: + - type: tango.pyaml.attribute + attribute: AN20-AR/EM-OCT/OH.04/strength + unit: 1/m**3 + - type: tango.pyaml.attribute + attribute: AN20-AR/EM-COR/OH.04-CQLN.22/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN20-AR/EM-COR/OH.04-CQLT.08/strength + unit: 1/m**2 +- type: pyaml.magnet.cfm_magnet + name: SH1_COR_004 + mapping: + - [B2, SH1_COR_004.sextupole] + - [B0, SH1_COR_004.hcorrector] + - [A0, SH1_COR_004.vcorrector] + model: + type: pyaml.magnet.identity_cfm_model + multipoles: [B2, B0, A0] + units: [1/m**2, '1', '1'] + physics: + - type: tango.pyaml.attribute + attribute: AN20-AR/EM-SX/SHF.06/strength + unit: 1/m**2 + - type: tango.pyaml.attribute + attribute: AN20-AR/EM-COR/SHF.06-CDLH.10/strength + unit: '1' + - type: tango.pyaml.attribute + attribute: AN20-AR/EM-COR/SHF.06-CDLV.10/strength + unit: '1' +- type: pyaml.bpm.bpm + name: BPM_180 + model: + type: pyaml.bpm.bpm_simple_model + x_pos: + type: tango.pyaml.attribute_read_only + attribute: AN01-SD/DG-EPOS/BPM.01/x_pos + unit: mm + y_pos: + type: tango.pyaml.attribute_read_only + attribute: AN01-SD/DG-EPOS/BPM.01/y_pos + unit: mm +- type: pyaml.rf.rf_plant + name: RF + masterclock: + type: tango.pyaml.attribute + attribute: simulator/ringsimulator/ringsimulator/RfFrequency + unit: Hz + transmitters: + - type: pyaml.rf.rf_transmitter + name: RFTRA + cavities: [RF_002, RFHARMON_002] + harmonic: 1 + distribution: 1 + voltage: + type: tango.pyaml.attribute + attribute: simulator/ringsimulator/ringsimulator/RfVoltage + unit: V +- type: pyaml.diagnostics.tune_monitor + name: BETATRON_TUNE + tune_h: + type: tango.pyaml.attribute_read_only + attribute: simulator/ringsimulator/ringsimulator/Tune_h + tune_v: + type: tango.pyaml.attribute_read_only + attribute: simulator/ringsimulator/ringsimulator/Tune_v +- type: pyaml.tuning_tools.tune + name: DEFAULT_TUNE_CORRECTION + quad_array: QCORR + betatron_tune: BETATRON_TUNE + delta: 1e-3 +- type: pyaml.diagnostics.chromaticity_monitor + name: DEFAULT_CHROMATICITY_MEASUREMENT + betatron_tune: BETATRON_TUNE + RFfreq: RF + fit_order: 2 + N_tune_meas: 3 + N_step: 15 + Sleep_between_meas: 2 + Sleep_between_RFvar: 2 + E_delta: 1e-3 + Max_E_delta: 1e-2