mx-bluesky 0.3.1__py3-none-any.whl → 1.2.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (142) hide show
  1. mx_bluesky/_version.py +2 -2
  2. mx_bluesky/beamlines/i04/__init__.py +3 -0
  3. mx_bluesky/{i04 → beamlines/i04}/thawing_plan.py +5 -4
  4. mx_bluesky/{i24 → beamlines/i24}/serial/blueapi_config.yaml +1 -1
  5. mx_bluesky/{i24 → beamlines/i24}/serial/dcid.py +2 -2
  6. mx_bluesky/{i24 → beamlines/i24}/serial/extruder/EX-gui-edm/DetStage.edl +3 -3
  7. mx_bluesky/{i24 → beamlines/i24}/serial/extruder/EX-gui-edm/DiamondExtruder-I24-py3v1.edl +7 -7
  8. mx_bluesky/{i24 → beamlines/i24}/serial/extruder/i24ssx_Extruder_Collect_py3v2.py +12 -9
  9. mx_bluesky/{i24 → beamlines/i24}/serial/fixed_target/FT-gui-edm/CustomChip_py3v1.edl +3 -3
  10. mx_bluesky/{i24 → beamlines/i24}/serial/fixed_target/FT-gui-edm/DetStage.edl +3 -3
  11. mx_bluesky/{i24 → beamlines/i24}/serial/fixed_target/FT-gui-edm/DiamondChipI24-py3v1.edl +245 -200
  12. mx_bluesky/{i24 → beamlines/i24}/serial/fixed_target/FT-gui-edm/MappingLite-oxford_py3v1.edl +4 -4
  13. mx_bluesky/{i24 → beamlines/i24}/serial/fixed_target/FT-gui-edm/pumpprobe-py3v1.edl +8 -8
  14. mx_bluesky/beamlines/i24/serial/fixed_target/__init__.py +0 -0
  15. mx_bluesky/{i24 → beamlines/i24}/serial/fixed_target/i24ssx_Chip_Collect_py3v1.py +80 -70
  16. mx_bluesky/{i24 → beamlines/i24}/serial/fixed_target/i24ssx_Chip_Manager_py3v1.py +20 -21
  17. mx_bluesky/{i24 → beamlines/i24}/serial/fixed_target/i24ssx_Chip_Mapping_py3v1.py +5 -5
  18. mx_bluesky/{i24 → beamlines/i24}/serial/fixed_target/i24ssx_Chip_StartUp_py3v1.py +7 -4
  19. mx_bluesky/{i24 → beamlines/i24}/serial/fixed_target/i24ssx_moveonclick.py +59 -39
  20. mx_bluesky/{i24 → beamlines/i24}/serial/log.py +1 -9
  21. mx_bluesky/beamlines/i24/serial/parameters/__init__.py +15 -0
  22. mx_bluesky/{i24 → beamlines/i24}/serial/parameters/constants.py +1 -1
  23. mx_bluesky/{i24 → beamlines/i24}/serial/parameters/experiment_parameters.py +4 -25
  24. mx_bluesky/{i24 → beamlines/i24}/serial/parameters/utils.py +5 -3
  25. mx_bluesky/{i24 → beamlines/i24}/serial/run_serial.py +1 -1
  26. mx_bluesky/{i24 → beamlines/i24}/serial/setup_beamline/pv_abstract.py +1 -1
  27. mx_bluesky/{i24 → beamlines/i24}/serial/setup_beamline/setup_beamline.py +2 -2
  28. mx_bluesky/{i24 → beamlines/i24}/serial/setup_beamline/setup_detector.py +5 -5
  29. mx_bluesky/{i24 → beamlines/i24}/serial/write_nexus.py +6 -3
  30. mx_bluesky/hyperion/__init__.py +1 -0
  31. mx_bluesky/hyperion/__main__.py +374 -0
  32. mx_bluesky/hyperion/device_setup_plans/__init__.py +0 -0
  33. mx_bluesky/hyperion/device_setup_plans/dcm_pitch_roll_mirror_adjuster.py +134 -0
  34. mx_bluesky/hyperion/device_setup_plans/manipulate_sample.py +110 -0
  35. mx_bluesky/hyperion/device_setup_plans/position_detector.py +16 -0
  36. mx_bluesky/hyperion/device_setup_plans/read_hardware_for_setup.py +60 -0
  37. mx_bluesky/hyperion/device_setup_plans/setup_oav.py +87 -0
  38. mx_bluesky/hyperion/device_setup_plans/setup_panda.py +210 -0
  39. mx_bluesky/hyperion/device_setup_plans/setup_zebra.py +214 -0
  40. mx_bluesky/hyperion/device_setup_plans/smargon.py +25 -0
  41. mx_bluesky/hyperion/device_setup_plans/utils.py +55 -0
  42. mx_bluesky/hyperion/device_setup_plans/xbpm_feedback.py +93 -0
  43. mx_bluesky/hyperion/exceptions.py +47 -0
  44. mx_bluesky/hyperion/experiment_plans/__init__.py +30 -0
  45. mx_bluesky/hyperion/experiment_plans/experiment_registry.py +93 -0
  46. mx_bluesky/hyperion/experiment_plans/flyscan_xray_centre_plan.py +537 -0
  47. mx_bluesky/hyperion/experiment_plans/grid_detect_then_xray_centre_plan.py +209 -0
  48. mx_bluesky/hyperion/experiment_plans/load_centre_collect_full_plan.py +46 -0
  49. mx_bluesky/hyperion/experiment_plans/oav_grid_detection_plan.py +173 -0
  50. mx_bluesky/hyperion/experiment_plans/oav_snapshot_plan.py +81 -0
  51. mx_bluesky/hyperion/experiment_plans/optimise_attenuation_plan.py +463 -0
  52. mx_bluesky/hyperion/experiment_plans/pin_centre_then_xray_centre_plan.py +119 -0
  53. mx_bluesky/hyperion/experiment_plans/pin_tip_centring_plan.py +164 -0
  54. mx_bluesky/hyperion/experiment_plans/robot_load_and_change_energy.py +237 -0
  55. mx_bluesky/hyperion/experiment_plans/robot_load_then_centre_plan.py +162 -0
  56. mx_bluesky/hyperion/experiment_plans/rotation_scan_plan.py +436 -0
  57. mx_bluesky/hyperion/experiment_plans/set_energy_plan.py +60 -0
  58. mx_bluesky/hyperion/external_interaction/__init__.py +9 -0
  59. mx_bluesky/hyperion/external_interaction/callbacks/__init__.py +10 -0
  60. mx_bluesky/hyperion/external_interaction/callbacks/__main__.py +148 -0
  61. mx_bluesky/hyperion/external_interaction/callbacks/aperture_change_callback.py +22 -0
  62. mx_bluesky/hyperion/external_interaction/callbacks/common/__init__.py +0 -0
  63. mx_bluesky/hyperion/external_interaction/callbacks/common/callback_util.py +64 -0
  64. mx_bluesky/hyperion/external_interaction/callbacks/common/ispyb_mapping.py +62 -0
  65. mx_bluesky/hyperion/external_interaction/callbacks/grid_detection_callback.py +88 -0
  66. mx_bluesky/hyperion/external_interaction/callbacks/ispyb_callback_base.py +203 -0
  67. mx_bluesky/hyperion/external_interaction/callbacks/log_uid_tag_callback.py +20 -0
  68. mx_bluesky/hyperion/external_interaction/callbacks/logging_callback.py +29 -0
  69. mx_bluesky/hyperion/external_interaction/callbacks/plan_reactive_callback.py +101 -0
  70. mx_bluesky/hyperion/external_interaction/callbacks/robot_load/ispyb_callback.py +86 -0
  71. mx_bluesky/hyperion/external_interaction/callbacks/rotation/__init__.py +0 -0
  72. mx_bluesky/hyperion/external_interaction/callbacks/rotation/ispyb_callback.py +174 -0
  73. mx_bluesky/hyperion/external_interaction/callbacks/rotation/ispyb_mapping.py +17 -0
  74. mx_bluesky/hyperion/external_interaction/callbacks/rotation/nexus_callback.py +102 -0
  75. mx_bluesky/hyperion/external_interaction/callbacks/xray_centre/__init__.py +0 -0
  76. mx_bluesky/hyperion/external_interaction/callbacks/xray_centre/ispyb_callback.py +269 -0
  77. mx_bluesky/hyperion/external_interaction/callbacks/xray_centre/ispyb_mapping.py +53 -0
  78. mx_bluesky/hyperion/external_interaction/callbacks/xray_centre/nexus_callback.py +95 -0
  79. mx_bluesky/hyperion/external_interaction/callbacks/zocalo_callback.py +92 -0
  80. mx_bluesky/hyperion/external_interaction/config_server.py +35 -0
  81. mx_bluesky/hyperion/external_interaction/exceptions.py +13 -0
  82. mx_bluesky/hyperion/external_interaction/ispyb/__init__.py +0 -0
  83. mx_bluesky/hyperion/external_interaction/ispyb/data_model.py +95 -0
  84. mx_bluesky/hyperion/external_interaction/ispyb/exp_eye_store.py +125 -0
  85. mx_bluesky/hyperion/external_interaction/ispyb/ispyb_store.py +276 -0
  86. mx_bluesky/hyperion/external_interaction/ispyb/ispyb_utils.py +27 -0
  87. mx_bluesky/hyperion/external_interaction/nexus/__init__.py +0 -0
  88. mx_bluesky/hyperion/external_interaction/nexus/nexus_utils.py +148 -0
  89. mx_bluesky/hyperion/external_interaction/nexus/write_nexus.py +114 -0
  90. mx_bluesky/hyperion/log.py +99 -0
  91. mx_bluesky/hyperion/parameters/__init__.py +2 -0
  92. mx_bluesky/hyperion/parameters/cli.py +68 -0
  93. mx_bluesky/{parameters → hyperion/parameters}/components.py +80 -26
  94. mx_bluesky/hyperion/parameters/constants.py +158 -0
  95. mx_bluesky/hyperion/parameters/gridscan.py +221 -0
  96. mx_bluesky/hyperion/parameters/load_centre_collect.py +50 -0
  97. mx_bluesky/hyperion/parameters/robot_load.py +16 -0
  98. mx_bluesky/hyperion/parameters/rotation.py +160 -0
  99. mx_bluesky/hyperion/resources/panda/panda-gridscan.yaml +964 -0
  100. mx_bluesky/hyperion/tracing.py +28 -0
  101. mx_bluesky/hyperion/utils/context.py +84 -0
  102. mx_bluesky/hyperion/utils/utils.py +25 -0
  103. mx_bluesky/hyperion/utils/validation.py +196 -0
  104. mx_bluesky/jupyter_example.ipynb +3 -2
  105. {mx_bluesky-0.3.1.dist-info → mx_bluesky-1.2.0.dist-info}/METADATA +26 -11
  106. mx_bluesky-1.2.0.dist-info/RECORD +140 -0
  107. {mx_bluesky-0.3.1.dist-info → mx_bluesky-1.2.0.dist-info}/WHEEL +1 -1
  108. mx_bluesky-1.2.0.dist-info/entry_points.txt +8 -0
  109. mx_bluesky/i04/__init__.py +0 -3
  110. mx_bluesky/i24/serial/parameters/__init__.py +0 -15
  111. mx_bluesky/parameters/__init__.py +0 -31
  112. mx_bluesky-0.3.1.dist-info/RECORD +0 -67
  113. mx_bluesky-0.3.1.dist-info/entry_points.txt +0 -4
  114. /mx_bluesky/{i24 → beamlines}/__init__.py +0 -0
  115. /mx_bluesky/{i04 → beamlines/i04}/callbacks/murko_callback.py +0 -0
  116. /mx_bluesky/{i24/serial/extruder → beamlines/i24}/__init__.py +0 -0
  117. /mx_bluesky/{i24 → beamlines/i24}/serial/__init__.py +0 -0
  118. /mx_bluesky/{i24 → beamlines/i24}/serial/extruder/EX-gui-edm/microdrop_alignment.edl +0 -0
  119. /mx_bluesky/{i24/serial/fixed_target → beamlines/i24/serial/extruder}/__init__.py +0 -0
  120. /mx_bluesky/{i24 → beamlines/i24}/serial/fixed_target/FT-gui-edm/ME14E-GeneralPurpose.edl +0 -0
  121. /mx_bluesky/{i24 → beamlines/i24}/serial/fixed_target/FT-gui-edm/PMAC_Command.edl +0 -0
  122. /mx_bluesky/{i24 → beamlines/i24}/serial/fixed_target/FT-gui-edm/Shutter_Control.edl +0 -0
  123. /mx_bluesky/{i24 → beamlines/i24}/serial/fixed_target/FT-gui-edm/microdrop_alignment.edl +0 -0
  124. /mx_bluesky/{i24 → beamlines/i24}/serial/fixed_target/FT-gui-edm/nudgechip.edl +0 -0
  125. /mx_bluesky/{i24 → beamlines/i24}/serial/fixed_target/FT-gui-edm/short1-laser.png +0 -0
  126. /mx_bluesky/{i24 → beamlines/i24}/serial/fixed_target/FT-gui-edm/short2-laser.png +0 -0
  127. /mx_bluesky/{i24 → beamlines/i24}/serial/fixed_target/ft_utils.py +0 -0
  128. /mx_bluesky/{i24 → beamlines/i24}/serial/parameters/fixed_target/cs/cs_maker.json +0 -0
  129. /mx_bluesky/{i24 → beamlines/i24}/serial/parameters/fixed_target/cs/motor_direction.txt +0 -0
  130. /mx_bluesky/{i24 → beamlines/i24}/serial/parameters/fixed_target/pvar_files/minichip-oxford.pvar +0 -0
  131. /mx_bluesky/{i24 → beamlines/i24}/serial/parameters/fixed_target/pvar_files/oxford.pvar +0 -0
  132. /mx_bluesky/{i24 → beamlines/i24}/serial/run_extruder.sh +0 -0
  133. /mx_bluesky/{i24 → beamlines/i24}/serial/run_fixed_target.sh +0 -0
  134. /mx_bluesky/{i24 → beamlines/i24}/serial/run_ssx.sh +0 -0
  135. /mx_bluesky/{i24 → beamlines/i24}/serial/set_visit_directory.sh +0 -0
  136. /mx_bluesky/{i24 → beamlines/i24}/serial/setup_beamline/__init__.py +0 -0
  137. /mx_bluesky/{i24 → beamlines/i24}/serial/setup_beamline/ca.py +0 -0
  138. /mx_bluesky/{i24 → beamlines/i24}/serial/setup_beamline/pv.py +0 -0
  139. /mx_bluesky/{i24 → beamlines/i24}/serial/setup_beamline/setup_zebra_plans.py +0 -0
  140. /mx_bluesky/{i24 → beamlines/i24}/serial/start_blueapi.sh +0 -0
  141. {mx_bluesky-0.3.1.dist-info → mx_bluesky-1.2.0.dist-info}/LICENSE +0 -0
  142. {mx_bluesky-0.3.1.dist-info → mx_bluesky-1.2.0.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,964 @@
1
+ - calc.1.out_units: ''
2
+ calc.2.out_units: ''
3
+ clock.1.period_units: ms
4
+ clock.2.period_units: s
5
+ counter.1.out_units: ''
6
+ counter.2.out_units: ''
7
+ counter.3.out_units: ''
8
+ counter.4.out_units: ''
9
+ counter.5.out_units: ''
10
+ counter.6.out_units: ''
11
+ counter.7.out_units: ''
12
+ counter.8.out_units: ''
13
+ filter.1.out_units: ''
14
+ filter.2.out_units: ''
15
+ inenc.1.clk_period_units: s
16
+ inenc.1.frame_period_units: s
17
+ inenc.1.val_units: mm
18
+ inenc.2.clk_period_units: s
19
+ inenc.2.frame_period_units: s
20
+ inenc.2.val_units: mm
21
+ inenc.3.clk_period_units: s
22
+ inenc.3.frame_period_units: s
23
+ inenc.3.val_units: mm
24
+ inenc.4.clk_period_units: s
25
+ inenc.4.frame_period_units: s
26
+ inenc.4.val_units: ''
27
+ outenc.1.qperiod_units: s
28
+ outenc.2.qperiod_units: s
29
+ outenc.3.qperiod_units: s
30
+ outenc.4.qperiod_units: s
31
+ pgen.1.out_units: ''
32
+ pgen.2.out_units: ''
33
+ pulse.1.delay_units: s
34
+ pulse.1.step_units: s
35
+ pulse.1.width_units: s
36
+ pulse.2.delay_units: s
37
+ pulse.2.step_units: s
38
+ pulse.2.width_units: s
39
+ pulse.3.delay_units: s
40
+ pulse.3.step_units: s
41
+ pulse.3.width_units: s
42
+ pulse.4.delay_units: s
43
+ pulse.4.step_units: s
44
+ pulse.4.width_units: s
45
+ seq.1.prescale_units: us
46
+ seq.2.prescale_units: s
47
+ sfp3_sync_in.pos1_units: ''
48
+ sfp3_sync_in.pos2_units: ''
49
+ sfp3_sync_in.pos3_units: ''
50
+ sfp3_sync_in.pos4_units: ''
51
+ - bits.a: '0'
52
+ bits.b: '0'
53
+ bits.c: '0'
54
+ bits.d: '0'
55
+ bits.label: Soft inputs and constant bits
56
+ calc.1.func: A+B+C+D
57
+ calc.1.inpa: ZERO
58
+ calc.1.inpb: ZERO
59
+ calc.1.inpc: ZERO
60
+ calc.1.inpd: ZERO
61
+ calc.1.label: Position calc
62
+ calc.1.out_capture: 'No'
63
+ calc.1.out_dataset: ''
64
+ calc.1.out_offset: 0.0
65
+ calc.1.out_scale: 1.0
66
+ calc.1.shift: 0.0
67
+ calc.1.typea: Value
68
+ calc.1.typeb: Value
69
+ calc.1.typec: Value
70
+ calc.1.typed: Value
71
+ calc.2.func: A+B+C+D
72
+ calc.2.inpa: ZERO
73
+ calc.2.inpb: ZERO
74
+ calc.2.inpc: ZERO
75
+ calc.2.inpd: ZERO
76
+ calc.2.label: Position calc
77
+ calc.2.out_capture: 'No'
78
+ calc.2.out_dataset: ''
79
+ calc.2.out_offset: 0.0
80
+ calc.2.out_scale: 1.0
81
+ calc.2.shift: 0.0
82
+ calc.2.typea: Value
83
+ calc.2.typeb: Value
84
+ calc.2.typec: Value
85
+ calc.2.typed: Value
86
+ clock.1.enable: ZERO
87
+ clock.1.enable_delay: 0
88
+ clock.1.label: Configurable clocks
89
+ clock.1.period: 2.001
90
+ clock.2.enable: ZERO
91
+ clock.2.enable_delay: 0
92
+ clock.2.label: Configurable clocks
93
+ clock.2.period: 0.0
94
+ counter.1.dir: ZERO
95
+ counter.1.dir_delay: 0
96
+ counter.1.enable: ZERO
97
+ counter.1.enable_delay: 0
98
+ counter.1.label: Up/Down pulse counter
99
+ counter.1.max: 0
100
+ counter.1.min: 0
101
+ counter.1.out_capture: 'No'
102
+ counter.1.out_dataset: ''
103
+ counter.1.out_offset: 0.0
104
+ counter.1.out_scale: 1.0
105
+ counter.1.start: 0
106
+ counter.1.step: 0.0
107
+ counter.1.trig: PULSE1.OUT
108
+ counter.1.trig_delay: 0
109
+ counter.2.dir: ZERO
110
+ counter.2.dir_delay: 0
111
+ counter.2.enable: ZERO
112
+ counter.2.enable_delay: 0
113
+ counter.2.label: Up/Down pulse counter
114
+ counter.2.max: 0
115
+ counter.2.min: 0
116
+ counter.2.out_capture: 'No'
117
+ counter.2.out_dataset: ''
118
+ counter.2.out_offset: 0.0
119
+ counter.2.out_scale: 1.0
120
+ counter.2.start: 0
121
+ counter.2.step: 0.0
122
+ counter.2.trig: ZERO
123
+ counter.2.trig_delay: 0
124
+ counter.3.dir: ZERO
125
+ counter.3.dir_delay: 0
126
+ counter.3.enable: ZERO
127
+ counter.3.enable_delay: 0
128
+ counter.3.label: Up/Down pulse counter
129
+ counter.3.max: 0
130
+ counter.3.min: 0
131
+ counter.3.out_capture: 'No'
132
+ counter.3.out_dataset: ''
133
+ counter.3.out_offset: 0.0
134
+ counter.3.out_scale: 1.0
135
+ counter.3.start: 0
136
+ counter.3.step: 0.0
137
+ counter.3.trig: ZERO
138
+ counter.3.trig_delay: 0
139
+ counter.4.dir: ZERO
140
+ counter.4.dir_delay: 0
141
+ counter.4.enable: ZERO
142
+ counter.4.enable_delay: 0
143
+ counter.4.label: Up/Down pulse counter
144
+ counter.4.max: 0
145
+ counter.4.min: 0
146
+ counter.4.out_capture: 'No'
147
+ counter.4.out_dataset: ''
148
+ counter.4.out_offset: 0.0
149
+ counter.4.out_scale: 1.0
150
+ counter.4.start: 0
151
+ counter.4.step: 0.0
152
+ counter.4.trig: ZERO
153
+ counter.4.trig_delay: 0
154
+ counter.5.dir: ZERO
155
+ counter.5.dir_delay: 0
156
+ counter.5.enable: ZERO
157
+ counter.5.enable_delay: 0
158
+ counter.5.label: Up/Down pulse counter
159
+ counter.5.max: 0
160
+ counter.5.min: 0
161
+ counter.5.out_capture: 'No'
162
+ counter.5.out_dataset: ''
163
+ counter.5.out_offset: 0.0
164
+ counter.5.out_scale: 1.0
165
+ counter.5.start: 0
166
+ counter.5.step: 0.0
167
+ counter.5.trig: ZERO
168
+ counter.5.trig_delay: 0
169
+ counter.6.dir: ZERO
170
+ counter.6.dir_delay: 0
171
+ counter.6.enable: ZERO
172
+ counter.6.enable_delay: 0
173
+ counter.6.label: Up/Down pulse counter
174
+ counter.6.max: 0
175
+ counter.6.min: 0
176
+ counter.6.out_capture: 'No'
177
+ counter.6.out_dataset: ''
178
+ counter.6.out_offset: 0.0
179
+ counter.6.out_scale: 1.0
180
+ counter.6.start: 0
181
+ counter.6.step: 0.0
182
+ counter.6.trig: ZERO
183
+ counter.6.trig_delay: 0
184
+ counter.7.dir: ZERO
185
+ counter.7.dir_delay: 0
186
+ counter.7.enable: ZERO
187
+ counter.7.enable_delay: 0
188
+ counter.7.label: Up/Down pulse counter
189
+ counter.7.max: 0
190
+ counter.7.min: 0
191
+ counter.7.out_capture: 'No'
192
+ counter.7.out_dataset: ''
193
+ counter.7.out_offset: 0.0
194
+ counter.7.out_scale: 1.0
195
+ counter.7.start: 0
196
+ counter.7.step: 0.0
197
+ counter.7.trig: ZERO
198
+ counter.7.trig_delay: 0
199
+ counter.8.dir: ZERO
200
+ counter.8.dir_delay: 0
201
+ counter.8.enable: ZERO
202
+ counter.8.enable_delay: 0
203
+ counter.8.label: Up/Down pulse counter
204
+ counter.8.max: 0
205
+ counter.8.min: 0
206
+ counter.8.out_capture: 'No'
207
+ counter.8.out_dataset: ''
208
+ counter.8.out_offset: 0.0
209
+ counter.8.out_scale: 1.0
210
+ counter.8.start: 0
211
+ counter.8.step: 0.0
212
+ counter.8.trig: ZERO
213
+ counter.8.trig_delay: 0
214
+ div.1.divisor: 0.0
215
+ div.1.enable: ZERO
216
+ div.1.enable_delay: 0
217
+ div.1.first_pulse: OutN
218
+ div.1.inp: ZERO
219
+ div.1.inp_delay: 0
220
+ div.1.label: Pulse divider
221
+ div.2.divisor: 0.0
222
+ div.2.enable: ZERO
223
+ div.2.enable_delay: 0
224
+ div.2.first_pulse: OutN
225
+ div.2.inp: ZERO
226
+ div.2.inp_delay: 0
227
+ div.2.label: Pulse divider
228
+ filter.1.enable: ZERO
229
+ filter.1.enable_delay: 0
230
+ filter.1.inp: ZERO
231
+ filter.1.label: Filter block modes are Difference and Divider
232
+ filter.1.mode: difference
233
+ filter.1.out_capture: 'No'
234
+ filter.1.out_dataset: ''
235
+ filter.1.out_offset: 0.0
236
+ filter.1.out_scale: 1.0
237
+ filter.1.trig: ZERO
238
+ filter.1.trig_delay: 0
239
+ filter.2.enable: ZERO
240
+ filter.2.enable_delay: 0
241
+ filter.2.inp: ZERO
242
+ filter.2.label: Filter block modes are Difference and Divider
243
+ filter.2.mode: difference
244
+ filter.2.out_capture: 'No'
245
+ filter.2.out_dataset: ''
246
+ filter.2.out_offset: 0.0
247
+ filter.2.out_scale: 1.0
248
+ filter.2.trig: ZERO
249
+ filter.2.trig_delay: 0
250
+ fmc_24v_in.db: None
251
+ fmc_24v_in.label: FMC 24V IO Module Input
252
+ fmc_24v_in.vtsel: 5V
253
+ fmc_24v_out.config: 0.0
254
+ fmc_24v_out.en: Disable
255
+ fmc_24v_out.fltr: 'Off'
256
+ fmc_24v_out.label: FMC 24V IO Module Input
257
+ fmc_24v_out.pushpl: High-side
258
+ fmc_24v_out.pwr_on: 'Off'
259
+ fmc_24v_out.srial: Parallel
260
+ fmc_24v_out.val1: ZERO
261
+ fmc_24v_out.val1_delay: 0
262
+ fmc_24v_out.val2: ZERO
263
+ fmc_24v_out.val2_delay: 0
264
+ fmc_24v_out.val3: ZERO
265
+ fmc_24v_out.val3_delay: 0
266
+ fmc_24v_out.val4: ZERO
267
+ fmc_24v_out.val4_delay: 0
268
+ fmc_24v_out.val5: ZERO
269
+ fmc_24v_out.val5_delay: 0
270
+ fmc_24v_out.val6: ZERO
271
+ fmc_24v_out.val6_delay: 0
272
+ fmc_24v_out.val7: ZERO
273
+ fmc_24v_out.val7_delay: 0
274
+ fmc_24v_out.val8: ZERO
275
+ fmc_24v_out.val8_delay: 0
276
+ inenc.1.bits: 0.0
277
+ inenc.1.clk: ZERO
278
+ inenc.1.clk_delay: 0
279
+ inenc.1.clk_period: 0.0
280
+ inenc.1.clk_src: Internally Generated
281
+ inenc.1.frame_period: 0.0
282
+ inenc.1.label: Y
283
+ inenc.1.lsb_discard: 0.0
284
+ inenc.1.msb_discard: 0.0
285
+ inenc.1.protocol: Quadrature
286
+ inenc.1.rst_on_z: '0'
287
+ inenc.1.setp: 0
288
+ inenc.1.val_capture: Min Max Mean
289
+ inenc.1.val_dataset: ''
290
+ inenc.1.val_offset: 0.0
291
+ inenc.1.val_scale: 5.0e-06
292
+ inenc.2.bits: 0.0
293
+ inenc.2.clk: ZERO
294
+ inenc.2.clk_delay: 0
295
+ inenc.2.clk_period: 0.0
296
+ inenc.2.clk_src: Internally Generated
297
+ inenc.2.frame_period: 0.0
298
+ inenc.2.label: Z
299
+ inenc.2.lsb_discard: 0.0
300
+ inenc.2.msb_discard: 0.0
301
+ inenc.2.protocol: Quadrature
302
+ inenc.2.rst_on_z: '0'
303
+ inenc.2.setp: 0
304
+ inenc.2.val_capture: Min Max Mean
305
+ inenc.2.val_dataset: ''
306
+ inenc.2.val_offset: 0.0
307
+ inenc.2.val_scale: 5.0e-06
308
+ inenc.3.bits: 0.0
309
+ inenc.3.clk: ZERO
310
+ inenc.3.clk_delay: 0
311
+ inenc.3.clk_period: 0.0
312
+ inenc.3.clk_src: Internally Generated
313
+ inenc.3.frame_period: 0.0
314
+ inenc.3.label: Input encoder
315
+ inenc.3.lsb_discard: 0.0
316
+ inenc.3.msb_discard: 0.0
317
+ inenc.3.protocol: Quadrature
318
+ inenc.3.rst_on_z: '0'
319
+ inenc.3.setp: 0
320
+ inenc.3.val_capture: Min Max Mean
321
+ inenc.3.val_dataset: ''
322
+ inenc.3.val_offset: 0.0
323
+ inenc.3.val_scale: 5.0e-06
324
+ inenc.4.bits: 0.0
325
+ inenc.4.clk: ZERO
326
+ inenc.4.clk_delay: 0
327
+ inenc.4.clk_period: 0.0
328
+ inenc.4.clk_src: Internally Generated
329
+ inenc.4.frame_period: 0.0
330
+ inenc.4.label: Input encoder
331
+ inenc.4.lsb_discard: 0.0
332
+ inenc.4.msb_discard: 0.0
333
+ inenc.4.protocol: Quadrature
334
+ inenc.4.rst_on_z: '0'
335
+ inenc.4.setp: 0
336
+ inenc.4.val_capture: 'No'
337
+ inenc.4.val_dataset: ''
338
+ inenc.4.val_offset: 0.0
339
+ inenc.4.val_scale: 1.0
340
+ lut.1.func: A|B
341
+ lut.1.inpa: ZERO
342
+ lut.1.inpa_delay: 0
343
+ lut.1.inpb: ZERO
344
+ lut.1.inpb_delay: 0
345
+ lut.1.inpc: ZERO
346
+ lut.1.inpc_delay: 0
347
+ lut.1.inpd: ZERO
348
+ lut.1.inpd_delay: 0
349
+ lut.1.inpe: ZERO
350
+ lut.1.inpe_delay: 0
351
+ lut.1.label: ensure pgen triggers at beginning and each iteration
352
+ lut.1.typea: Input-Level
353
+ lut.1.typeb: Input-Level
354
+ lut.1.typec: Input-Level
355
+ lut.1.typed: Input-Level
356
+ lut.1.typee: Input-Level
357
+ lut.2.func: A | B
358
+ lut.2.inpa: ZERO
359
+ lut.2.inpa_delay: 0
360
+ lut.2.inpb: ZERO
361
+ lut.2.inpb_delay: 0
362
+ lut.2.inpc: ZERO
363
+ lut.2.inpc_delay: 0
364
+ lut.2.inpd: ZERO
365
+ lut.2.inpd_delay: 0
366
+ lut.2.inpe: ZERO
367
+ lut.2.inpe_delay: 0
368
+ lut.2.label: OR 2
369
+ lut.2.typea: Input-Level
370
+ lut.2.typeb: Input-Level
371
+ lut.2.typec: Input-Level
372
+ lut.2.typed: Input-Level
373
+ lut.2.typee: Input-Level
374
+ lut.3.func: '0x00000000'
375
+ lut.3.inpa: ZERO
376
+ lut.3.inpa_delay: 0
377
+ lut.3.inpb: ZERO
378
+ lut.3.inpb_delay: 0
379
+ lut.3.inpc: ZERO
380
+ lut.3.inpc_delay: 0
381
+ lut.3.inpd: ZERO
382
+ lut.3.inpd_delay: 0
383
+ lut.3.inpe: ZERO
384
+ lut.3.inpe_delay: 0
385
+ lut.3.label: AND2
386
+ lut.3.typea: Input-Level
387
+ lut.3.typeb: Input-Level
388
+ lut.3.typec: Input-Level
389
+ lut.3.typed: Input-Level
390
+ lut.3.typee: Input-Level
391
+ lut.4.func: A | B | C
392
+ lut.4.inpa: ZERO
393
+ lut.4.inpa_delay: 0
394
+ lut.4.inpb: ZERO
395
+ lut.4.inpb_delay: 0
396
+ lut.4.inpc: ZERO
397
+ lut.4.inpc_delay: 0
398
+ lut.4.inpd: ZERO
399
+ lut.4.inpd_delay: 0
400
+ lut.4.inpe: ZERO
401
+ lut.4.inpe_delay: 0
402
+ lut.4.label: 'OR 1 '
403
+ lut.4.typea: Input-Level
404
+ lut.4.typeb: Input-Level
405
+ lut.4.typec: Input-Level
406
+ lut.4.typed: Input-Level
407
+ lut.4.typee: Input-Level
408
+ lut.5.func: '0x00000000'
409
+ lut.5.inpa: ZERO
410
+ lut.5.inpa_delay: 0
411
+ lut.5.inpb: ZERO
412
+ lut.5.inpb_delay: 0
413
+ lut.5.inpc: ZERO
414
+ lut.5.inpc_delay: 0
415
+ lut.5.inpd: ZERO
416
+ lut.5.inpd_delay: 0
417
+ lut.5.inpe: ZERO
418
+ lut.5.inpe_delay: 0
419
+ lut.5.label: Lookup table
420
+ lut.5.typea: Input-Level
421
+ lut.5.typeb: Input-Level
422
+ lut.5.typec: Input-Level
423
+ lut.5.typed: Input-Level
424
+ lut.5.typee: Input-Level
425
+ lut.6.func: '0x00000000'
426
+ lut.6.inpa: ZERO
427
+ lut.6.inpa_delay: 0
428
+ lut.6.inpb: ZERO
429
+ lut.6.inpb_delay: 0
430
+ lut.6.inpc: ZERO
431
+ lut.6.inpc_delay: 0
432
+ lut.6.inpd: ZERO
433
+ lut.6.inpd_delay: 0
434
+ lut.6.inpe: ZERO
435
+ lut.6.inpe_delay: 0
436
+ lut.6.label: Lookup table
437
+ lut.6.typea: Input-Level
438
+ lut.6.typeb: Input-Level
439
+ lut.6.typec: Input-Level
440
+ lut.6.typed: Input-Level
441
+ lut.6.typee: Input-Level
442
+ lut.7.func: '0x00000000'
443
+ lut.7.inpa: ZERO
444
+ lut.7.inpa_delay: 0
445
+ lut.7.inpb: ZERO
446
+ lut.7.inpb_delay: 0
447
+ lut.7.inpc: ZERO
448
+ lut.7.inpc_delay: 0
449
+ lut.7.inpd: ZERO
450
+ lut.7.inpd_delay: 0
451
+ lut.7.inpe: ZERO
452
+ lut.7.inpe_delay: 0
453
+ lut.7.label: Lookup table
454
+ lut.7.typea: Input-Level
455
+ lut.7.typeb: Input-Level
456
+ lut.7.typec: Input-Level
457
+ lut.7.typed: Input-Level
458
+ lut.7.typee: Input-Level
459
+ lut.8.func: '0x00000000'
460
+ lut.8.inpa: ZERO
461
+ lut.8.inpa_delay: 0
462
+ lut.8.inpb: ZERO
463
+ lut.8.inpb_delay: 0
464
+ lut.8.inpc: ZERO
465
+ lut.8.inpc_delay: 0
466
+ lut.8.inpd: ZERO
467
+ lut.8.inpd_delay: 0
468
+ lut.8.inpe: ZERO
469
+ lut.8.inpe_delay: 0
470
+ lut.8.label: Lookup table
471
+ lut.8.typea: Input-Level
472
+ lut.8.typeb: Input-Level
473
+ lut.8.typec: Input-Level
474
+ lut.8.typed: Input-Level
475
+ lut.8.typee: Input-Level
476
+ lvdsin.1.label: LVDS input
477
+ lvdsin.2.label: LVDS input
478
+ lvdsout.1.label: LVDS output
479
+ lvdsout.1.val: ZERO
480
+ lvdsout.1.val_delay: 0
481
+ lvdsout.2.label: LVDS output
482
+ lvdsout.2.val: ZERO
483
+ lvdsout.2.val_delay: 0
484
+ outenc.1.a: ZERO
485
+ outenc.1.a_delay: 0
486
+ outenc.1.b: ZERO
487
+ outenc.1.b_delay: 0
488
+ outenc.1.bits: 0.0
489
+ outenc.1.data: ZERO
490
+ outenc.1.data_delay: 0
491
+ outenc.1.enable: ZERO
492
+ outenc.1.enable_delay: 0
493
+ outenc.1.generator_error: 'No'
494
+ outenc.1.label: Output encoder
495
+ outenc.1.protocol: Quadrature
496
+ outenc.1.qperiod: 0.0
497
+ outenc.1.val: ZERO
498
+ outenc.1.z: ZERO
499
+ outenc.1.z_delay: 0
500
+ outenc.2.a: ZERO
501
+ outenc.2.a_delay: 0
502
+ outenc.2.b: ZERO
503
+ outenc.2.b_delay: 0
504
+ outenc.2.bits: 0.0
505
+ outenc.2.data: ZERO
506
+ outenc.2.data_delay: 0
507
+ outenc.2.enable: ZERO
508
+ outenc.2.enable_delay: 0
509
+ outenc.2.generator_error: 'No'
510
+ outenc.2.label: Output encoder
511
+ outenc.2.protocol: Quadrature
512
+ outenc.2.qperiod: 0.0
513
+ outenc.2.val: ZERO
514
+ outenc.2.z: ZERO
515
+ outenc.2.z_delay: 0
516
+ outenc.3.a: ZERO
517
+ outenc.3.a_delay: 0
518
+ outenc.3.b: ZERO
519
+ outenc.3.b_delay: 0
520
+ outenc.3.bits: 0.0
521
+ outenc.3.data: ZERO
522
+ outenc.3.data_delay: 0
523
+ outenc.3.enable: ZERO
524
+ outenc.3.enable_delay: 0
525
+ outenc.3.generator_error: 'No'
526
+ outenc.3.label: Output encoder
527
+ outenc.3.protocol: Quadrature
528
+ outenc.3.qperiod: 0.0
529
+ outenc.3.val: ZERO
530
+ outenc.3.z: ZERO
531
+ outenc.3.z_delay: 0
532
+ outenc.4.a: ZERO
533
+ outenc.4.a_delay: 0
534
+ outenc.4.b: ZERO
535
+ outenc.4.b_delay: 0
536
+ outenc.4.bits: 0.0
537
+ outenc.4.data: ZERO
538
+ outenc.4.data_delay: 0
539
+ outenc.4.enable: ZERO
540
+ outenc.4.enable_delay: 0
541
+ outenc.4.generator_error: 'No'
542
+ outenc.4.label: Output encoder
543
+ outenc.4.protocol: Quadrature
544
+ outenc.4.qperiod: 0.0
545
+ outenc.4.val: ZERO
546
+ outenc.4.z: ZERO
547
+ outenc.4.z_delay: 0
548
+ pcap.arm: false
549
+ pcap.bits0_capture: 'No'
550
+ pcap.bits0_dataset: ''
551
+ pcap.bits1_capture: 'No'
552
+ pcap.bits1_dataset: ''
553
+ pcap.bits2_capture: 'No'
554
+ pcap.bits2_dataset: ''
555
+ pcap.bits3_capture: 'No'
556
+ pcap.bits3_dataset: ''
557
+ pcap.enable: ZERO
558
+ pcap.enable_delay: 0
559
+ pcap.gate: PULSE1.OUT
560
+ pcap.gate_delay: 0
561
+ pcap.label: Position capture control
562
+ pcap.samples_capture: 'No'
563
+ pcap.samples_dataset: ''
564
+ pcap.shift_sum: 0.0
565
+ pcap.trig: PULSE1.OUT
566
+ pcap.trig_delay: 0
567
+ pcap.trig_edge: Rising
568
+ pcap.ts_end_capture: 'No'
569
+ pcap.ts_end_dataset: ''
570
+ pcap.ts_start_capture: 'No'
571
+ pcap.ts_start_dataset: ''
572
+ pcap.ts_trig_capture: Value
573
+ pcap.ts_trig_dataset: ''
574
+ pcomp.1.dir: Positive
575
+ pcomp.1.enable: ZERO
576
+ pcomp.1.enable_delay: 0
577
+ pcomp.1.inp: ZERO
578
+ pcomp.1.label: Position compare
579
+ pcomp.1.pre_start: 0
580
+ pcomp.1.pulses: 0.0
581
+ pcomp.1.relative: Absolute
582
+ pcomp.1.start: 0
583
+ pcomp.1.step: 40
584
+ pcomp.1.width: 30
585
+ pcomp.2.dir: Either
586
+ pcomp.2.enable: ZERO
587
+ pcomp.2.enable_delay: 0
588
+ pcomp.2.inp: ZERO
589
+ pcomp.2.label: Position compare
590
+ pcomp.2.pre_start: 0
591
+ pcomp.2.pulses: 0.0
592
+ pcomp.2.relative: Absolute
593
+ pcomp.2.start: 400
594
+ pcomp.2.step: 0
595
+ pcomp.2.width: 50
596
+ pgen.1.enable: ZERO
597
+ pgen.1.enable_delay: 0
598
+ pgen.1.label: Position generator
599
+ pgen.1.out_capture: 'No'
600
+ pgen.1.out_dataset: ''
601
+ pgen.1.out_offset: 0.0
602
+ pgen.1.out_scale: 1.0
603
+ pgen.1.repeats: 0.0
604
+ pgen.1.table:
605
+ position: []
606
+ pgen.1.trig: ZERO
607
+ pgen.1.trig_delay: 0
608
+ pgen.2.enable: ZERO
609
+ pgen.2.enable_delay: 0
610
+ pgen.2.label: Position generator
611
+ pgen.2.out_capture: 'No'
612
+ pgen.2.out_dataset: ''
613
+ pgen.2.out_offset: 0.0
614
+ pgen.2.out_scale: 1.0
615
+ pgen.2.repeats: 0.0
616
+ pgen.2.table:
617
+ position: []
618
+ pgen.2.trig: ZERO
619
+ pgen.2.trig_delay: 0
620
+ pulse.1.delay: 0.0
621
+ pulse.1.enable: ZERO
622
+ pulse.1.enable_delay: 0
623
+ pulse.1.label: Begin FGS on trig
624
+ pulse.1.pulses: 1.0
625
+ pulse.1.step: 0.0
626
+ pulse.1.trig: SEQ1.OUTA
627
+ pulse.1.trig_delay: 0
628
+ pulse.1.trig_edge: Rising
629
+ pulse.1.width: 0.0001
630
+ pulse.2.delay: 0.0
631
+ pulse.2.enable: ZERO
632
+ pulse.2.enable_delay: 0
633
+ pulse.2.label: One-shot pulse delay and stretch
634
+ pulse.2.pulses: 0.0
635
+ pulse.2.step: 0.0
636
+ pulse.2.trig: ZERO
637
+ pulse.2.trig_delay: 0
638
+ pulse.2.trig_edge: Rising
639
+ pulse.2.width: 0.0
640
+ pulse.3.delay: 0.0
641
+ pulse.3.enable: ZERO
642
+ pulse.3.enable_delay: 0
643
+ pulse.3.label: One-shot pulse delay and stretch
644
+ pulse.3.pulses: 0.0
645
+ pulse.3.step: 0.0
646
+ pulse.3.trig: ZERO
647
+ pulse.3.trig_delay: 0
648
+ pulse.3.trig_edge: Rising
649
+ pulse.3.width: 0.0
650
+ pulse.4.delay: 0.0
651
+ pulse.4.enable: ZERO
652
+ pulse.4.enable_delay: 0
653
+ pulse.4.label: One-shot pulse delay and stretch
654
+ pulse.4.pulses: 0.0
655
+ pulse.4.step: 0.0
656
+ pulse.4.trig: ZERO
657
+ pulse.4.trig_delay: 0
658
+ pulse.4.trig_edge: Rising
659
+ pulse.4.width: 0.0
660
+ seq.1.bita: TTLIN1.VAL
661
+ seq.1.bita_delay: 0
662
+ seq.1.bitb: ZERO
663
+ seq.1.bitb_delay: 0
664
+ seq.1.bitc: ZERO
665
+ seq.1.bitc_delay: 0
666
+ seq.1.enable: ZERO
667
+ seq.1.enable_delay: 0
668
+ seq.1.label: Sequencer
669
+ seq.1.posa: INENC1.VAL
670
+ seq.1.posb: ZERO
671
+ seq.1.posc: ZERO
672
+ seq.1.prescale: 1.0
673
+ seq.1.repeats: 0.0
674
+ seq.1.table:
675
+ outa1: [0, 1, 0, 0, 1, 0]
676
+ outa2: [0, 1, 0, 0, 1, 0]
677
+ outb1: [0, 0, 0, 0, 0, 0]
678
+ outb2: [0, 0, 0, 0, 0, 0]
679
+ outc1: [0, 0, 0, 0, 0, 0]
680
+ outc2: [0, 0, 0, 0, 0, 0]
681
+ outd1: [0, 0, 0, 0, 0, 0]
682
+ outd2: [0, 0, 0, 0, 0, 0]
683
+ oute1: [0, 0, 0, 0, 0, 0]
684
+ oute2: [0, 0, 0, 0, 0, 0]
685
+ outf1: [0, 0, 0, 0, 0, 0]
686
+ outf2: [0, 0, 0, 0, 0, 0]
687
+ position: [0, 68581, 186581, 0, 188579, 70579]
688
+ repeats: [1, 1, 1, 1, 1, 1]
689
+ time1: [0, 0, 0, 0, 0, 0]
690
+ time2: [1, 1, 1, 1, 1, 1]
691
+ trigger:
692
+ - BITA=1
693
+ - POSA>=POSITION
694
+ - POSA>=POSITION
695
+ - BITA=1
696
+ - POSA<=POSITION
697
+ - POSA<=POSITION
698
+ seq.2.bita: ZERO
699
+ seq.2.bita_delay: 0
700
+ seq.2.bitb: ZERO
701
+ seq.2.bitb_delay: 0
702
+ seq.2.bitc: ZERO
703
+ seq.2.bitc_delay: 0
704
+ seq.2.enable: ZERO
705
+ seq.2.enable_delay: 0
706
+ seq.2.label: PCOMP from table
707
+ seq.2.posa: ZERO
708
+ seq.2.posb: ZERO
709
+ seq.2.posc: ZERO
710
+ seq.2.prescale: 0.0
711
+ seq.2.repeats: 0.0
712
+ seq.2.table:
713
+ outa1: [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
714
+ 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
715
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0]
716
+ outa2: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
717
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
718
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0]
719
+ outb1: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
720
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
721
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
722
+ outb2: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
723
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
724
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
725
+ outc1: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
726
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
727
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
728
+ outc2: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
729
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
730
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
731
+ outd1: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
732
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
733
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
734
+ outd2: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
735
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
736
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
737
+ oute1: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
738
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
739
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
740
+ oute2: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
741
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
742
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
743
+ outf1: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
744
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
745
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
746
+ outf2: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
747
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
748
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
749
+ position: [-1985, 2000, 6000, 10000, 14000, 18000, 22000, 26000, 30000, 34000,
750
+ 38000, 42000, 46000, 50000, 54000, 58000, 62000, 66000, 70000, 74000, 78000,
751
+ 82000, 86000, 90000, 94000, 98000, 102000, 106000, 110000, 114000, 117990, 117985,
752
+ 114000, 110000, 106000, 102000, 98000, 94000, 90000, 86000, 82000, 78000, 74000,
753
+ 70000, 66000, 62000, 58000, 54000, 50000, 46000, 42000, 38000, 34000, 30000,
754
+ 26000, 22000, 18000, 14000, 10000, 6000, 2000, -1990]
755
+ repeats: [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
756
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
757
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
758
+ time1: [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
759
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
760
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
761
+ time2: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
762
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
763
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
764
+ trigger:
765
+ - POSA>=POSITION
766
+ - POSA>=POSITION
767
+ - POSA>=POSITION
768
+ - POSA>=POSITION
769
+ - POSA>=POSITION
770
+ - POSA>=POSITION
771
+ - POSA>=POSITION
772
+ - POSA>=POSITION
773
+ - POSA>=POSITION
774
+ - POSA>=POSITION
775
+ - POSA>=POSITION
776
+ - POSA>=POSITION
777
+ - POSA>=POSITION
778
+ - POSA>=POSITION
779
+ - POSA>=POSITION
780
+ - POSA>=POSITION
781
+ - POSA>=POSITION
782
+ - POSA>=POSITION
783
+ - POSA>=POSITION
784
+ - POSA>=POSITION
785
+ - POSA>=POSITION
786
+ - POSA>=POSITION
787
+ - POSA>=POSITION
788
+ - POSA>=POSITION
789
+ - POSA>=POSITION
790
+ - POSA>=POSITION
791
+ - POSA>=POSITION
792
+ - POSA>=POSITION
793
+ - POSA>=POSITION
794
+ - POSA>=POSITION
795
+ - POSA>=POSITION
796
+ - POSA<=POSITION
797
+ - POSA<=POSITION
798
+ - POSA<=POSITION
799
+ - POSA<=POSITION
800
+ - POSA<=POSITION
801
+ - POSA<=POSITION
802
+ - POSA<=POSITION
803
+ - POSA<=POSITION
804
+ - POSA<=POSITION
805
+ - POSA<=POSITION
806
+ - POSA<=POSITION
807
+ - POSA<=POSITION
808
+ - POSA<=POSITION
809
+ - POSA<=POSITION
810
+ - POSA<=POSITION
811
+ - POSA<=POSITION
812
+ - POSA<=POSITION
813
+ - POSA<=POSITION
814
+ - POSA<=POSITION
815
+ - POSA<=POSITION
816
+ - POSA<=POSITION
817
+ - POSA<=POSITION
818
+ - POSA<=POSITION
819
+ - POSA<=POSITION
820
+ - POSA<=POSITION
821
+ - POSA<=POSITION
822
+ - POSA<=POSITION
823
+ - POSA<=POSITION
824
+ - POSA<=POSITION
825
+ - POSA<=POSITION
826
+ - POSA<=POSITION
827
+ sfp3_sync_in.label: sfp panda synchronizer
828
+ sfp3_sync_in.pos1_capture: 'No'
829
+ sfp3_sync_in.pos1_dataset: ''
830
+ sfp3_sync_in.pos1_offset: 0.0
831
+ sfp3_sync_in.pos1_scale: 1.0
832
+ sfp3_sync_in.pos2_capture: 'No'
833
+ sfp3_sync_in.pos2_dataset: ''
834
+ sfp3_sync_in.pos2_offset: 0.0
835
+ sfp3_sync_in.pos2_scale: 1.0
836
+ sfp3_sync_in.pos3_capture: 'No'
837
+ sfp3_sync_in.pos3_dataset: ''
838
+ sfp3_sync_in.pos3_offset: 0.0
839
+ sfp3_sync_in.pos3_scale: 1.0
840
+ sfp3_sync_in.pos4_capture: 'No'
841
+ sfp3_sync_in.pos4_dataset: ''
842
+ sfp3_sync_in.pos4_offset: 0.0
843
+ sfp3_sync_in.pos4_scale: 1.0
844
+ sfp3_sync_out.bit1: ZERO
845
+ sfp3_sync_out.bit10: ZERO
846
+ sfp3_sync_out.bit10_delay: 0
847
+ sfp3_sync_out.bit11: ZERO
848
+ sfp3_sync_out.bit11_delay: 0
849
+ sfp3_sync_out.bit12: ZERO
850
+ sfp3_sync_out.bit12_delay: 0
851
+ sfp3_sync_out.bit13: ZERO
852
+ sfp3_sync_out.bit13_delay: 0
853
+ sfp3_sync_out.bit14: ZERO
854
+ sfp3_sync_out.bit14_delay: 0
855
+ sfp3_sync_out.bit15: ZERO
856
+ sfp3_sync_out.bit15_delay: 0
857
+ sfp3_sync_out.bit16: ZERO
858
+ sfp3_sync_out.bit16_delay: 0
859
+ sfp3_sync_out.bit1_delay: 0
860
+ sfp3_sync_out.bit2: ZERO
861
+ sfp3_sync_out.bit2_delay: 0
862
+ sfp3_sync_out.bit3: ZERO
863
+ sfp3_sync_out.bit3_delay: 0
864
+ sfp3_sync_out.bit4: ZERO
865
+ sfp3_sync_out.bit4_delay: 0
866
+ sfp3_sync_out.bit5: ZERO
867
+ sfp3_sync_out.bit5_delay: 0
868
+ sfp3_sync_out.bit6: ZERO
869
+ sfp3_sync_out.bit6_delay: 0
870
+ sfp3_sync_out.bit7: ZERO
871
+ sfp3_sync_out.bit7_delay: 0
872
+ sfp3_sync_out.bit8: ZERO
873
+ sfp3_sync_out.bit8_delay: 0
874
+ sfp3_sync_out.bit9: ZERO
875
+ sfp3_sync_out.bit9_delay: 0
876
+ sfp3_sync_out.label: sfp panda synchronizer
877
+ sfp3_sync_out.pos1: ZERO
878
+ sfp3_sync_out.pos2: ZERO
879
+ sfp3_sync_out.pos3: ZERO
880
+ sfp3_sync_out.pos4: ZERO
881
+ srgate.1.enable: ZERO
882
+ srgate.1.enable_delay: 0
883
+ srgate.1.label: Reset on new row
884
+ srgate.1.rst: ZERO
885
+ srgate.1.rst_delay: 0
886
+ srgate.1.rst_edge: Rising
887
+ srgate.1.set: ZERO
888
+ srgate.1.set_delay: 0
889
+ srgate.1.set_edge: Rising
890
+ srgate.1.when_disabled: Set output low
891
+ srgate.2.enable: ZERO
892
+ srgate.2.enable_delay: 0
893
+ srgate.2.label: Set reset gate
894
+ srgate.2.rst: ZERO
895
+ srgate.2.rst_delay: 0
896
+ srgate.2.rst_edge: Rising
897
+ srgate.2.set: ZERO
898
+ srgate.2.set_delay: 0
899
+ srgate.2.set_edge: Rising
900
+ srgate.2.when_disabled: Set output low
901
+ srgate.3.enable: ZERO
902
+ srgate.3.enable_delay: 0
903
+ srgate.3.label: Set reset gate
904
+ srgate.3.rst: ZERO
905
+ srgate.3.rst_delay: 0
906
+ srgate.3.rst_edge: Rising
907
+ srgate.3.set: ZERO
908
+ srgate.3.set_delay: 0
909
+ srgate.3.set_edge: Rising
910
+ srgate.3.when_disabled: Set output low
911
+ srgate.4.enable: ZERO
912
+ srgate.4.enable_delay: 0
913
+ srgate.4.label: Set reset gate
914
+ srgate.4.rst: ZERO
915
+ srgate.4.rst_delay: 0
916
+ srgate.4.rst_edge: Rising
917
+ srgate.4.set: ZERO
918
+ srgate.4.set_delay: 0
919
+ srgate.4.set_edge: Rising
920
+ srgate.4.when_disabled: Set output low
921
+ system.ext_clock: int clock
922
+ system.label: System control FPGA
923
+ ttlin.1.label: TTL input
924
+ ttlin.1.term: High-Z
925
+ ttlin.2.label: TTL input
926
+ ttlin.2.term: High-Z
927
+ ttlin.3.label: TTL input
928
+ ttlin.3.term: High-Z
929
+ ttlin.4.label: TTL input
930
+ ttlin.4.term: High-Z
931
+ ttlin.5.label: TTL input
932
+ ttlin.5.term: High-Z
933
+ ttlin.6.label: TTL input
934
+ ttlin.6.term: High-Z
935
+ ttlout.1.label: TTL output
936
+ ttlout.1.val: PULSE1.OUT
937
+ ttlout.1.val_delay: 0
938
+ ttlout.10.label: TTL output
939
+ ttlout.10.val: ZERO
940
+ ttlout.10.val_delay: 0
941
+ ttlout.2.label: TTL output
942
+ ttlout.2.val: ZERO
943
+ ttlout.2.val_delay: 0
944
+ ttlout.3.label: TTL output
945
+ ttlout.3.val: ZERO
946
+ ttlout.3.val_delay: 0
947
+ ttlout.4.label: TTL output
948
+ ttlout.4.val: ZERO
949
+ ttlout.4.val_delay: 0
950
+ ttlout.5.label: TTL output
951
+ ttlout.5.val: ZERO
952
+ ttlout.5.val_delay: 0
953
+ ttlout.6.label: TTL output
954
+ ttlout.6.val: ZERO
955
+ ttlout.6.val_delay: 0
956
+ ttlout.7.label: TTL output
957
+ ttlout.7.val: ZERO
958
+ ttlout.7.val_delay: 0
959
+ ttlout.8.label: TTL output
960
+ ttlout.8.val: ZERO
961
+ ttlout.8.val_delay: 0
962
+ ttlout.9.label: TTL output
963
+ ttlout.9.val: ZERO
964
+ ttlout.9.val_delay: 0