imap-processing 0.12.0__py3-none-any.whl → 0.13.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.

Potentially problematic release.


This version of imap-processing might be problematic. Click here for more details.

Files changed (272) hide show
  1. imap_processing/__init__.py +1 -0
  2. imap_processing/_version.py +2 -2
  3. imap_processing/ccsds/ccsds_data.py +1 -2
  4. imap_processing/ccsds/excel_to_xtce.py +1 -2
  5. imap_processing/cdf/config/imap_codice_global_cdf_attrs.yaml +18 -12
  6. imap_processing/cdf/config/imap_codice_l1a_variable_attrs.yaml +569 -0
  7. imap_processing/cdf/config/imap_codice_l1b_variable_attrs.yaml +1846 -128
  8. imap_processing/cdf/config/imap_hit_global_cdf_attrs.yaml +5 -5
  9. imap_processing/cdf/config/imap_idex_global_cdf_attrs.yaml +20 -1
  10. imap_processing/cdf/config/imap_idex_l1a_variable_attrs.yaml +6 -4
  11. imap_processing/cdf/config/imap_idex_l1b_variable_attrs.yaml +3 -3
  12. imap_processing/cdf/config/imap_mag_global_cdf_attrs.yaml +15 -0
  13. imap_processing/cdf/config/imap_swapi_variable_attrs.yaml +22 -0
  14. imap_processing/cdf/config/imap_swe_l1b_variable_attrs.yaml +16 -0
  15. imap_processing/cdf/config/imap_ultra_global_cdf_attrs.yaml +178 -5
  16. imap_processing/cdf/config/imap_ultra_l1a_variable_attrs.yaml +5045 -41
  17. imap_processing/cdf/config/imap_ultra_l1b_variable_attrs.yaml +33 -19
  18. imap_processing/cdf/config/imap_ultra_l1c_variable_attrs.yaml +8 -48
  19. imap_processing/cdf/utils.py +41 -33
  20. imap_processing/cli.py +463 -234
  21. imap_processing/codice/codice_l1a.py +260 -47
  22. imap_processing/codice/codice_l1b.py +51 -152
  23. imap_processing/codice/constants.py +38 -1
  24. imap_processing/ena_maps/ena_maps.py +658 -65
  25. imap_processing/ena_maps/utils/coordinates.py +1 -1
  26. imap_processing/ena_maps/utils/spatial_utils.py +10 -5
  27. imap_processing/glows/l1a/glows_l1a.py +28 -99
  28. imap_processing/glows/l1a/glows_l1a_data.py +2 -2
  29. imap_processing/glows/l1b/glows_l1b.py +1 -4
  30. imap_processing/glows/l1b/glows_l1b_data.py +1 -3
  31. imap_processing/glows/l2/glows_l2.py +2 -5
  32. imap_processing/hi/l1a/hi_l1a.py +31 -12
  33. imap_processing/hi/l1b/hi_l1b.py +80 -43
  34. imap_processing/hi/l1c/hi_l1c.py +12 -16
  35. imap_processing/hit/ancillary/imap_hit_l1b-to-l2-sector-dt0-factors_20250219_v002.csv +81 -0
  36. imap_processing/hit/hit_utils.py +93 -35
  37. imap_processing/hit/l0/decom_hit.py +3 -1
  38. imap_processing/hit/l1a/hit_l1a.py +30 -25
  39. imap_processing/hit/l1b/constants.py +6 -2
  40. imap_processing/hit/l1b/hit_l1b.py +279 -318
  41. imap_processing/hit/l2/constants.py +37 -0
  42. imap_processing/hit/l2/hit_l2.py +373 -264
  43. imap_processing/ialirt/l0/parse_mag.py +138 -10
  44. imap_processing/ialirt/l0/process_swapi.py +69 -0
  45. imap_processing/ialirt/l0/process_swe.py +318 -22
  46. imap_processing/ialirt/packet_definitions/ialirt.xml +216 -212
  47. imap_processing/ialirt/packet_definitions/ialirt_codicehi.xml +1 -1
  48. imap_processing/ialirt/packet_definitions/ialirt_codicelo.xml +1 -1
  49. imap_processing/ialirt/packet_definitions/ialirt_swapi.xml +14 -14
  50. imap_processing/ialirt/utils/grouping.py +1 -1
  51. imap_processing/idex/idex_constants.py +9 -1
  52. imap_processing/idex/idex_l0.py +22 -8
  53. imap_processing/idex/idex_l1a.py +75 -44
  54. imap_processing/idex/idex_l1b.py +9 -8
  55. imap_processing/idex/idex_l2a.py +79 -45
  56. imap_processing/idex/idex_l2b.py +120 -0
  57. imap_processing/idex/idex_variable_unpacking_and_eu_conversion.csv +33 -39
  58. imap_processing/idex/packet_definitions/idex_housekeeping_packet_definition.xml +9130 -0
  59. imap_processing/lo/l0/lo_science.py +1 -2
  60. imap_processing/lo/l1a/lo_l1a.py +1 -4
  61. imap_processing/lo/l1b/lo_l1b.py +527 -6
  62. imap_processing/lo/l1b/tof_conversions.py +11 -0
  63. imap_processing/lo/l1c/lo_l1c.py +1 -4
  64. imap_processing/mag/constants.py +43 -0
  65. imap_processing/mag/imap_mag_sdc_configuration_v001.py +8 -0
  66. imap_processing/mag/l1a/mag_l1a.py +2 -9
  67. imap_processing/mag/l1a/mag_l1a_data.py +10 -10
  68. imap_processing/mag/l1b/mag_l1b.py +84 -17
  69. imap_processing/mag/l1c/interpolation_methods.py +180 -3
  70. imap_processing/mag/l1c/mag_l1c.py +236 -70
  71. imap_processing/mag/l2/mag_l2.py +140 -0
  72. imap_processing/mag/l2/mag_l2_data.py +288 -0
  73. imap_processing/spacecraft/quaternions.py +1 -3
  74. imap_processing/spice/geometry.py +3 -3
  75. imap_processing/spice/kernels.py +0 -276
  76. imap_processing/spice/pointing_frame.py +257 -0
  77. imap_processing/spice/repoint.py +48 -19
  78. imap_processing/spice/spin.py +38 -33
  79. imap_processing/spice/time.py +24 -0
  80. imap_processing/swapi/l1/swapi_l1.py +16 -12
  81. imap_processing/swapi/l2/swapi_l2.py +116 -4
  82. imap_processing/swapi/swapi_utils.py +32 -0
  83. imap_processing/swe/l1a/swe_l1a.py +2 -9
  84. imap_processing/swe/l1a/swe_science.py +8 -11
  85. imap_processing/swe/l1b/swe_l1b.py +898 -23
  86. imap_processing/swe/l2/swe_l2.py +21 -77
  87. imap_processing/swe/utils/swe_constants.py +1 -0
  88. imap_processing/tests/ccsds/test_excel_to_xtce.py +1 -1
  89. imap_processing/tests/cdf/test_utils.py +14 -16
  90. imap_processing/tests/codice/conftest.py +44 -33
  91. imap_processing/tests/codice/data/validation/imap_codice_l1a_hi-pha_20241110193700_v0.0.0.cdf +0 -0
  92. imap_processing/tests/codice/data/validation/imap_codice_l1a_lo-pha_20241110193700_v0.0.0.cdf +0 -0
  93. imap_processing/tests/codice/test_codice_l1a.py +20 -11
  94. imap_processing/tests/codice/test_codice_l1b.py +6 -7
  95. imap_processing/tests/conftest.py +78 -22
  96. imap_processing/tests/ena_maps/test_ena_maps.py +462 -33
  97. imap_processing/tests/ena_maps/test_spatial_utils.py +1 -1
  98. imap_processing/tests/glows/conftest.py +10 -14
  99. imap_processing/tests/glows/test_glows_decom.py +4 -4
  100. imap_processing/tests/glows/test_glows_l1a_cdf.py +6 -27
  101. imap_processing/tests/glows/test_glows_l1a_data.py +6 -8
  102. imap_processing/tests/glows/test_glows_l1b.py +11 -11
  103. imap_processing/tests/glows/test_glows_l1b_data.py +5 -5
  104. imap_processing/tests/glows/test_glows_l2.py +2 -8
  105. imap_processing/tests/hi/conftest.py +1 -1
  106. imap_processing/tests/hi/test_hi_l1b.py +10 -12
  107. imap_processing/tests/hi/test_hi_l1c.py +27 -24
  108. imap_processing/tests/hi/test_l1a.py +7 -9
  109. imap_processing/tests/hi/test_science_direct_event.py +2 -2
  110. imap_processing/tests/hit/helpers/l1_validation.py +44 -43
  111. imap_processing/tests/hit/test_decom_hit.py +1 -1
  112. imap_processing/tests/hit/test_hit_l1a.py +9 -9
  113. imap_processing/tests/hit/test_hit_l1b.py +172 -217
  114. imap_processing/tests/hit/test_hit_l2.py +380 -118
  115. imap_processing/tests/hit/test_hit_utils.py +122 -55
  116. imap_processing/tests/hit/validation_data/hit_l1b_standard_sample2_nsrl_v4_3decimals.csv +62 -62
  117. imap_processing/tests/hit/validation_data/sci_sample_raw.csv +1 -1
  118. imap_processing/tests/ialirt/unit/test_decom_ialirt.py +16 -81
  119. imap_processing/tests/ialirt/unit/test_grouping.py +2 -2
  120. imap_processing/tests/ialirt/unit/test_parse_mag.py +71 -16
  121. imap_processing/tests/ialirt/unit/test_process_codicehi.py +3 -3
  122. imap_processing/tests/ialirt/unit/test_process_codicelo.py +3 -10
  123. imap_processing/tests/ialirt/unit/test_process_ephemeris.py +4 -4
  124. imap_processing/tests/ialirt/unit/test_process_hit.py +3 -3
  125. imap_processing/tests/ialirt/unit/test_process_swapi.py +24 -16
  126. imap_processing/tests/ialirt/unit/test_process_swe.py +115 -7
  127. imap_processing/tests/idex/conftest.py +72 -7
  128. imap_processing/tests/idex/test_data/imap_idex_l0_raw_20241206_v001.pkts +0 -0
  129. imap_processing/tests/idex/test_data/imap_idex_l0_raw_20250108_v001.pkts +0 -0
  130. imap_processing/tests/idex/test_idex_l0.py +33 -11
  131. imap_processing/tests/idex/test_idex_l1a.py +50 -23
  132. imap_processing/tests/idex/test_idex_l1b.py +104 -25
  133. imap_processing/tests/idex/test_idex_l2a.py +48 -32
  134. imap_processing/tests/idex/test_idex_l2b.py +93 -0
  135. imap_processing/tests/lo/test_lo_l1a.py +3 -3
  136. imap_processing/tests/lo/test_lo_l1b.py +371 -6
  137. imap_processing/tests/lo/test_lo_l1c.py +1 -1
  138. imap_processing/tests/lo/test_lo_science.py +6 -7
  139. imap_processing/tests/lo/test_star_sensor.py +1 -1
  140. imap_processing/tests/mag/conftest.py +58 -9
  141. imap_processing/tests/mag/test_mag_decom.py +4 -3
  142. imap_processing/tests/mag/test_mag_l1a.py +13 -7
  143. imap_processing/tests/mag/test_mag_l1b.py +9 -9
  144. imap_processing/tests/mag/test_mag_l1c.py +151 -47
  145. imap_processing/tests/mag/test_mag_l2.py +130 -0
  146. imap_processing/tests/mag/test_mag_validation.py +144 -7
  147. imap_processing/tests/mag/validation/L1c/T013/mag-l1b-l1c-t013-magi-normal-in.csv +1217 -0
  148. imap_processing/tests/mag/validation/L1c/T013/mag-l1b-l1c-t013-magi-normal-out.csv +1857 -0
  149. imap_processing/tests/mag/validation/L1c/T013/mag-l1b-l1c-t013-mago-normal-in.csv +1217 -0
  150. imap_processing/tests/mag/validation/L1c/T013/mag-l1b-l1c-t013-mago-normal-out.csv +1857 -0
  151. imap_processing/tests/mag/validation/L1c/T014/mag-l1b-l1c-t014-magi-normal-in.csv +1217 -0
  152. imap_processing/tests/mag/validation/L1c/T014/mag-l1b-l1c-t014-magi-normal-out.csv +1793 -0
  153. imap_processing/tests/mag/validation/L1c/T014/mag-l1b-l1c-t014-mago-normal-in.csv +1217 -0
  154. imap_processing/tests/mag/validation/L1c/T014/mag-l1b-l1c-t014-mago-normal-out.csv +1793 -0
  155. imap_processing/tests/mag/validation/L1c/T015/mag-l1b-l1c-t015-magi-burst-in.csv +2561 -0
  156. imap_processing/tests/mag/validation/L1c/T015/mag-l1b-l1c-t015-magi-normal-in.csv +961 -0
  157. imap_processing/tests/mag/validation/L1c/T015/mag-l1b-l1c-t015-magi-normal-out.csv +1539 -0
  158. imap_processing/tests/mag/validation/L1c/T015/mag-l1b-l1c-t015-mago-normal-in.csv +1921 -0
  159. imap_processing/tests/mag/validation/L1c/T015/mag-l1b-l1c-t015-mago-normal-out.csv +2499 -0
  160. imap_processing/tests/mag/validation/L1c/T016/mag-l1b-l1c-t016-magi-normal-in.csv +865 -0
  161. imap_processing/tests/mag/validation/L1c/T016/mag-l1b-l1c-t016-magi-normal-out.csv +1196 -0
  162. imap_processing/tests/mag/validation/L1c/T016/mag-l1b-l1c-t016-mago-normal-in.csv +1729 -0
  163. imap_processing/tests/mag/validation/L1c/T016/mag-l1b-l1c-t016-mago-normal-out.csv +3053 -0
  164. imap_processing/tests/mag/validation/L2/imap_mag_l1b_norm-mago_20251017_v002.cdf +0 -0
  165. imap_processing/tests/mag/validation/calibration/imap_mag_l2-calibration-matrices_20251017_v004.cdf +0 -0
  166. imap_processing/tests/mag/validation/calibration/imap_mag_l2-offsets-norm_20251017_20251017_v001.cdf +0 -0
  167. imap_processing/tests/spacecraft/test_quaternions.py +1 -1
  168. imap_processing/tests/spice/test_data/fake_repoint_data.csv +4 -4
  169. imap_processing/tests/spice/test_data/fake_spin_data.csv +11 -11
  170. imap_processing/tests/spice/test_geometry.py +3 -3
  171. imap_processing/tests/spice/test_kernels.py +1 -200
  172. imap_processing/tests/spice/test_pointing_frame.py +185 -0
  173. imap_processing/tests/spice/test_repoint.py +20 -10
  174. imap_processing/tests/spice/test_spin.py +50 -9
  175. imap_processing/tests/spice/test_time.py +14 -0
  176. imap_processing/tests/swapi/lut/imap_swapi_esa-unit-conversion_20250211_v000.csv +73 -0
  177. imap_processing/tests/swapi/lut/imap_swapi_lut-notes_20250211_v000.csv +1025 -0
  178. imap_processing/tests/swapi/test_swapi_l1.py +7 -9
  179. imap_processing/tests/swapi/test_swapi_l2.py +180 -8
  180. imap_processing/tests/swe/lut/checker-board-indices.csv +24 -0
  181. imap_processing/tests/swe/lut/imap_swe_esa-lut_20250301_v000.csv +385 -0
  182. imap_processing/tests/swe/lut/imap_swe_l1b-in-flight-cal_20240510_20260716_v000.csv +3 -0
  183. imap_processing/tests/swe/test_swe_l1a.py +6 -6
  184. imap_processing/tests/swe/test_swe_l1a_science.py +3 -3
  185. imap_processing/tests/swe/test_swe_l1b.py +162 -24
  186. imap_processing/tests/swe/test_swe_l2.py +82 -102
  187. imap_processing/tests/test_cli.py +171 -88
  188. imap_processing/tests/test_utils.py +2 -1
  189. imap_processing/tests/ultra/data/mock_data.py +49 -21
  190. imap_processing/tests/ultra/unit/conftest.py +53 -70
  191. imap_processing/tests/ultra/unit/test_badtimes.py +2 -4
  192. imap_processing/tests/ultra/unit/test_cullingmask.py +4 -6
  193. imap_processing/tests/ultra/unit/test_de.py +3 -10
  194. imap_processing/tests/ultra/unit/test_decom_apid_880.py +27 -76
  195. imap_processing/tests/ultra/unit/test_decom_apid_881.py +15 -16
  196. imap_processing/tests/ultra/unit/test_decom_apid_883.py +12 -10
  197. imap_processing/tests/ultra/unit/test_decom_apid_896.py +202 -55
  198. imap_processing/tests/ultra/unit/test_lookup_utils.py +23 -1
  199. imap_processing/tests/ultra/unit/test_spacecraft_pset.py +3 -4
  200. imap_processing/tests/ultra/unit/test_ultra_l1a.py +84 -307
  201. imap_processing/tests/ultra/unit/test_ultra_l1b.py +30 -12
  202. imap_processing/tests/ultra/unit/test_ultra_l1b_annotated.py +2 -2
  203. imap_processing/tests/ultra/unit/test_ultra_l1b_culling.py +4 -1
  204. imap_processing/tests/ultra/unit/test_ultra_l1b_extended.py +163 -29
  205. imap_processing/tests/ultra/unit/test_ultra_l1c.py +5 -5
  206. imap_processing/tests/ultra/unit/test_ultra_l1c_pset_bins.py +32 -43
  207. imap_processing/tests/ultra/unit/test_ultra_l2.py +230 -0
  208. imap_processing/ultra/constants.py +1 -1
  209. imap_processing/ultra/l0/decom_tools.py +21 -34
  210. imap_processing/ultra/l0/decom_ultra.py +168 -204
  211. imap_processing/ultra/l0/ultra_utils.py +152 -136
  212. imap_processing/ultra/l1a/ultra_l1a.py +55 -243
  213. imap_processing/ultra/l1b/badtimes.py +1 -4
  214. imap_processing/ultra/l1b/cullingmask.py +2 -6
  215. imap_processing/ultra/l1b/de.py +62 -47
  216. imap_processing/ultra/l1b/extendedspin.py +8 -4
  217. imap_processing/ultra/l1b/lookup_utils.py +72 -9
  218. imap_processing/ultra/l1b/ultra_l1b.py +3 -8
  219. imap_processing/ultra/l1b/ultra_l1b_culling.py +4 -4
  220. imap_processing/ultra/l1b/ultra_l1b_extended.py +236 -78
  221. imap_processing/ultra/l1c/histogram.py +2 -6
  222. imap_processing/ultra/l1c/spacecraft_pset.py +2 -4
  223. imap_processing/ultra/l1c/ultra_l1c.py +1 -5
  224. imap_processing/ultra/l1c/ultra_l1c_pset_bins.py +107 -60
  225. imap_processing/ultra/l2/ultra_l2.py +299 -0
  226. imap_processing/ultra/lookup_tables/Angular_Profiles_FM45_LeftSlit.csv +526 -0
  227. imap_processing/ultra/lookup_tables/Angular_Profiles_FM45_RightSlit.csv +526 -0
  228. imap_processing/ultra/lookup_tables/Angular_Profiles_FM90_LeftSlit.csv +526 -0
  229. imap_processing/ultra/lookup_tables/Angular_Profiles_FM90_RightSlit.csv +526 -0
  230. imap_processing/ultra/lookup_tables/FM45_Startup1_ULTRA_IMGPARAMS_20240719.csv +2 -2
  231. imap_processing/ultra/lookup_tables/FM90_Startup1_ULTRA_IMGPARAMS_20240719.csv +2 -0
  232. imap_processing/ultra/packet_definitions/README.md +38 -0
  233. imap_processing/ultra/packet_definitions/ULTRA_SCI_COMBINED.xml +15302 -482
  234. imap_processing/ultra/utils/ultra_l1_utils.py +13 -12
  235. imap_processing/utils.py +1 -1
  236. {imap_processing-0.12.0.dist-info → imap_processing-0.13.0.dist-info}/METADATA +3 -2
  237. {imap_processing-0.12.0.dist-info → imap_processing-0.13.0.dist-info}/RECORD +264 -225
  238. imap_processing/hi/l1b/hi_eng_unit_convert_table.csv +0 -154
  239. imap_processing/mag/imap_mag_sdc-configuration_v001.yaml +0 -6
  240. imap_processing/mag/l1b/__init__.py +0 -0
  241. imap_processing/swe/l1b/swe_esa_lookup_table.csv +0 -1441
  242. imap_processing/swe/l1b/swe_l1b_science.py +0 -699
  243. imap_processing/tests/swe/test_swe_l1b_science.py +0 -103
  244. imap_processing/ultra/lookup_tables/dps_sensitivity45.cdf +0 -0
  245. imap_processing/ultra/lookup_tables/ultra_90_dps_exposure_compressed.cdf +0 -0
  246. /imap_processing/idex/packet_definitions/{idex_packet_definition.xml → idex_science_packet_definition.xml} +0 -0
  247. /imap_processing/tests/ialirt/{test_data → data}/l0/20240827095047_SWE_IALIRT_packet.bin +0 -0
  248. /imap_processing/tests/ialirt/{test_data → data}/l0/461971383-404.bin +0 -0
  249. /imap_processing/tests/ialirt/{test_data → data}/l0/461971384-405.bin +0 -0
  250. /imap_processing/tests/ialirt/{test_data → data}/l0/461971385-406.bin +0 -0
  251. /imap_processing/tests/ialirt/{test_data → data}/l0/461971386-407.bin +0 -0
  252. /imap_processing/tests/ialirt/{test_data → data}/l0/461971387-408.bin +0 -0
  253. /imap_processing/tests/ialirt/{test_data → data}/l0/461971388-409.bin +0 -0
  254. /imap_processing/tests/ialirt/{test_data → data}/l0/461971389-410.bin +0 -0
  255. /imap_processing/tests/ialirt/{test_data → data}/l0/461971390-411.bin +0 -0
  256. /imap_processing/tests/ialirt/{test_data → data}/l0/461971391-412.bin +0 -0
  257. /imap_processing/tests/ialirt/{test_data → data}/l0/BinLog CCSDS_FRAG_TLM_20240826_152323Z_IALIRT_data_for_SDC.bin +0 -0
  258. /imap_processing/tests/ialirt/{test_data → data}/l0/IALiRT Raw Packet Telemetry.txt +0 -0
  259. /imap_processing/tests/ialirt/{test_data → data}/l0/apid01152.tlm +0 -0
  260. /imap_processing/tests/ialirt/{test_data → data}/l0/eu_SWP_IAL_20240826_152033.csv +0 -0
  261. /imap_processing/tests/ialirt/{test_data → data}/l0/hi_fsw_view_1_ccsds.bin +0 -0
  262. /imap_processing/tests/ialirt/{test_data → data}/l0/hit_ialirt_sample.ccsds +0 -0
  263. /imap_processing/tests/ialirt/{test_data → data}/l0/hit_ialirt_sample.csv +0 -0
  264. /imap_processing/tests/ialirt/{test_data → data}/l0/idle_export_eu.SWE_IALIRT_20240827_093852.csv +0 -0
  265. /imap_processing/tests/ialirt/{test_data → data}/l0/imap_codice_l1a_hi-ialirt_20240523200000_v0.0.0.cdf +0 -0
  266. /imap_processing/tests/ialirt/{test_data → data}/l0/imap_codice_l1a_lo-ialirt_20241110193700_v0.0.0.cdf +0 -0
  267. /imap_processing/tests/ialirt/{test_data → data}/l0/sample_decoded_i-alirt_data.csv +0 -0
  268. /imap_processing/tests/mag/validation/{imap_calibration_mag_20240229_v01.cdf → calibration/imap_mag_l1b-calibration_20240229_v001.cdf} +0 -0
  269. /imap_processing/{swe/l1b/engineering_unit_convert_table.csv → tests/swe/lut/imap_swe_eu-conversion_20240510_v000.csv} +0 -0
  270. {imap_processing-0.12.0.dist-info → imap_processing-0.13.0.dist-info}/LICENSE +0 -0
  271. {imap_processing-0.12.0.dist-info → imap_processing-0.13.0.dist-info}/WHEEL +0 -0
  272. {imap_processing-0.12.0.dist-info → imap_processing-0.13.0.dist-info}/entry_points.txt +0 -0
@@ -1,391 +1,2109 @@
1
1
  # <=== Defaults ===>
2
2
  default_attrs: &default
3
- CATDESC: ""
3
+ DEPEND_0: epoch
4
4
  DISPLAY_TYPE: no_plot
5
- FIELDNAM: ""
5
+ FIELDNAM: " "
6
6
  FILLVAL: -9223372036854775808
7
7
  FORMAT: I12
8
- LABLAXIS: ""
9
- REFERENCE_POSITION: ""
10
- RESOLUTION: ""
11
8
  SCALETYP: linear
12
- TIME_BASE: ""
13
- TIME_SCALE: ""
14
9
  UNITS: dN
15
10
  VALIDMIN: -9223372036854775808
16
11
  VALIDMAX: 9223372036854775807
17
12
  VAR_TYPE: data
18
13
 
19
- codice_support_attrs: &support_default
14
+ hskp_attrs: &hskp_default
20
15
  <<: *default
16
+ DEPEND_0: epoch
21
17
  VAR_TYPE: support_data
22
18
 
19
+ hi_energies_attrs: &hi_energies_default
20
+ FIELDNAM: Energy Table
21
+ FILLVAL: -1.0e+30
22
+ FORMAT: F10.8
23
+ LABLAXIS: MeV/n
24
+ SCALETYP: log
25
+ UNITS: MeV/n
26
+ VALIDMIN: 0.05
27
+ VALIDMAX: 200.00
28
+ VAR_TYPE: support_data
29
+
30
+ hi_priorities_attrs: &hi_priorities_default
31
+ FILLVAL: -1
32
+ LABLAXIS: events
33
+ UNITS: events
34
+ VALIDMIN: 0
35
+ VALIDMAX: 16777216
36
+
37
+
23
38
  # <=== Coordinates ===>
24
- energy_attrs:
25
- <<: *default
39
+ esa_step:
26
40
  CATDESC: Energy per charge (E/q) sweeping step
27
- FIELDNAM: Energy step
41
+ FIELDNAM: Energy Index
42
+ FILLVAL: 254
28
43
  FORMAT: I3
29
- LABLAXIS: energy step
30
- UNITS: ' '
44
+ LABLAXIS: Energy Index
45
+ SCALETYP: linear
46
+ UNITS: " "
31
47
  VALIDMIN: 0
32
48
  VALIDMAX: 127
33
49
  VAR_TYPE: support_data
34
50
 
35
- inst_az_attrs:
36
- <<: *default
37
- CATDESC: Azimuth
38
- FIELDNAM: Azimuth
39
- FORMAT: I2
40
- LABLAXIS: Azimuth
41
- UNITS: ' '
51
+ inst_az:
52
+ CATDESC: Instrument Azimuth Index
53
+ FIELDNAM: Azimuth Index
54
+ FILLVAL: 254
55
+ FORMAT: I3
56
+ LABLAXIS: Azimuth Index
57
+ SCALETYP: linear
58
+ UNITS: " "
42
59
  VALIDMIN: 0
43
60
  VALIDMAX: 31
44
61
  VAR_TYPE: support_data
45
62
 
46
- spin_sector_attrs:
47
- <<: *default
63
+ spin_sector:
48
64
  CATDESC: Spin sector indicating range of spin angles
49
- FIELDNAM: Spin sector
50
- FORMAT: I4
51
- LABLAXIS: spin sector
52
- UNITS: ' '
65
+ FIELDNAM: Spin Sector Index
66
+ FILLVAL: 254
67
+ FORMAT: I3
68
+ LABLAXIS: Spin Sector
69
+ SCALETYP: linear
70
+ UNITS: " "
71
+ VALIDMIN: 0
72
+ VALIDMAX: 12
73
+ VAR_TYPE: support_data
74
+
75
+ # TODO: These values will likely change, check with Joey
76
+ spin_sector_pairs:
77
+ CATDESC: Spin sector Pairs
78
+ FIELDNAM: Spin Sector Pairs
79
+ FILLVAL: -1
80
+ FORMAT: I1
81
+ LABLAXIS: " "
82
+ SCALETYP: linear
83
+ UNITS: " "
53
84
  VALIDMIN: 0
54
- VALIDMAX: 1152
85
+ VALIDMAX: 6
86
+ VAR_TYPE: support_data
87
+
88
+ spin_sector_index:
89
+ CATDESC: Spin Sector Index
90
+ FIELDNAM: Spin Sector Index
91
+ FILLVAL: -1
92
+ FORMAT: I2
93
+ LABLAXIS: " "
94
+ SCALETYP: linear
95
+ UNITS: " "
96
+ VALIDMIN: 0
97
+ VALIDMAX: 12
98
+ VAR_TYPE: support_data
99
+
100
+ ssd_index:
101
+ CATDESC: SSD Index
102
+ FIELDNAM: SSD Index
103
+ FILLVAL: -1
104
+ FORMAT: I2
105
+ LABLAXIS: " "
106
+ SCALETYP: linear
107
+ UNITS: " "
108
+ VALIDMIN: 0
109
+ VALIDMAX: 12
110
+ VAR_TYPE: support_data
111
+
112
+ ssdid:
113
+ CATDESC: SSD ID
114
+ FIELDNAM: SSD ID
115
+ FILLVAL: -1
116
+ FORMAT: I2
117
+ LABLAXIS: " "
118
+ SCALETYP: linear
119
+ UNITS: " "
120
+ VALIDMIN: 0
121
+ VALIDMAX: 12
55
122
  VAR_TYPE: support_data
56
123
 
57
124
  # <=== Labels ===>
58
- energy_label:
59
- CATDESC: Energy per charge (E/q) sweeping step
60
- DISPLAY_TYPE: ""
61
- FIELDNAM: Energy step
62
- FILLVAL: ""
63
- FORMAT: A3
64
- LABLAXIS: ""
65
- REFERENCE_POSITION: ""
66
- RESOLUTION: ""
67
- TIME_BASE: ""
68
- TIME_SCALE: ""
69
- UNITS: ""
70
- VALIDMAX: ""
71
- VALIDMIN: ""
125
+ spin_sector_pairs_label:
126
+ CATDESC: Spin sector Pairs
127
+ FIELDNAM: Spin Sector Pairs
128
+ FORMAT: A11
72
129
  VAR_TYPE: metadata
73
130
 
74
- # <=== Dataset Attributes ===>
75
- acquisition_times_attrs:
76
- <<: *default
77
- CATDESC: Time of acquisition for the energy step
78
- DEPEND_1: energy
131
+ # <=== Dataset Variable Attributes ===>
132
+ # The following are set in multiple data products
133
+ acquisition_time_per_step:
134
+ CATDESC: Acquisition time for each step of energy
79
135
  FIELDNAM: Acquisition Time
80
- FILLVAL: .NAN
136
+ FILLVAL: -1.0e+30
81
137
  FORMAT: F10.3
82
- LABLAXIS: Acq Time
138
+ LABLAXIS: Acquisition Time
139
+ SCALETYP: linear
83
140
  UNITS: ms
84
- VALIDMIN: 0
85
- VALIDMAX: 1000
141
+ VALIDMIN: 0.000000
142
+ VALIDMAX: 625.000000
86
143
  VAR_TYPE: support_data
87
144
 
88
145
  counters_attrs: &counters
89
146
  <<: *default
90
147
  CATDESC: Fill in at creation
91
- DEPEND_0: epoch
92
- DEPEND_1: energy
93
148
  DISPLAY_TYPE: time_series
94
149
  FIELDNAM: Fill in at creation
95
- LABL_PTR_1: energy_label
150
+ FORMAT: I7
151
+ SCALETYP: linear
96
152
  UNITS: counts
97
153
  VALIDMIN: 0
98
154
  VALIDMAX: 8388607 # max value for a signed 24-bit integer
155
+ VAR_TYPE: data
99
156
 
100
- esa_sweep_attrs:
157
+ events_attrs: &events
101
158
  <<: *default
102
- CATDESC: ElectroStatic Analyzer Energy Values
103
- DEPEND_1: energy
104
- FIELDNAM: ESA Voltage
105
- FORMAT: I19
106
- LABLAXIS: ESA V
107
- UNITS: V
159
+ CATDESC: Fill in at creation
160
+ DISPLAY_TYPE: time_series
161
+ FIELDNAM: Fill in at creation
162
+ FILLVAL: -1
163
+ FORMAT: I8
164
+ SCALETYP: linear
165
+ UNITS: counts
166
+ VALIDMIN: 0
167
+ VALIDMAX: 16777216 # max value for a signed 32-bit integer
168
+ VAR_TYPE: data
169
+
170
+ data_quality:
171
+ <<: *default
172
+ CATDESC: Indicates whether data quality is suspect (1).
173
+ DISPLAY_TYPE: time_series
174
+ FIELDNAM: Data Quality
175
+ FILLVAL: 255
176
+ FORMAT: I1
177
+ LABLAXIS: Data Quality
178
+ SCALETYP: linear
179
+ UNITS: " "
108
180
  VALIDMIN: 0
181
+ VALIDMAX: 1
182
+ VAR_TYPE: data
183
+
184
+ energy_table:
185
+ CATDESC: ElectroStatic Analyzer Energy Values
186
+ FIELDNAM: Energy Table
187
+ FORMAT: I5
188
+ LABLAXIS: eV
189
+ SCALETYP: log
190
+ UNITS: eV
191
+ VALIDMIN: 1
192
+ VALIDMAX: 14100
109
193
  VAR_TYPE: support_data
110
194
 
111
- # <=== Data Variable Attributes ===>
195
+ nso_half_spin:
196
+ <<: *default
197
+ CATDESC: When No Scan Operation (NSO) was activated
198
+ DISPLAY_TYPE: time_series
199
+ FIELDNAM: NSO Mode
200
+ FILLVAL: 255
201
+ FORMAT: I3
202
+ LABLAXIS: NSO Half Spin
203
+ SCALETYP: linear
204
+ UNITS: half spin number
205
+ VALIDMIN: 0
206
+ VALIDMAX: 255
207
+ VAR_NOTES: Indicates the point when No Scan Operation (NSO) was activated. In NSO, the ESA voltage is set to the first step in the scan and remains fixed until the next cycle boundary.
208
+ VAR_TYPE: data
209
+
210
+ rgfo_half_spin:
211
+ <<: *default
212
+ CATDESC: When Reduced Gain Factor Operation (RGFO) was activated
213
+ DISPLAY_TYPE: time_series
214
+ FIELDNAM: RGFO Mode
215
+ FILLVAL: 255
216
+ FORMAT: I3
217
+ LABLAXIS: RGFO Half Spin
218
+ SCALETYP: linear
219
+ UNITS: half spin number
220
+ VALIDMIN: 0
221
+ VALIDMAX: 255
222
+ VAR_NOTES: Indicates the point when Reduced Gain Factor Operation (RGFO) was activated. In RGFO, the Entrance ESA voltage is reduced in order to limit the number of ions that reach the detectors.
223
+ VAR_TYPE: data
224
+
225
+ spin_period:
226
+ <<: *default
227
+ CATDESC: The spin period as reported by the spacecraft.
228
+ DISPLAY_TYPE: time_series
229
+ FIELDNAM: Spin Period
230
+ FILLVAL: 1.0e+31
231
+ FORMAT: F3.1
232
+ LABLAXIS: Spin Period
233
+ SCALETYP: linear
234
+ UNITS: s
235
+ VALIDMIN: 0.0
236
+ VALIDMAX: 16.0
237
+ VAR_TYPE: data
238
+
239
+ st_bias_gain_mode:
240
+ <<: *default
241
+ CATDESC: Suprathermal Bias Gain Mode
242
+ DISPLAY_TYPE: " "
243
+ FIELDNAM: Suprathermal Bias Gain Mode
244
+ FILLVAL: 255
245
+ FORMAT: I1
246
+ LABLAXIS: Suprathermal Bias Gain Mode
247
+ SCALETYP: linear
248
+ UNITS: " "
249
+ VALIDMIN: 0
250
+ VALIDMAX: 1
251
+ VAR_NOTES: Indicates whether FSW is tracking the Suprathermal High-Gain bias curve or the Suprathermal Low-Gain bias curve.
252
+ VAR_TYPE: data
253
+
254
+ sw_bias_gain_mode:
255
+ <<: *default
256
+ CATDESC: Solarwind Bias Gain Mode
257
+ DISPLAY_TYPE: " "
258
+ FIELDNAM: Solarwind Bias Gain Mode
259
+ FILLVAL: 255
260
+ FORMAT: I1
261
+ LABLAXIS: Solarwind Bias Gain Mode
262
+ SCALETYP: linear
263
+ UNITS: " "
264
+ VALIDMIN: 0
265
+ VALIDMAX: 1
266
+ VAR_NOTES: Indicates whether FSW is tracking the Solarwind High-Gain bias curve or the Solarwind Low-Gain bias curve.
267
+ VAR_TYPE: data
268
+
269
+ # The following are data product-specific
112
270
  # hi-counters-aggregated
113
- hi_counters_aggregated-aggregated:
114
- <<: *counters
115
- CATDESC: Aggregated Rates
116
- FIELDNAM: Rates - Aggregated
271
+ hi-counters-aggregated-DCR:
272
+ <<: *events
273
+ CATDESC: Event B - Double Coincidence Rate (DCR)
274
+ FIELDNAM: DCRs
275
+
276
+ hi-counters-aggregated-STO:
277
+ <<: *events
278
+ CATDESC: Event C - Start Only (STO)
279
+ FIELDNAM: Start Only
280
+
281
+ hi-counters-aggregated-SPO:
282
+ <<: *events
283
+ CATDESC: Event D - Stop Only (SPO)
284
+ FIELDNAM: Stop Only
285
+
286
+ hi-counters-aggregated-Reserved1:
287
+ <<: *events
288
+ CATDESC: Reserved 1
289
+ FIELDNAM: Reserved 1
290
+
291
+ hi-counters-aggregated-MST:
292
+ <<: *events
293
+ CATDESC: Event H - Multi Start (MST)
294
+ FIELDNAM: Multi Start
295
+
296
+ hi-counters-aggregated-Reserved2:
297
+ <<: *events
298
+ CATDESC: Reserved 2
299
+ FIELDNAM: Reserved 2
300
+
301
+ hi-counters-aggregated-Reserved3:
302
+ <<: *events
303
+ CATDESC: Reserved 3
304
+ FIELDNAM: Reserved 3
305
+
306
+ hi-counters-aggregated-Reserved4:
307
+ <<: *events
308
+ CATDESC: Reserved 4
309
+ FIELDNAM: Reserved 4
310
+
311
+ hi-counters-aggregated-Reserved5:
312
+ <<: *events
313
+ CATDESC: Reserved 5
314
+ FIELDNAM: Reserved 5
315
+
316
+ hi-counters-aggregated-LowTOFCutoff:
317
+ <<: *events
318
+ CATDESC: Low TOF Cutoff
319
+ FIELDNAM: Low TOF Cutoff
320
+
321
+ hi-counters-aggregated-Reserved6:
322
+ <<: *events
323
+ CATDESC: Reserved 6
324
+ FIELDNAM: Reserved 6
325
+
326
+ hi-counters-aggregated-Reserved7:
327
+ <<: *events
328
+ CATDESC: Reserved 7
329
+ FIELDNAM: Reserved 7
330
+
331
+ hi-counters-aggregated-ASIC1FlagInvalid:
332
+ <<: *events
333
+ CATDESC: ASIC 1 Flag Invalid Count
334
+ FIELDNAM: ASIC 1 Flag Invalid
335
+
336
+ hi-counters-aggregated-ASIC2FlagInvalid:
337
+ <<: *events
338
+ CATDESC: ASIC 2 Flag Invalid Count
339
+ FIELDNAM: ASIC 2 Flag Invalid
340
+
341
+ hi-counters-aggregated-ASIC1ChannelInvalid:
342
+ <<: *events
343
+ CATDESC: ASIC 1 Channel Invalid Count
344
+ FIELDNAM: ASIC 1 Channel Invalid
345
+
346
+ hi-counters-aggregated-ASIC2ChannelInvalid:
347
+ <<: *events
348
+ CATDESC: ASIC 2 Channel Invalid Count
349
+ FIELDNAM: ASIC 2 Channel Invalid
117
350
 
118
351
  # hi-counters-singles
119
- hi_counters_singles-tcr:
352
+ hi-counters-singles-tcr:
120
353
  <<: *counters
121
- CATDESC: TCR Rates
122
- FIELDNAM: Rates - Event A (TCR)
354
+ CATDESC: Rates - Event A (TCR)
355
+ FIELDNAM: Rates
356
+ DEPEND_1: ssdid
357
+ LABL_PTR_1: ssdid
358
+ UNITS: events
123
359
 
124
- hi_counters_singles-ssdo:
360
+ hi-counters-singles-ssdo:
125
361
  <<: *counters
126
- CATDESC: SSDO Rates
127
- FIELDNAM: Rates - Event E (SSDO)
362
+ CATDESC: Rates - Event E (SSDO)
363
+ FIELDNAM: Rates
364
+ DEPEND_1: ssdid
365
+ LABL_PTR_1: ssdid
366
+ UNITS: events
128
367
 
129
- hi_counters_singles-stssd:
368
+ hi-counters-singles-stssd:
130
369
  <<: *counters
131
- CATDESC: STSSD Rates
132
- FIELDNAM: Rates - Event G (STSSD)
370
+ CATDESC: Rates - Event G (STSSD)
371
+ FIELDNAM: Rates
372
+ DEPEND_1: ssdid
373
+ LABL_PTR_1: ssdid
374
+ UNITS: events
133
375
 
134
376
  # hi-omni
135
- hi_omni-h:
377
+ hi-omni-h:
136
378
  <<: *counters
137
379
  CATDESC: Omnidirectional H Rates
138
380
  FIELDNAM: H
381
+ DEPEND_1: esa_step
382
+ DEPEND_2: inst_az
383
+ LABL_PTR_1: esa_step
384
+ LABL_PTR_2: inst_az
385
+
386
+ hi-omni-energy_h:
387
+ <<: *hi_energies_default
388
+ CATDESC: Energy Table for h
389
+ DELTA_MINUS_VAR: energy_h_delta
390
+ DELTA_PLUS_VAR: energy_h_delta
139
391
 
140
- hi_omni-he3:
392
+ hi-omni-energy_h_delta:
393
+ <<: *hi_energies_default
394
+ CATDESC: Delta of energies for h
395
+ FIELDNAM: Delta Energy
396
+
397
+ hi-omni-he3:
141
398
  <<: *counters
142
399
  CATDESC: Omnidirectional He3 Rates
143
400
  FIELDNAM: He3
401
+ DEPEND_1: esa_step
402
+ DEPEND_2: inst_az
403
+ LABL_PTR_1: esa_step
404
+ LABL_PTR_2: inst_az
405
+
406
+ hi-omni-energy_he3:
407
+ <<: *hi_energies_default
408
+ CATDESC: Energy Table for he3
409
+ DELTA_MINUS_VAR: energy_he3_delta
410
+ DELTA_PLUS_VAR: energy_he3_delta
411
+
412
+ hi-omni-energy_he3_delta:
413
+ <<: *hi_energies_default
414
+ CATDESC: Delta of energies for he3
415
+ FIELDNAM: Delta Energy
144
416
 
145
- hi_omni-he4:
417
+ hi-omni-he4:
146
418
  <<: *counters
147
419
  CATDESC: Omnidirectional He4 Rates
148
420
  FIELDNAM: He4
421
+ DEPEND_1: esa_step
422
+ DEPEND_2: inst_az
423
+ LABL_PTR_1: esa_step
424
+ LABL_PTR_2: inst_az
425
+
426
+ hi-omni-energy_he4:
427
+ <<: *hi_energies_default
428
+ CATDESC: Energy Table for he4
429
+ DELTA_MINUS_VAR: energy_he4_delta
430
+ DELTA_PLUS_VAR: energy_he4_delta
431
+
432
+ hi-omni-energy_he4_delta:
433
+ <<: *hi_energies_default
434
+ CATDESC: Delta of energies for he4
435
+ FIELDNAM: Delta Energy
149
436
 
150
- hi_omni-c:
437
+ hi-omni-c:
151
438
  <<: *counters
152
439
  CATDESC: Omnidirectional C Rates
153
440
  FIELDNAM: C
441
+ DEPEND_1: esa_step
442
+ DEPEND_2: inst_az
443
+ LABL_PTR_1: esa_step
444
+ LABL_PTR_2: inst_az
154
445
 
155
- hi_omni-o:
446
+ hi-omni-energy_c:
447
+ <<: *hi_energies_default
448
+ CATDESC: Energy Table for c
449
+ DELTA_MINUS_VAR: energy_c_delta
450
+ DELTA_PLUS_VAR: energy_c_delta
451
+
452
+ hi-omni-energy_c_delta:
453
+ <<: *hi_energies_default
454
+ CATDESC: Delta of energies for c
455
+ FIELDNAM: Delta Energy
456
+
457
+ hi-omni-o:
156
458
  <<: *counters
157
459
  CATDESC: Omnidirectional O Rates
158
460
  FIELDNAM: O
461
+ DEPEND_1: esa_step
462
+ DEPEND_2: inst_az
463
+ LABL_PTR_1: esa_step
464
+ LABL_PTR_2: inst_az
465
+
466
+ hi-omni-energy_o:
467
+ <<: *hi_energies_default
468
+ CATDESC: Energy Table for o
469
+ DELTA_MINUS_VAR: energy_o_delta
470
+ DELTA_PLUS_VAR: energy_o_delta
159
471
 
160
- hi_omni-ne_mg_si:
472
+ hi-omni-energy_o_delta:
473
+ <<: *hi_energies_default
474
+ CATDESC: Delta of energies for o
475
+ FIELDNAM: Delta Energy
476
+
477
+ hi-omni-ne_mg_si:
161
478
  <<: *counters
162
479
  CATDESC: Omnidirectional Ne_Mg_Si Rates
163
480
  FIELDNAM: Ne_Mg_Si
481
+ DEPEND_1: esa_step
482
+ DEPEND_2: inst_az
483
+ LABL_PTR_1: esa_step
484
+ LABL_PTR_2: inst_az
485
+
486
+ hi-omni-energy_ne_mg_si:
487
+ <<: *hi_energies_default
488
+ CATDESC: Energy Table for ne_mg_si
489
+ DELTA_MINUS_VAR: energy_ne_mg_si_delta
490
+ DELTA_PLUS_VAR: energy_ne_mg_si_delta
164
491
 
165
- hi_omni-fe:
492
+ hi-omni-energy_ne_mg_si_delta:
493
+ <<: *hi_energies_default
494
+ CATDESC: Delta of energies for ne_mg_si
495
+ FIELDNAM: Delta Energy
496
+
497
+ hi-omni-fe:
166
498
  <<: *counters
167
499
  CATDESC: Omnidirectional Fe Rates
168
500
  FIELDNAM: Fe
501
+ DEPEND_1: esa_step
502
+ DEPEND_2: inst_az
503
+ LABL_PTR_1: esa_step
504
+ LABL_PTR_2: inst_az
505
+
506
+ hi-omni-energy_fe:
507
+ <<: *hi_energies_default
508
+ CATDESC: Energy Table for fe
509
+ DELTA_MINUS_VAR: energy_fe_delta
510
+ DELTA_PLUS_VAR: energy_fe_delta
169
511
 
170
- hi_omni-uh:
512
+ hi-omni-energy_fe_delta:
513
+ <<: *hi_energies_default
514
+ CATDESC: Delta of energies for fe
515
+ FIELDNAM: Delta Energy
516
+
517
+ hi-omni-uh:
171
518
  <<: *counters
172
519
  CATDESC: Omnidirectional UH Rates
173
520
  FIELDNAM: UH
521
+ DEPEND_1: esa_step
522
+ DEPEND_2: inst_az
523
+ LABL_PTR_1: esa_step
524
+ LABL_PTR_2: inst_az
525
+
526
+ hi-omni-energy_uh:
527
+ <<: *hi_energies_default
528
+ CATDESC: Energy Table for uh
529
+ DELTA_MINUS_VAR: energy_uh_delta
530
+ DELTA_PLUS_VAR: energy_uh_delta
531
+
532
+ hi-omni-energy_uh_delta:
533
+ <<: *hi_energies_default
534
+ CATDESC: Delta of energies for uh
535
+ FIELDNAM: Delta Energy
536
+
537
+ hi-omni-junk:
538
+ <<: *counters
539
+ CATDESC: Junk (Root 2 spacing)
540
+ FIELDNAM: Junk
541
+ DEPEND_1: esa_step
542
+ DEPEND_2: inst_az
543
+ LABL_PTR_1: esa_step
544
+ LABL_PTR_2: inst_az
545
+
546
+ hi-omni-energy_junk:
547
+ <<: *hi_energies_default
548
+ CATDESC: Energy Table for junk
549
+ DELTA_MINUS_VAR: energy_junk_delta
550
+ DELTA_PLUS_VAR: energy_junk_delta
551
+
552
+ hi-omni-energy_junk_delta:
553
+ <<: *hi_energies_default
554
+ CATDESC: Delta of energies for junk
555
+ FIELDNAM: Delta Energy
556
+
557
+ # hi-priority
558
+ hi-priority-Priority0:
559
+ <<: *hi_priorities_default
560
+ CATDESC: Priority 0
561
+ FIELDNAM: Priority 0
562
+
563
+ hi-priority-Priority1:
564
+ <<: *hi_priorities_default
565
+ CATDESC: Priority 1
566
+ FIELDNAM: Priority 1
567
+
568
+ hi-priority-Priority2:
569
+ <<: *hi_priorities_default
570
+ CATDESC: Priority 2
571
+ FIELDNAM: Priority 2
572
+
573
+ hi-priority-Priority3:
574
+ <<: *hi_priorities_default
575
+ CATDESC: Priority 3
576
+ FIELDNAM: Priority 3
577
+
578
+ hi-priority-Priority4:
579
+ <<: *hi_priorities_default
580
+ CATDESC: Priority 4
581
+ FIELDNAM: Priority 4
582
+
583
+ hi-priority-Priority5:
584
+ <<: *hi_priorities_default
585
+ CATDESC: Priority 5
586
+ FIELDNAM: Priority 5
174
587
 
175
588
  # hi-sectored
176
- hi_sectored-h:
589
+ hi-sectored-h:
177
590
  <<: *counters
178
591
  CATDESC: Sectored H Rates
179
592
  FIELDNAM: H
593
+ DEPEND_1: energy_h
594
+ DEPEND_2: ssd_index
595
+ DEPEND_3: spin_sector_index
596
+ LABL_PTR_1: energy_h
597
+ LABL_PTR_2: ssd_index
598
+ LABL_PTR_3: spin_sector_index
599
+
600
+ hi-sectored-energy_h:
601
+ <<: *hi_energies_default
602
+ CATDESC: Energy Table for H
603
+ DELTA_MINUS_VAR: energy_h_delta
604
+ DELTA_PLUS_VAR: energy_h_delta
605
+
606
+ hi-sectored-energy_h_delta:
607
+ <<: *hi_energies_default
608
+ CATDESC: Delta of energies for H
609
+ FIELDNAM: Delta Energy
180
610
 
181
- hi_sectored-he3he4:
611
+ hi-sectored-he3he4:
182
612
  <<: *counters
183
613
  CATDESC: Sectored He3He4 Rates
184
614
  FIELDNAM: He3He4
615
+ DEPEND_1: energy_he3he4
616
+ DEPEND_2: ssd_index
617
+ DEPEND_3: spin_sector_index
618
+ LABL_PTR_1: energy_he3he4
619
+ LABL_PTR_2: ssd_index
620
+ LABL_PTR_3: spin_sector_index
621
+
622
+ hi-sectored-energy_he3he4:
623
+ <<: *hi_energies_default
624
+ CATDESC: Energy Table for He3He4
625
+ DELTA_MINUS_VAR: energy_he3he4_delta
626
+ DELTA_PLUS_VAR: energy_he3he4_delta
627
+
628
+ hi-sectored-energy_he3he4_delta:
629
+ <<: *hi_energies_default
630
+ CATDESC: Delta of energies for He3He4
631
+ FIELDNAM: Delta Energy
185
632
 
186
- hi_sectored-cno:
633
+ hi-sectored-cno:
187
634
  <<: *counters
188
635
  CATDESC: Sectored CNO Rates
189
636
  FIELDNAM: CNO
637
+ DEPEND_1: energy_cno
638
+ DEPEND_2: ssd_index
639
+ DEPEND_3: spin_sector_index
640
+ LABL_PTR_1: energy_cno
641
+ LABL_PTR_2: ssd_index
642
+ LABL_PTR_3: spin_sector_index
190
643
 
191
- hi_sectored-fe:
644
+ hi-sectored-energy_cno:
645
+ <<: *hi_energies_default
646
+ CATDESC: Energy Table for CNO
647
+ DELTA_MINUS_VAR: energy_cno_delta
648
+ DELTA_PLUS_VAR: energy_cno_delta
649
+
650
+ hi-sectored-energy_cno_delta:
651
+ <<: *hi_energies_default
652
+ CATDESC: Delta of energies for CNO
653
+ FIELDNAM: Delta Energy
654
+
655
+ hi-sectored-fe:
192
656
  <<: *counters
193
657
  CATDESC: Sectored Fe Rates
194
658
  FIELDNAM: Fe
659
+ DEPEND_1: energy_fe
660
+ DEPEND_2: ssd_index
661
+ DEPEND_3: spin_sector_index
662
+ LABL_PTR_1: energy_fe
663
+ LABL_PTR_2: ssd_index
664
+ LABL_PTR_3: spin_sector_index
665
+
666
+ hi-sectored-energy_fe:
667
+ <<: *hi_energies_default
668
+ CATDESC: Energy Table for Fe
669
+ DELTA_MINUS_VAR: energy_fe_delta
670
+ DELTA_PLUS_VAR: energy_fe_delta
671
+
672
+ hi-sectored-energy_fe_delta:
673
+ <<: *hi_energies_default
674
+ CATDESC: Delta of energies for Fe
675
+ FIELDNAM: Delta Energy
195
676
 
196
677
  # lo-counters-aggregated
197
- lo_counters_aggregated-aggregated:
198
- <<: *counters
199
- CATDESC: Aggregated Rates
200
- FIELDNAM: Rates - Aggregated
678
+ lo-counters-aggregated-TCR:
679
+ <<: *events
680
+ CATDESC: Triple Coincidence Rate
681
+ FIELDNAM: Event A - Triple Coincidence Rate
682
+ DEPEND_1: spin_sector_pairs
683
+ DEPEND_2: esa_step
684
+ LABL_PTR_1: spin_sector_pairs_label
685
+ LABL_PTR_2: esa_step
686
+
687
+ lo-counters-aggregated-DCR:
688
+ <<: *events
689
+ CATDESC: Double Coincidence Rate
690
+ FIELDNAM: Event B - Double Coincidence Rate
691
+ DEPEND_1: spin_sector_pairs
692
+ DEPEND_2: esa_step
693
+ LABL_PTR_1: spin_sector_pairs_label
694
+ LABL_PTR_2: esa_step
695
+
696
+ lo-counters-aggregated-TOFPlusAPD:
697
+ <<: *events
698
+ CATDESC: TOF + APD
699
+ FIELDNAM: Event C - TOF + APD
700
+ DEPEND_1: spin_sector_pairs
701
+ DEPEND_2: esa_step
702
+ LABL_PTR_1: spin_sector_pairs_label
703
+ LABL_PTR_2: esa_step
704
+
705
+ lo-counters-aggregated-TOFOnly:
706
+ <<: *events
707
+ CATDESC: TOF Only
708
+ FIELDNAM: Event D - TOF Only
709
+ DEPEND_1: spin_sector_pairs
710
+ DEPEND_2: esa_step
711
+ LABL_PTR_1: spin_sector_pairs_label
712
+ LABL_PTR_2: esa_step
713
+
714
+ lo-counters-aggregated-PositionPlusAPD:
715
+ <<: *events
716
+ CATDESC: Position + APD
717
+ FIELDNAM: Event E - Position + APD
718
+ DEPEND_1: spin_sector_pairs
719
+ DEPEND_2: esa_step
720
+ LABL_PTR_1: spin_sector_pairs_label
721
+ LABL_PTR_2: esa_step
722
+
723
+ lo-counters-aggregated-PositionOnly:
724
+ <<: *events
725
+ CATDESC: Position Only
726
+ FIELDNAM: Event F - Position Only
727
+ DEPEND_1: spin_sector_pairs
728
+ DEPEND_2: esa_step
729
+ LABL_PTR_1: spin_sector_pairs_label
730
+ LABL_PTR_2: esa_step
731
+
732
+ lo-counters-aggregated-STAorSTBPlusAPD:
733
+ <<: *events
734
+ CATDESC: STA or STB + APD
735
+ FIELDNAM: Event G - STA or STB + APD
736
+ DEPEND_1: spin_sector_pairs
737
+ DEPEND_2: esa_step
738
+ LABL_PTR_1: spin_sector_pairs_label
739
+ LABL_PTR_2: esa_step
740
+
741
+ lo-counters-aggregated-STAorSTBOnly:
742
+ <<: *events
743
+ CATDESC: STA or STB Only
744
+ FIELDNAM: Event H - STA or STB Only
745
+ DEPEND_1: spin_sector_pairs
746
+ DEPEND_2: esa_step
747
+ LABL_PTR_1: spin_sector_pairs_label
748
+ LABL_PTR_2: esa_step
749
+
750
+ lo-counters-aggregated-Reserved1:
751
+ <<: *events
752
+ CATDESC: Reserved
753
+ FIELDNAM: Reserved 1
754
+ DEPEND_1: spin_sector_pairs
755
+ DEPEND_2: esa_step
756
+ LABL_PTR_1: spin_sector_pairs_label
757
+ LABL_PTR_2: esa_step
758
+
759
+ lo-counters-aggregated-Reserved2:
760
+ <<: *events
761
+ CATDESC: Reserved
762
+ FIELDNAM: Reserved 2
763
+ DEPEND_1: spin_sector_pairs
764
+ DEPEND_2: esa_step
765
+ LABL_PTR_1: spin_sector_pairs_label
766
+ LABL_PTR_2: esa_step
767
+
768
+ lo-counters-aggregated-SPOnly:
769
+ <<: *events
770
+ CATDESC: SP Only
771
+ FIELDNAM: Event K - SP Only
772
+ DEPEND_1: spin_sector_pairs
773
+ DEPEND_2: esa_step
774
+ LABL_PTR_1: spin_sector_pairs_label
775
+ LABL_PTR_2: esa_step
776
+
777
+ lo-counters-aggregated-APDOnly:
778
+ <<: *events
779
+ CATDESC: APD Only
780
+ FIELDNAM: Event L - APD Only
781
+ DEPEND_1: spin_sector_pairs
782
+ DEPEND_2: esa_step
783
+ LABL_PTR_1: spin_sector_pairs_label
784
+ LABL_PTR_2: esa_step
785
+
786
+ lo-counters-aggregated-LowTOFCutoff:
787
+ <<: *events
788
+ CATDESC: Low TOF Cutoff
789
+ FIELDNAM: Low TOF Cutoff
790
+ DEPEND_1: spin_sector_pairs
791
+ DEPEND_2: esa_step
792
+ LABL_PTR_1: spin_sector_pairs_label
793
+ LABL_PTR_2: esa_step
794
+
795
+ lo-counters-aggregated-STA:
796
+ <<: *events
797
+ CATDESC: Start A
798
+ FIELDNAM: Singles - Start-A (STA)
799
+ DEPEND_1: spin_sector_pairs
800
+ DEPEND_2: esa_step
801
+ LABL_PTR_1: spin_sector_pairs_label
802
+ LABL_PTR_2: esa_step
803
+
804
+ lo-counters-aggregated-STB:
805
+ <<: *events
806
+ CATDESC: Start B
807
+ FIELDNAM: Singles - Start-B (STB)
808
+ DEPEND_1: spin_sector_pairs
809
+ DEPEND_2: esa_step
810
+ LABL_PTR_1: spin_sector_pairs_label
811
+ LABL_PTR_2: esa_step
812
+
813
+ lo-counters-aggregated-SP:
814
+ <<: *events
815
+ CATDESC: Stop
816
+ FIELDNAM: Singles - Stop (SP)
817
+ DEPEND_1: spin_sector_pairs
818
+ DEPEND_2: esa_step
819
+ LABL_PTR_1: spin_sector_pairs_label
820
+ LABL_PTR_2: esa_step
821
+
822
+ lo-counters-aggregated-TotalPositionCount:
823
+ <<: *events
824
+ CATDESC: Total Position Count
825
+ FIELDNAM: Singles - Total Position Count
826
+ DEPEND_1: spin_sector_pairs
827
+ DEPEND_2: esa_step
828
+ LABL_PTR_1: spin_sector_pairs_label
829
+ LABL_PTR_2: esa_step
830
+
831
+ lo-counters-aggregated-InvalidPositionCount:
832
+ <<: *events
833
+ CATDESC: Invalid Position Count
834
+ FIELDNAM: Singles - Invalid Position Count
835
+ DEPEND_1: spin_sector_pairs
836
+ DEPEND_2: esa_step
837
+ LABL_PTR_1: spin_sector_pairs_label
838
+ LABL_PTR_2: esa_step
839
+
840
+ lo-counters-aggregated-ASIC1FlagInvalid:
841
+ <<: *events
842
+ CATDESC: ASIC 1 Flag Invalid
843
+ FIELDNAM: ASIC 1 Flag Invalid Count
844
+ DEPEND_1: spin_sector_pairs
845
+ DEPEND_2: esa_step
846
+ LABL_PTR_1: spin_sector_pairs_label
847
+ LABL_PTR_2: esa_step
848
+
849
+ lo-counters-aggregated-ASIC2FlagInvalid:
850
+ <<: *events
851
+ CATDESC: ASIC 2 Flag Invalid
852
+ FIELDNAM: ASIC 2 Flag Invalid Count
853
+ DEPEND_1: spin_sector_pairs
854
+ DEPEND_2: esa_step
855
+ LABL_PTR_1: spin_sector_pairs_label
856
+ LABL_PTR_2: esa_step
857
+
858
+ lo-counters-aggregated-ASIC1ChannelInvalid:
859
+ <<: *events
860
+ CATDESC: ASIC 1 Channel Invalid
861
+ FIELDNAM: ASIC 1 Channel Invalid Count
862
+ DEPEND_1: spin_sector_pairs
863
+ DEPEND_2: esa_step
864
+ LABL_PTR_1: spin_sector_pairs_label
865
+ LABL_PTR_2: esa_step
866
+
867
+ lo-counters-aggregated-ASIC2ChannelInvalid:
868
+ <<: *events
869
+ CATDESC: ASIC 2 Channel Invalid
870
+ FIELDNAM: ASIC 2 Channel Invalid Count
871
+ DEPEND_1: spin_sector_pairs
872
+ DEPEND_2: esa_step
873
+ LABL_PTR_1: spin_sector_pairs_label
874
+ LABL_PTR_2: esa_step
875
+
876
+ lo-counters-aggregated-TEC4TimeoutTOFNoPos:
877
+ <<: *events
878
+ CATDESC: TEC-4 Timeout TOF no Position
879
+ FIELDNAM: TEC-4 Timeout Count; TOF, No Position
880
+ DEPEND_1: spin_sector_pairs
881
+ DEPEND_2: esa_step
882
+ LABL_PTR_1: spin_sector_pairs_label
883
+ LABL_PTR_2: esa_step
884
+
885
+ lo-counters-aggregated-TEC4TimeoutPosNoTOF:
886
+ <<: *events
887
+ CATDESC: TEC-4 Timeout Position no TOF
888
+ FIELDNAM: TEC-4 Timeout Count; Position, No TOF
889
+ DEPEND_1: spin_sector_pairs
890
+ DEPEND_2: esa_step
891
+ LABL_PTR_1: spin_sector_pairs_label
892
+ LABL_PTR_2: esa_step
893
+
894
+ lo-counters-aggregated-TEC4TimeoutNoPosTOF:
895
+ <<: *events
896
+ CATDESC: TEC-4 Timeout No Position or TOF
897
+ FIELDNAM: TEC-4 Timeout Count; No Position or TOF
898
+ DEPEND_1: spin_sector_pairs
899
+ DEPEND_2: esa_step
900
+ LABL_PTR_1: spin_sector_pairs_label
901
+ LABL_PTR_2: esa_step
902
+
903
+ lo-counters-aggregated-TEC5TimeoutTOFNoPos:
904
+ <<: *events
905
+ CATDESC: TEC-5 Timeout TOF no Position
906
+ FIELDNAM: TEC-5 Timeout Count; TOF, No Position
907
+ DEPEND_1: spin_sector_pairs
908
+ DEPEND_2: esa_step
909
+ LABL_PTR_1: spin_sector_pairs_label
910
+ LABL_PTR_2: esa_step
911
+
912
+ lo-counters-aggregated-TEC5TimeoutPosNoTOF:
913
+ <<: *events
914
+ CATDESC: TEC-5 Timeout Position no TOF
915
+ FIELDNAM: TEC-5 Timeout Count; Position, No TOF
916
+ DEPEND_1: spin_sector_pairs
917
+ DEPEND_2: esa_step
918
+ LABL_PTR_1: spin_sector_pairs_label
919
+ LABL_PTR_2: esa_step
920
+
921
+ lo-counters-aggregated-TEC5TimeoutNoPosTOF:
922
+ <<: *events
923
+ CATDESC: TEC-5 Timeout No Position or TOF
924
+ FIELDNAM: TEC-5 Timeout Count; No Position or TOF
925
+ DEPEND_1: spin_sector_pairs
926
+ DEPEND_2: esa_step
927
+ LABL_PTR_1: spin_sector_pairs_label
928
+ LABL_PTR_2: esa_step
201
929
 
202
930
  # lo-counters-singles
203
- lo_counters_singles-apd_singles:
931
+ lo-counters-singles-apd_singles:
204
932
  <<: *counters
205
933
  CATDESC: Single Rates (APD)
206
934
  FIELDNAM: Rates - Single (APD)
935
+ DEPEND_1: inst_az
936
+ DEPEND_2: spin_sector_pairs
937
+ DEPEND_3: esa_step
938
+ LABL_PTR_1: inst_az
939
+ LABL_PTR_2: spin_sector_pairs_label
940
+ LABL_PTR_3: esa_step
207
941
 
208
942
  # lo-sw-angular
209
- lo_sw_angular-hplus:
943
+ lo-sw-angular-hplus:
210
944
  <<: *counters
211
945
  CATDESC: Sunward H+ Species
212
946
  FIELDNAM: SW - H+
947
+ DEPEND_1: inst_az
948
+ DEPEND_2: spin_sector
949
+ DEPEND_3: esa_step
950
+ LABL_PTR_1: inst_az
951
+ LABL_PTR_2: spin_sector
952
+ LABL_PTR_3: esa_step
213
953
 
214
- lo_sw_angular-heplusplus:
954
+ lo-sw-angular-heplusplus:
215
955
  <<: *counters
216
956
  CATDESC: Sunward He++ Species
217
957
  FIELDNAM: SW - He++
958
+ DEPEND_1: inst_az
959
+ DEPEND_2: spin_sector
960
+ DEPEND_3: esa_step
961
+ LABL_PTR_1: inst_az
962
+ LABL_PTR_2: spin_sector
963
+ LABL_PTR_3: esa_step
218
964
 
219
- lo_sw_angular-oplus6:
965
+ lo-sw-angular-oplus6:
220
966
  <<: *counters
221
967
  CATDESC: Sunward O+6 Species
222
968
  FIELDNAM: SW - O+6
969
+ DEPEND_1: inst_az
970
+ DEPEND_2: spin_sector
971
+ DEPEND_3: esa_step
972
+ LABL_PTR_1: inst_az
973
+ LABL_PTR_2: spin_sector
974
+ LABL_PTR_3: esa_step
223
975
 
224
- lo_sw_angular-fe_loq:
976
+ lo-sw-angular-fe_loq:
225
977
  <<: *counters
226
978
  CATDESC: Sunward Fe lowQ Species
227
979
  FIELDNAM: SW - Fe lowQ
980
+ DEPEND_1: inst_az
981
+ DEPEND_2: spin_sector
982
+ DEPEND_3: esa_step
983
+ LABL_PTR_1: inst_az
984
+ LABL_PTR_2: spin_sector
985
+ LABL_PTR_3: esa_step
228
986
 
229
- lo_nsw_angular-heplusplus:
987
+ lo-nsw-angular-heplusplus:
230
988
  <<: *counters
231
989
  CATDESC: Non-sunward He++ Species
232
990
  FIELDNAM: NSW - He++
991
+ DEPEND_1: inst_az
992
+ DEPEND_2: spin_sector
993
+ DEPEND_3: esa_step
994
+ LABL_PTR_1: inst_az
995
+ LABL_PTR_2: spin_sector
996
+ LABL_PTR_3: esa_step
233
997
 
234
998
  # lo-sw-priority
235
- lo_sw_priority-p0_tcrs:
999
+ lo-sw-priority-p0_tcrs:
236
1000
  <<: *counters
237
1001
  CATDESC: Sunward Sector Triple Coincidence Pickup Ions Priority
238
1002
  FIELDNAM: SW Sector Triple Coincidence PUI's
1003
+ LABL_PTR_1: spin_sector
1004
+ LABL_PTR_2: esa_step
239
1005
 
240
- lo_sw_priority-p1_hplus:
1006
+ lo-sw-priority-p1_hplus:
241
1007
  <<: *counters
242
1008
  CATDESC: Sunward Sector H+ Priority
243
1009
  FIELDNAM: SW Sector H+
1010
+ LABL_PTR_1: spin_sector
1011
+ LABL_PTR_2: esa_step
244
1012
 
245
- lo_sw_priority-p2_heplusplus:
1013
+ lo-sw-priority-p2_heplusplus:
246
1014
  <<: *counters
247
1015
  CATDESC: Sunward Sector He++ Priority
248
1016
  FIELDNAM: SW Sector He++
1017
+ LABL_PTR_1: spin_sector
1018
+ LABL_PTR_2: esa_step
249
1019
 
250
- lo_sw_priority-p3_heavies:
1020
+ lo-sw-priority-p3_heavies:
251
1021
  <<: *counters
252
1022
  CATDESC: Sunward Sector High Charge State Heavies Priority
253
1023
  FIELDNAM: SW Sector High Charge State Heavies
1024
+ LABL_PTR_1: spin_sector
1025
+ LABL_PTR_2: esa_step
254
1026
 
255
- lo_sw_priority-p4_dcrs:
1027
+ lo-sw-priority-p4_dcrs:
256
1028
  <<: *counters
257
1029
  CATDESC: Sunward Sector Double Coincidence Pickup Ions Priority
258
1030
  FIELDNAM: SW Sector Double Coincidence PUI's
1031
+ LABL_PTR_1: spin_sector
1032
+ LABL_PTR_2: esa_step
259
1033
 
260
1034
  # lo-nsw-priority
261
- lo_nsw_priority-p5_heavies:
1035
+ lo-nsw-priority-p5_heavies:
262
1036
  <<: *counters
263
1037
  CATDESC: Non-sunward Sector Heavies Priority
264
1038
  FIELDNAM: NSW Sector Heavies
1039
+ LABL_PTR_1: spin_sector
1040
+ LABL_PTR_2: esa_step
265
1041
 
266
- lo_nsw_priority-p6_hplus_heplusplus:
1042
+ lo-nsw-priority-p6_hplus_heplusplus:
267
1043
  <<: *counters
268
1044
  CATDESC: Non-sunward H+ and He++ Priority
269
1045
  FIELDNAM: NSW H+ and He++
1046
+ LABL_PTR_1: spin_sector
1047
+ LABL_PTR_2: esa_step
270
1048
 
271
1049
  # lo-sw-species
272
- lo_sw_species-hplus:
1050
+ lo-sw-species-hplus:
273
1051
  <<: *counters
274
1052
  CATDESC: H+ Sunward Species
275
1053
  FIELDNAM: SW - H+
1054
+ LABL_PTR_1: spin_sector
1055
+ LABL_PTR_2: esa_step
276
1056
 
277
- lo_sw_species-heplusplus:
1057
+ lo-sw-species-heplusplus:
278
1058
  <<: *counters
279
1059
  CATDESC: He++ Sunward Species
280
1060
  FIELDNAM: SW - He++
1061
+ LABL_PTR_1: spin_sector
1062
+ LABL_PTR_2: esa_step
281
1063
 
282
- lo_sw_species-cplus4:
1064
+ lo-sw-species-cplus4:
283
1065
  <<: *counters
284
1066
  CATDESC: C+4 Sunward Species
285
1067
  FIELDNAM: SW - C+4
1068
+ LABL_PTR_1: spin_sector
1069
+ LABL_PTR_2: esa_step
286
1070
 
287
- lo_sw_species-cplus5:
1071
+ lo-sw-species-cplus5:
288
1072
  <<: *counters
289
1073
  CATDESC: C+5 Sunward Species
290
1074
  FIELDNAM: SW - C+5
1075
+ LABL_PTR_1: spin_sector
1076
+ LABL_PTR_2: esa_step
291
1077
 
292
- lo_sw_species-cplus6:
1078
+ lo-sw-species-cplus6:
293
1079
  <<: *counters
294
1080
  CATDESC: C+6 Sunward Species
295
1081
  FIELDNAM: SW - C+6
1082
+ LABL_PTR_1: spin_sector
1083
+ LABL_PTR_2: esa_step
296
1084
 
297
- lo_sw_species-oplus5:
1085
+ lo-sw-species-oplus5:
298
1086
  <<: *counters
299
1087
  CATDESC: O+5 Sunward Species
300
1088
  FIELDNAM: SW - O+5
1089
+ LABL_PTR_1: spin_sector
1090
+ LABL_PTR_2: esa_step
301
1091
 
302
- lo_sw_species-oplus6:
1092
+ lo-sw-species-oplus6:
303
1093
  <<: *counters
304
1094
  CATDESC: O+6 Sunward Species
305
1095
  FIELDNAM: SW - O+6
1096
+ LABL_PTR_1: spin_sector
1097
+ LABL_PTR_2: esa_step
306
1098
 
307
- lo_sw_species-oplus7:
1099
+ lo-sw-species-oplus7:
308
1100
  <<: *counters
309
1101
  CATDESC: O+7 Sunward Species
310
1102
  FIELDNAM: SW - O+7
1103
+ LABL_PTR_1: spin_sector
1104
+ LABL_PTR_2: esa_step
311
1105
 
312
- lo_sw_species-oplus8:
1106
+ lo-sw-species-oplus8:
313
1107
  <<: *counters
314
1108
  CATDESC: O+8 Sunward Species
315
1109
  FIELDNAM: SW - O+8
1110
+ LABL_PTR_1: spin_sector
1111
+ LABL_PTR_2: esa_step
316
1112
 
317
- lo_sw_species-ne:
1113
+ lo-sw-species-ne:
318
1114
  <<: *counters
319
1115
  CATDESC: Ne Sunward Species
320
1116
  FIELDNAM: SW - Ne
1117
+ LABL_PTR_1: spin_sector
1118
+ LABL_PTR_2: esa_step
321
1119
 
322
- lo_sw_species-mg:
1120
+ lo-sw-species-mg:
323
1121
  <<: *counters
324
1122
  CATDESC: Mg Sunward Species
325
1123
  FIELDNAM: SW - Mg
1124
+ LABL_PTR_1: spin_sector
1125
+ LABL_PTR_2: esa_step
326
1126
 
327
- lo_sw_species-si:
1127
+ lo-sw-species-si:
328
1128
  <<: *counters
329
1129
  CATDESC: Si Sunward Species
330
1130
  FIELDNAM: SW - Si
1131
+ LABL_PTR_1: spin_sector
1132
+ LABL_PTR_2: esa_step
331
1133
 
332
- lo_sw_species-fe_loq:
1134
+ lo-sw-species-fe_loq:
333
1135
  <<: *counters
334
1136
  CATDESC: Fe lowQ Sunward Species
335
1137
  FIELDNAM: SW - Fe lowQ
1138
+ LABL_PTR_1: spin_sector
1139
+ LABL_PTR_2: esa_step
336
1140
 
337
- lo_sw_species-fe_hiq:
1141
+ lo-sw-species-fe_hiq:
338
1142
  <<: *counters
339
1143
  CATDESC: Fe highQ Sunward Species
340
1144
  FIELDNAM: SW - Fe highQ
1145
+ LABL_PTR_1: spin_sector
1146
+ LABL_PTR_2: esa_step
341
1147
 
342
- lo_sw_species-heplus:
1148
+ lo-sw-species-heplus:
343
1149
  <<: *counters
344
1150
  CATDESC: He+ Pickup Ion Sunward Species
345
1151
  FIELDNAM: SW - He+ (PUI)
1152
+ LABL_PTR_1: spin_sector
1153
+ LABL_PTR_2: esa_step
346
1154
 
347
- lo_sw_species-cnoplus:
1155
+ lo-sw-species-cnoplus:
348
1156
  <<: *counters
349
1157
  CATDESC: CNO+ Pickup Ion Sunward Species
350
1158
  FIELDNAM: SW - CNO+ (PUI)
1159
+ LABL_PTR_1: spin_sector
1160
+ LABL_PTR_2: esa_step
351
1161
 
352
1162
  # lo-nsw-species
353
- lo_nsw_species-hplus:
1163
+ lo-nsw-species-hplus:
354
1164
  <<: *counters
355
1165
  CATDESC: H+ Non-sunward Species
356
1166
  FIELDNAM: NSW - H+
1167
+ LABL_PTR_1: spin_sector
1168
+ LABL_PTR_2: esa_step
357
1169
 
358
- lo_nsw_species-heplusplus:
1170
+ lo-nsw-species-heplusplus:
359
1171
  <<: *counters
360
1172
  CATDESC: He++ Non-sunward Species
361
1173
  FIELDNAM: NSW - He++
1174
+ LABL_PTR_1: spin_sector
1175
+ LABL_PTR_2: esa_step
362
1176
 
363
- lo_nsw_species-c:
1177
+ lo-nsw-species-c:
364
1178
  <<: *counters
365
1179
  CATDESC: C Non-sunward Species
366
1180
  FIELDNAM: NSW - C
1181
+ LABL_PTR_1: spin_sector
1182
+ LABL_PTR_2: esa_step
367
1183
 
368
- lo_nsw_species-o:
1184
+ lo-nsw-species-o:
369
1185
  <<: *counters
370
1186
  CATDESC: O Non-sunward Species
371
1187
  FIELDNAM: NSW - O
1188
+ LABL_PTR_1: spin_sector
1189
+ LABL_PTR_2: esa_step
372
1190
 
373
- lo_nsw_species-ne_si_mg:
1191
+ lo-nsw-species-ne_si_mg:
374
1192
  <<: *counters
375
1193
  CATDESC: Ne-Si-Mg Non-sunward Species
376
1194
  FIELDNAM: NSW - Ne_Si_Mg
1195
+ LABL_PTR_1: spin_sector
1196
+ LABL_PTR_2: esa_step
377
1197
 
378
- lo_nsw_species-fe:
1198
+ lo-nsw-species-fe:
379
1199
  <<: *counters
380
1200
  CATDESC: Fe Non-sunward Species
381
1201
  FIELDNAM: NSW - Fe
1202
+ LABL_PTR_1: spin_sector
1203
+ LABL_PTR_2: esa_step
382
1204
 
383
- lo_nsw_species-heplus:
1205
+ lo-nsw-species-heplus:
384
1206
  <<: *counters
385
1207
  CATDESC: He+ Non-sunward Species
386
1208
  FIELDNAM: NSW - He+
1209
+ LABL_PTR_1: spin_sector
1210
+ LABL_PTR_2: esa_step
387
1211
 
388
- lo_nsw_species-cnoplus:
1212
+ lo-nsw-species-cnoplus:
389
1213
  <<: *counters
390
1214
  CATDESC: CNO+ Non-sunward Species
391
- FIELDNAM: NSW - CNO+
1215
+ FIELDNAM: NSW - CNO+
1216
+ LABL_PTR_1: spin_sector
1217
+ LABL_PTR_2: esa_step
1218
+
1219
+ # <=== CCSDS Header Attributes ===>
1220
+ version:
1221
+ <<: *hskp_default
1222
+ CATDESC: CCSDS Packet Version Number (always 0)
1223
+ FIELDNAM: Version
1224
+ LABLAXIS: VERSION
1225
+
1226
+ type:
1227
+ <<: *hskp_default
1228
+ CATDESC: CCSDS Packet Type Indicator (0=telemetry)
1229
+ FIELDNAM: Type
1230
+ LABLAXIS: TYPE
1231
+
1232
+ sec_hdr_flg:
1233
+ <<: *hskp_default
1234
+ CATDESC: CCSDS Packet Secondary Header Flag (always 1)
1235
+ FIELDNAM: Secondary Header Flag
1236
+ LABLAXIS: SEC_HDR_FLG
1237
+
1238
+ pkt_apid:
1239
+ <<: *hskp_default
1240
+ CATDESC: CCSDS Packet Application Process ID
1241
+ FIELDNAM: Packet APID
1242
+ LABLAXIS: PKT_APID
1243
+
1244
+ seq_flgs:
1245
+ <<: *hskp_default
1246
+ CATDESC: CCSDS Packet Grouping Flags (3=not part of group)
1247
+ FIELDNAM: Grouping Flags
1248
+ LABLAXIS: SEQ_FLGS
1249
+
1250
+ src_seq_ctr:
1251
+ <<: *hskp_default
1252
+ CATDESC: CCSDS Packet Sequence Count (increments with each new packet)
1253
+ FIELDNAM: Packet Sequence Count
1254
+ LABLAXIS: SRC_SEQ_CTR
1255
+
1256
+ pkt_len:
1257
+ <<: *hskp_default
1258
+ CATDESC: CCSDS Packet Length (number of bytes after Packet length minus 1)
1259
+ FIELDNAM: Packet Length
1260
+ LABLAXIS: PKT_LEN
1261
+
1262
+ shcoarse:
1263
+ <<: *hskp_default
1264
+ CATDESC: Secondary Header - Whole-seconds part of SCLK
1265
+ FIELDNAM: S/C Time - Seconds
1266
+ LABLAXIS: SHCOARSE
1267
+
1268
+ packet_version:
1269
+ <<: *hskp_default
1270
+ CATDESC: Packet Version
1271
+ FIELDNAM: Packet Version
1272
+ LABLAXIS: PACKET_VERSION
1273
+ VAR_NOTES: Packet version - this will be incremented each time the format of the packet changes.
1274
+
1275
+ chksum:
1276
+ <<: *hskp_default
1277
+ CATDESC: Packet Checksum
1278
+ LABLAXIS: CHKSUM
1279
+ FIELDNAM: Packet Checksum
1280
+
1281
+ # <=== Housekeeping Attributes ===>
1282
+ cmdexe:
1283
+ <<: *hskp_default
1284
+ LABLAXIS: CMDEXE
1285
+ FIELDNAM: Number of commands executed
1286
+ CATDESC: Number of commands executed. See VAR_NOTES for more details.
1287
+ VAR_NOTES: Number of commands that have been executed. Counts 0-255, then rolls over to 0. Reset via CLR_LATCHED_SINGLE(COMMAND_COUNTS) [also resets cmdjrct, cmdacc, itf_error counts)
1288
+
1289
+ cmdrjct:
1290
+ <<: *hskp_default
1291
+ LABLAXIS: CMDRJCT
1292
+ FIELDNAM: Number of commands rejected
1293
+ CATDESC: Number of commands rejected. See VAR_NOTES for more details.
1294
+ VAR_NOTES: Number of commands that have been rejected. Counts 0-255, then rolls over to 0. Reset via CLR_LATCHED_SINGLE(COMMAND_COUNTS) [also resets cmdexe, cmdacc, itf_error counts)
1295
+
1296
+ last_opcode:
1297
+ <<: *hskp_default
1298
+ LABLAXIS: LAST_OPCODE
1299
+ FIELDNAM: Last executed opcode
1300
+ CATDESC: Opcode of the last executed command
1301
+
1302
+ mode:
1303
+ <<: *hskp_default
1304
+ LABLAXIS: MODE
1305
+ FIELDNAM: Instrument Mode
1306
+ CATDESC: Current operating mode
1307
+
1308
+ memop_state:
1309
+ <<: *hskp_default
1310
+ LABLAXIS: MEMOP_STATE
1311
+ FIELDNAM: Memory Operation State
1312
+ CATDESC: State of the memory-operations handler
1313
+
1314
+ memdump_state:
1315
+ <<: *hskp_default
1316
+ LABLAXIS: MEMDUMP_STATE
1317
+ FIELDNAM: Memory Dump State
1318
+ CATDESC: State of the memory-dump handler (busy/idle)
1319
+
1320
+ itf_err_cnt:
1321
+ <<: *hskp_default
1322
+ LABLAXIS: ITF_ERR_CNT
1323
+ FIELDNAM: Number of ITF errors encountered
1324
+ CATDESC: Number of ITF Errors detected. See VAR_NOTES for more details.
1325
+ VAR_NOTES: Number of ITF Errors that have been detected; counts 0-3, then rolls over to 0. Reset via CLR_LATCHED_SINGLE(COMMAND_COUNTS) [also resets cmdexe, cmdjrct, cmdacc counts)
1326
+
1327
+ spin_cnt:
1328
+ <<: *hskp_default
1329
+ LABLAXIS: SPIN_CNT
1330
+ FIELDNAM: Number of spin pulses received
1331
+ CATDESC: Number of spin pulses received
1332
+
1333
+ missed_pps_cnt:
1334
+ <<: *hskp_default
1335
+ LABLAXIS: MISSED_PPS_CNT
1336
+ FIELDNAM: Number of missed PPS pulses
1337
+ CATDESC: Number of missed PPS pulses. See VAR_NOTES for more details.
1338
+ VAR_NOTES: Number of missed PPS pulses. Counts 0-3, then freezes at 3. Reset via CLR_LATCHED_SINGLE(PPS_STATS)
1339
+
1340
+ wdog_timeout_cnt:
1341
+ <<: *hskp_default
1342
+ LABLAXIS: WDOG_TIMEOUT_CNT
1343
+ FIELDNAM: Number of watchdog timeouts since last reset
1344
+ CATDESC: Number of times the watchdog has timed out.
1345
+
1346
+ hv_plug:
1347
+ <<: *hskp_default
1348
+ LABLAXIS: HV_PLUG
1349
+ FIELDNAM: Status of the HV Disable Plug
1350
+ CATDESC: Status of the HV plugs. See VAR_NOTES for more details.
1351
+ VAR_NOTES: Current status of the HV SAFE/DISABLE plugs -- "SAFE" - all HVPS outputs provide 1/10 the commanded voltage; "DIS" - all HVPS outputs provide 0V, regardless of commanded voltage; "FULL" - HVPS outputs provide the full commanded voltage
1352
+
1353
+ cmd_fifo_overrun_cnt:
1354
+ <<: *hskp_default
1355
+ LABLAXIS: CMD_FIFO_OVERRUN_CNT
1356
+ FIELDNAM: Number of Command FIFO Overruns
1357
+ CATDESC: Number of Command FIFO Overruns
1358
+
1359
+ cmd_fifo_underrun_cnt:
1360
+ <<: *hskp_default
1361
+ LABLAXIS: CMD_FIFO_UNDERRUN_CNT
1362
+ FIELDNAM: Number of Command FIFO Underruns
1363
+ CATDESC: Number of Command FIFO Underruns
1364
+
1365
+ cmd_fifo_parity_err_cnt:
1366
+ <<: *hskp_default
1367
+ LABLAXIS: CMD_FIFO_PARITY_ERR_CNT
1368
+ FIELDNAM: Number of Command FIFO Parity Errors
1369
+ CATDESC: Number of Command FIFO Parity Errors
1370
+
1371
+ cmd_fifo_frame_err_cnt:
1372
+ <<: *hskp_default
1373
+ LABLAXIS: CMD_FIFO_FRAME_ERR_CNT
1374
+ FIELDNAM: Number of Command FIFO Frame Errors
1375
+ CATDESC: Number of Command FIFO Frame Errors
1376
+
1377
+ tlm_fifo_overrun_cnt:
1378
+ <<: *hskp_default
1379
+ LABLAXIS: TLM_FIFO_OVERRUN_CNT
1380
+ FIELDNAM: Number of Telemetry FIFO Overruns
1381
+ CATDESC: Number of Telemetry FIFO Overruns
1382
+
1383
+ spin_bin_period:
1384
+ <<: *hskp_default
1385
+ LABLAXIS: SPIN_BIN_PERIOD
1386
+ FIELDNAM: Spin Bin Period
1387
+ CATDESC: Spin Bin Period
1388
+
1389
+ spin_period_timer:
1390
+ <<: *hskp_default
1391
+ LABLAXIS: SPIN_PERIOD_TIMER
1392
+ FIELDNAM: Spin Period Timer
1393
+ CATDESC: Spin Period Timer
1394
+
1395
+ spin_timestamp_seconds:
1396
+ <<: *hskp_default
1397
+ LABLAXIS: SPIN_TIMESTAMP_SECONDS
1398
+ FIELDNAM: Full-seconds timestamp of the most recent spin pulse
1399
+ CATDESC: Full-seconds timestamp of the most recent spin pulse
1400
+
1401
+ spin_timestamp_subseconds:
1402
+ <<: *hskp_default
1403
+ LABLAXIS: SPIN_TIMESTAMP_SUBSECONDS
1404
+ FIELDNAM: Sub-seconds timestamp of the most recent spin pulse
1405
+ CATDESC: Sub-seconds timestamp of the most recent spin pulse
1406
+
1407
+ spin_bin_index:
1408
+ <<: *hskp_default
1409
+ LABLAXIS: SPIN_BIN_INDEX
1410
+ FIELDNAM: Spin Bin Index
1411
+ CATDESC: Spin Bin Index
1412
+
1413
+ optc_hv_cmd_err_cnt:
1414
+ <<: *hskp_default
1415
+ LABLAXIS: OPTICS_HV_CMD_ERR_CNT
1416
+ FIELDNAM: Optics HV - Number of command errors
1417
+ CATDESC: Optics HV - Number of command errors
1418
+
1419
+ spare_1:
1420
+ <<: *hskp_default
1421
+ LABLAXIS: SPARE_1
1422
+ FIELDNAM: Spare for alignment
1423
+ CATDESC: Spare for alignment
1424
+
1425
+ optc_hv_arm_err_cnt:
1426
+ <<: *hskp_default
1427
+ LABLAXIS: OPTICS_HV_ARM_ERR_CNT
1428
+ FIELDNAM: Optics HV - Number of arm errors
1429
+ CATDESC: Optics HV - Number of arm errors
1430
+
1431
+ optc_hv_master_en:
1432
+ <<: *hskp_default
1433
+ LABLAXIS: OPTICS_HV_MASTER_ENABLE
1434
+ FIELDNAM: Optics HV - Master Enable
1435
+ CATDESC: Optics HV - Master Enable
1436
+
1437
+ iobulk_en:
1438
+ <<: *hskp_default
1439
+ LABLAXIS: OPTICS_HV_P15KV_ENABLE
1440
+ FIELDNAM: Optics HV - P15KV Enable
1441
+ CATDESC: Optics HV - P15KV Enable
1442
+
1443
+ esab_en:
1444
+ <<: *hskp_default
1445
+ LABLAXIS: OPTICS_HV_ESAB_ENABLE
1446
+ FIELDNAM: Optics HV - ESA B Enable
1447
+ CATDESC: Optics HV - ESA B Enable
1448
+
1449
+ spare_2:
1450
+ <<: *hskp_default
1451
+ LABLAXIS: SPARE_2
1452
+ FIELDNAM: Spare (was Optics HV - ESA B Range)
1453
+ CATDESC: Spare (was Optics HV - ESA B Range)
1454
+
1455
+ esaa_en:
1456
+ <<: *hskp_default
1457
+ LABLAXIS: OPTICS_HV_ESAA_ENABLE
1458
+ FIELDNAM: Optics HV - ESA A Enable
1459
+ CATDESC: Optics HV - ESA A Enable
1460
+
1461
+ spare_3:
1462
+ <<: *hskp_default
1463
+ LABLAXIS: SPARE_3
1464
+ FIELDNAM: Spare (was Optics HV - ESA A Range)
1465
+ CATDESC: Spare (was Optics HV - ESA A Range)
1466
+
1467
+ snsr_hv_cmd_err_cnt:
1468
+ <<: *hskp_default
1469
+ LABLAXIS: SENSOR_HV_CMD_ERR_CNT
1470
+ FIELDNAM: Sensor HV - Number of command errors
1471
+ CATDESC: Sensor HV - Number of command errors
1472
+
1473
+ snsr_hv_arm_err_cnt:
1474
+ <<: *hskp_default
1475
+ LABLAXIS: SENSOR_HV_ARM_ERR_CNT
1476
+ FIELDNAM: Sensor HV - Number of Arm errors
1477
+ CATDESC: Sensor HV - Number of Arm errors
1478
+
1479
+ snsr_hv_master_en:
1480
+ <<: *hskp_default
1481
+ LABLAXIS: SENSOR_HV_MASTER_ENABLE
1482
+ FIELDNAM: Sensor HV - Master Enable
1483
+ CATDESC: Sensor HV - Master Enable
1484
+
1485
+ apdb_en:
1486
+ <<: *hskp_default
1487
+ LABLAXIS: SENSOR_HV_APD_BIAS_ENABLE
1488
+ FIELDNAM: Sensor HV - APD Bias Enable
1489
+ CATDESC: Sensor HV - APD Bias Enable
1490
+
1491
+ sbulk_en:
1492
+ <<: *hskp_default
1493
+ LABLAXIS: SENSOR_HV_P6KV_ENABLE
1494
+ FIELDNAM: Sensor HV - p6KV Enable
1495
+ CATDESC: Sensor HV - p6KV Enable
1496
+
1497
+ stpmcp_en:
1498
+ <<: *hskp_default
1499
+ LABLAXIS: SENSOR_HV_STOP_MCP_ENABLE
1500
+ FIELDNAM: Sensor HV - Stop MCP Enable
1501
+ CATDESC: Sensor HV - Stop MCP Enable
1502
+
1503
+ strmcp_en:
1504
+ <<: *hskp_default
1505
+ LABLAXIS: SENSOR_HV_START_MCP_ENABLE
1506
+ FIELDNAM: Sensor HV - Start MCP Enable
1507
+ CATDESC: Sensor HV - Start MCP Enable
1508
+
1509
+ spare_4:
1510
+ <<: *hskp_default
1511
+ LABLAXIS: SPARE_4
1512
+ FIELDNAM: Spare for alignment
1513
+ CATDESC: Spare for alignment
1514
+
1515
+ esaa_dac:
1516
+ <<: *hskp_default
1517
+ LABLAXIS: OPTICS_HV_DAC_ESA_A
1518
+ FIELDNAM: Optics HV - ESA A DAC
1519
+ CATDESC: Optics HV - ESA A DAC
1520
+
1521
+ esab_dac:
1522
+ <<: *hskp_default
1523
+ LABLAXIS: OPTICS_HV_DAC_ESA_B
1524
+ FIELDNAM: Optics HV - ESA B DAC
1525
+ CATDESC: Optics HV - ESA B DAC
1526
+
1527
+ iobulk_dac:
1528
+ <<: *hskp_default
1529
+ LABLAXIS: OPTICS_HV_DAC_IONBULK
1530
+ FIELDNAM: Optics HV - Ion Bulk DAC
1531
+ CATDESC: Optics HV - Ion Bulk DAC
1532
+
1533
+ ssdo_dac:
1534
+ <<: *hskp_default
1535
+ LABLAXIS: SENSOR_HV_DAC_SSDO
1536
+ FIELDNAM: Sensor HV - SSDO Enable
1537
+ CATDESC: Sensor HV - SSDO Enable
1538
+
1539
+ ssdb_dac:
1540
+ <<: *hskp_default
1541
+ LABLAXIS: SENSOR_HV_DAC_SSDB
1542
+ FIELDNAM: Sensor HV - SSD Bias Enable
1543
+ CATDESC: Sensor HV - SSD Bias Enable
1544
+
1545
+ apdb_dac:
1546
+ <<: *hskp_default
1547
+ LABLAXIS: SENSOR_HV_DAC_APDB
1548
+ FIELDNAM: Sensor HV - ADP Bias Enable
1549
+ CATDESC: Sensor HV - ADP Bias Enable
1550
+
1551
+ apdb2_dac:
1552
+ <<: *hskp_default
1553
+ LABLAXIS: SENSOR_HV_DAC_APDB2
1554
+ FIELDNAM: Sensor HV - ADP Bias 2 Enable
1555
+ CATDESC: Sensor HV - ADP Bias 2 Enable
1556
+
1557
+ strmcp_dac:
1558
+ <<: *hskp_default
1559
+ LABLAXIS: SENSOR_HV_DAC_START_MCP
1560
+ FIELDNAM: Sensor HV - Start MCP DAC
1561
+ CATDESC: Sensor HV - Start MCP DAC
1562
+
1563
+ stpmcp_dac:
1564
+ <<: *hskp_default
1565
+ LABLAXIS: SENSOR_HV_DAC_STOP_MCP
1566
+ FIELDNAM: Sensor HV - Stop MCP DAC
1567
+ CATDESC: Sensor HV - Stop MCP DAC
1568
+
1569
+ stpog_dac:
1570
+ <<: *hskp_default
1571
+ LABLAXIS: SENSOR_HV_DAC_STOP_OPTICS_GRID
1572
+ FIELDNAM: Sensor HV - Stop Optics Grid DAC
1573
+ CATDESC: Sensor HV - Stop Optics Grid DAC
1574
+
1575
+ sbulk_vmon:
1576
+ <<: *hskp_default
1577
+ LABLAXIS: SBULK_VMON
1578
+ FIELDNAM: HVPS – V1 -- Sensor Bulk Voltage Monitor
1579
+ CATDESC: HVPS – V1 -- Sensor Bulk Voltage Monitor
1580
+
1581
+ ssdo_vmon:
1582
+ <<: *hskp_default
1583
+ LABLAXIS: SSDO_VMON
1584
+ FIELDNAM: HVPS – V2 -- SSD Optics Voltage Monitor
1585
+ CATDESC: HVPS – V2 -- SSD Optics Voltage Monitor
1586
+
1587
+ ssdb_vmon:
1588
+ <<: *hskp_default
1589
+ LABLAXIS: SSDB_VMON
1590
+ FIELDNAM: HVPS – V3 -- SSD Bias Voltage Monitor
1591
+ CATDESC: HVPS – V3 -- SSD Bias Voltage Monitor
1592
+
1593
+ apdb1_vmon:
1594
+ <<: *hskp_default
1595
+ LABLAXIS: APDB1_VMON
1596
+ FIELDNAM: HVPS – V4 -- APD1 Bias Voltage Monitor
1597
+ CATDESC: HVPS – V4 -- APD1 Bias Voltage Monitor
1598
+
1599
+ apdb2_vmon:
1600
+ <<: *hskp_default
1601
+ LABLAXIS: APDB2_VMON
1602
+ FIELDNAM: HVPS – V5 -- APD1 Bias Voltage Monitor
1603
+ CATDESC: HVPS – V5 -- APD1 Bias Voltage Monitor
1604
+
1605
+ iobulk_vmon:
1606
+ <<: *hskp_default
1607
+ LABLAXIS: IOBULK_VMON
1608
+ FIELDNAM: HVPS – V6 -- IO Bulk Voltage Monitor
1609
+ CATDESC: HVPS – V6 -- IO Bulk Voltage Monitor
1610
+
1611
+ esaa_hi_vmon:
1612
+ <<: *hskp_default
1613
+ LABLAXIS: ESAA_HI_VMON
1614
+ FIELDNAM: HVPS – V7 -- ESA A High Range Voltage Monitor
1615
+ CATDESC: HVPS – V7 -- ESA A High Range Voltage Monitorf
1616
+
1617
+ spare_62:
1618
+ <<: *hskp_default
1619
+ LABLAXIS: SPARE_62
1620
+ FIELDNAM: Spare (was ESAA_LO_VMON)
1621
+ CATDESC: Spare (was ESAA_LO_VMON)
1622
+
1623
+ strmcp_vmon:
1624
+ <<: *hskp_default
1625
+ LABLAXIS: STRMCP_VMON
1626
+ FIELDNAM: HVPS – V9 -- Start MCP Voltage Monitor
1627
+ CATDESC: HVPS – V9 -- Start MCP Voltage Monitor
1628
+
1629
+ stpmcp_vmon:
1630
+ <<: *hskp_default
1631
+ LABLAXIS: STPMCP_VMON
1632
+ FIELDNAM: HVPS – V10 -- Stop MCP Voltage Monitor
1633
+ CATDESC: HVPS – V10 -- Stop MCP Voltage Monitor
1634
+
1635
+ stpog_vmon:
1636
+ <<: *hskp_default
1637
+ LABLAXIS: STPOG_VMON
1638
+ FIELDNAM: HVPS – V11 -- Stop Optics Grid Voltage Monitor
1639
+ CATDESC: HVPS – V11 -- Stop Optics Grid Voltage Monitor
1640
+
1641
+ apdb1_imon:
1642
+ <<: *hskp_default
1643
+ LABLAXIS: APDB1_IMON
1644
+ FIELDNAM: HVPS – V12 -- APD1 Bias Current Monitor
1645
+ CATDESC: HVPS – V12 -- APD1 Bias Current Monitor
1646
+
1647
+ esab_hi_vmon:
1648
+ <<: *hskp_default
1649
+ LABLAXIS: ESAB_HI_VMON
1650
+ FIELDNAM: HVPS – V13 -- ESA A High Range Voltage Monitor
1651
+ CATDESC: HVPS – V13 -- ESA A High Range Voltage Monitor
1652
+
1653
+ spare_68:
1654
+ <<: *hskp_default
1655
+ LABLAXIS: SPARE_68
1656
+ FIELDNAM: Spare (was ESAB_LO_VMON)
1657
+ CATDESC: Spare (was ESAB_LO_VMON)
1658
+
1659
+ apdb2_imon:
1660
+ <<: *hskp_default
1661
+ LABLAXIS: APDB2_IMON
1662
+ FIELDNAM: HVPS – V15 -- APD2 Bias Current Monitor
1663
+ CATDESC: HVPS – V15 -- APD2 Bias Current Monitor
1664
+
1665
+ ssdb_imon:
1666
+ <<: *hskp_default
1667
+ LABLAXIS: SSDB_IMON
1668
+ FIELDNAM: HVPS – V16 -- SSD Bias Current Monitor
1669
+ CATDESC: HVPS – V16 -- SSD Bias Current Monitor
1670
+
1671
+ stpmcp_imon:
1672
+ <<: *hskp_default
1673
+ LABLAXIS: STPMCP_IMON
1674
+ FIELDNAM: HVPS – I1 -- Stop MCP Current Monitor
1675
+ CATDESC: HVPS – I1 -- Stop MCP Current Monitor
1676
+
1677
+ iobulk_imon:
1678
+ <<: *hskp_default
1679
+ LABLAXIS: IOBULK_IMON
1680
+ FIELDNAM: HVPS – I2 -- IO Bulk Current Monitor
1681
+ CATDESC: HVPS – I2 -- IO Bulk Current Monitor
1682
+
1683
+ strmcp_imon:
1684
+ <<: *hskp_default
1685
+ LABLAXIS: STRMCP_IMON
1686
+ FIELDNAM: HVPS – I3 -- Start MCP Current Monitor
1687
+ CATDESC: HVPS – I3 -- Start MCP Current Monitor
1688
+
1689
+ mdm25p_14_t:
1690
+ <<: *hskp_default
1691
+ LABLAXIS: MDM25P_14_T
1692
+ FIELDNAM: System Temperature 1 -- MDM25P – 14 Temperature
1693
+ CATDESC: System Temperature 1 -- MDM25P – 14 Temperature
1694
+
1695
+ mdm25p_15_t:
1696
+ <<: *hskp_default
1697
+ LABLAXIS: MDM25P_15_T
1698
+ FIELDNAM: System Temperature 2 -- MDM25P – 15 Temperature
1699
+ CATDESC: System Temperature 2 -- MDM25P – 15 Temperature
1700
+
1701
+ mdm25p_16_t:
1702
+ <<: *hskp_default
1703
+ LABLAXIS: MDM25P_16_T
1704
+ FIELDNAM: System Temperature 3 -- MDM25P – 16 Temperature
1705
+ CATDESC: System Temperature 3 -- MDM25P – 16 Temperature
1706
+
1707
+ mdm51p_27_t:
1708
+ <<: *hskp_default
1709
+ LABLAXIS: MDM51P_27_T
1710
+ FIELDNAM: LO Temperature -- MDM51P – 27 Temperature
1711
+ CATDESC: LO Temperature -- MDM51P – 27 Temperature
1712
+
1713
+ io_hvps_t:
1714
+ <<: *hskp_default
1715
+ LABLAXIS: IO_HVPS_T
1716
+ FIELDNAM: HVPS Temperature -- IO-HVPS Temperature
1717
+ CATDESC: HVPS Temperature -- IO-HVPS Temperature
1718
+
1719
+ lvps_12v_t:
1720
+ <<: *hskp_default
1721
+ LABLAXIS: LVPS_12V_T
1722
+ FIELDNAM: LVPS Temperature 1 -- LVPS – 12V Temperature
1723
+ CATDESC: LVPS Temperature 1 -- LVPS – 12V Temperature
1724
+
1725
+ lvps_5v_t:
1726
+ <<: *hskp_default
1727
+ LABLAXIS: LVPS_5V_T
1728
+ FIELDNAM: LVPS Temperature 2 -- LVPS – 5V Temperature
1729
+ CATDESC: LVPS Temperature 2 -- LVPS – 5V Temperature
1730
+
1731
+ lvps_3p3v_t:
1732
+ <<: *hskp_default
1733
+ LABLAXIS: LVPS_3P3V_T
1734
+ FIELDNAM: LVPS Temperature 3 -- LVPS – +3.3V Temperature
1735
+ CATDESC: LVPS Temperature 3 -- LVPS – +3.3V Temperature
1736
+
1737
+ lvps_3p3v:
1738
+ <<: *hskp_default
1739
+ LABLAXIS: LVPS_3P3V
1740
+ FIELDNAM: LVPS – Digital V1 -- LVPS – +3.3V
1741
+ CATDESC: LVPS – Digital V1 -- LVPS – +3.3V
1742
+
1743
+ lvps_5v:
1744
+ <<: *hskp_default
1745
+ LABLAXIS: LVPS_5V
1746
+ FIELDNAM: LVPS – Digital V2 -- LVPS – +5V
1747
+ CATDESC: LVPS – Digital V2 -- LVPS – +5V
1748
+
1749
+ lvps_n5v:
1750
+ <<: *hskp_default
1751
+ LABLAXIS: LVPS_N5V
1752
+ FIELDNAM: LVPS – Digital V3 -- LVPS – -5V
1753
+ CATDESC: LVPS – Digital V3 -- LVPS – -5V
1754
+
1755
+ lvps_12v:
1756
+ <<: *hskp_default
1757
+ LABLAXIS: LVPS_12V
1758
+ FIELDNAM: LVPS – Digital V4 -- LVPS – +12V
1759
+ CATDESC: LVPS – Digital V4 -- LVPS – +12V
1760
+
1761
+ lvps_n12v:
1762
+ <<: *hskp_default
1763
+ LABLAXIS: LVPS_N12V
1764
+ FIELDNAM: LVPS – Digital V5 -- LVPS – -12V
1765
+ CATDESC: LVPS – Digital V5 -- LVPS – -12V
1766
+
1767
+ lvps_3p3v_i:
1768
+ <<: *hskp_default
1769
+ LABLAXIS: LVPS_3P3V_I
1770
+ FIELDNAM: LVPS – Digital I1 -- LVPS – +3.3V Current
1771
+ CATDESC: LVPS – Digital I1 -- LVPS – +3.3V Current
1772
+
1773
+ lvps_5v_i:
1774
+ <<: *hskp_default
1775
+ LABLAXIS: LVPS_5V_I
1776
+ FIELDNAM: LVPS – Digital I2 -- LVPS – +5V Current
1777
+ CATDESC: LVPS – Digital I2 -- LVPS – +5V Current
1778
+
1779
+ lvps_n5v_i:
1780
+ <<: *hskp_default
1781
+ LABLAXIS: LVPS_N5V_I
1782
+ FIELDNAM: LVPS – Digital I3 -- LVPS – -5V Current
1783
+ CATDESC: LVPS – Digital I3 -- LVPS – -5V Current
1784
+
1785
+ lvps_12v_i:
1786
+ <<: *hskp_default
1787
+ LABLAXIS: LVPS_12V_I
1788
+ FIELDNAM: LVPS – Digital I4 -- LVPS – +12V Current
1789
+ CATDESC: LVPS – Digital I4 -- LVPS – +12V Current
1790
+
1791
+ lvps_n12v_i:
1792
+ <<: *hskp_default
1793
+ LABLAXIS: LVPS_N12V_I
1794
+ FIELDNAM: LVPS – Digital I5 -- LVPS – -12V Current
1795
+ CATDESC: LVPS – Digital I5 -- LVPS – -12V Current
1796
+
1797
+ cdh_1p5v:
1798
+ <<: *hskp_default
1799
+ LABLAXIS: CDH_1P5V
1800
+ FIELDNAM: CDH – + 1.5V
1801
+ CATDESC: CDH – + 1.5V
1802
+
1803
+ cdh_1p8v:
1804
+ <<: *hskp_default
1805
+ LABLAXIS: CDH_1P8V
1806
+ FIELDNAM: CDH – +1.8V
1807
+ CATDESC: CDH – +1.8V
1808
+
1809
+ cdh_3p3v:
1810
+ <<: *hskp_default
1811
+ LABLAXIS: CDH_3P3V
1812
+ FIELDNAM: CDH – +3.3V
1813
+ CATDESC: CDH – +3.3V
1814
+
1815
+ cdh_12v:
1816
+ <<: *hskp_default
1817
+ LABLAXIS: CDH_12V
1818
+ FIELDNAM: CDH – +12V
1819
+ CATDESC: CDH – +12V
1820
+
1821
+ cdh_n12v:
1822
+ <<: *hskp_default
1823
+ LABLAXIS: CDH_N12V
1824
+ FIELDNAM: CDH – -12V
1825
+ CATDESC: CDH – -12V
1826
+
1827
+ cdh_5v:
1828
+ <<: *hskp_default
1829
+ LABLAXIS: CDH_5V
1830
+ FIELDNAM: CDH – +5V
1831
+ CATDESC: CDH – +5V
1832
+
1833
+ cdh_5v_adc:
1834
+ <<: *hskp_default
1835
+ LABLAXIS: CDH_5V_ADC
1836
+ FIELDNAM: CDH – Analog Ref -- CDH – +5V ADC
1837
+ CATDESC: CDH – Analog Ref -- CDH – +5V ADC
1838
+
1839
+ tbd_hvps_1_if_err_cnt:
1840
+ <<: *hskp_default
1841
+ LABLAXIS: TBD_HVPS_1_IF_ERR_CNT
1842
+ FIELDNAM: TBD - Placeholder for HVPS 1 Interface error counts
1843
+ CATDESC: TBD - Placeholder for HVPS 1 Interface error counts
1844
+
1845
+ tbd_hvps_2_if_err_cnt:
1846
+ <<: *hskp_default
1847
+ LABLAXIS: TBD_HVPS_2_IF_ERR_CNT
1848
+ FIELDNAM: TBD - Placeholder for HVPS 2 Interface error counts
1849
+ CATDESC: TBD - Placeholder for HVPS 2 Interface error counts
1850
+
1851
+ tbd_fee_1_if_err_cnt:
1852
+ <<: *hskp_default
1853
+ LABLAXIS: TBD_FEE_1_IF_ERR_CNT
1854
+ FIELDNAM: TBD - Placeholder for FEE 1 Interface error counts
1855
+ CATDESC: TBD - Placeholder for FEE 1 Interface error counts
1856
+
1857
+ tbd_fee_2_if_err_cnt:
1858
+ <<: *hskp_default
1859
+ LABLAXIS: TBD_FEE_2_IF_ERR_CNT
1860
+ FIELDNAM: TBD - Placeholder for FEE 2 Interface error counts
1861
+ CATDESC: TBD - Placeholder for FEE 2 Interface error counts
1862
+
1863
+ tbd_macro_status:
1864
+ <<: *hskp_default
1865
+ LABLAXIS: TBD_MACRO_STATUS
1866
+ FIELDNAM: TBD - Placeholder for Macro status
1867
+ CATDESC: TBD - Placeholder for Macro status
1868
+
1869
+ fdc_trigger_cnt_fsw:
1870
+ <<: *hskp_default
1871
+ LABLAXIS: FDC_TRIGGER_CNT_FSW
1872
+ FIELDNAM: Indicates whether any CATEGORY 1 limits have triggered
1873
+ CATDESC: Indicates any CATEGORY 1 limits triggered. See VAR_NOTES for more details.
1874
+ VAR_NOTES: Indicates whether any CATEGORY 1 limits have triggered -- 2 bits -- 0=No triggers; 1=One trigger; 2=Two triggers; 3=More than two triggers
1875
+
1876
+ fdc_trigger_cnt_hvps:
1877
+ <<: *hskp_default
1878
+ LABLAXIS: FDC_TRIGGER_CNT_HVPS
1879
+ FIELDNAM: Indicates whether any CATEGORY 2 limits have triggered
1880
+ CATDESC: Indicates whether any CATEGORY 2 limits have triggered
1881
+
1882
+ fdc_trigger_cnt_cdh:
1883
+ <<: *hskp_default
1884
+ LABLAXIS: FDC_TRIGGER_CNT_CDH
1885
+ FIELDNAM: Indicates whether any CATEGORY 3 limits have triggered
1886
+ CATDESC: Indicates whether any CATEGORY 3 limits have triggered
1887
+
1888
+ fdc_trigger_cnt_fee:
1889
+ <<: *hskp_default
1890
+ LABLAXIS: FDC_TRIGGER_CNT_FEE
1891
+ FIELDNAM: Indicates whether any CATEGORY 4 limits have triggered
1892
+ CATDESC: Indicates whether any CATEGORY 4 limits have triggered
1893
+
1894
+ fdc_trigger_cnt_spare1:
1895
+ <<: *hskp_default
1896
+ LABLAXIS: FDC_TRIGGER_CNT_SPARE1
1897
+ FIELDNAM: Indicates whether any CATEGORY 5 limits have triggered
1898
+ CATDESC: Indicates whether any CATEGORY 5 limits have triggered
1899
+
1900
+ fdc_trigger_cnt_spare2:
1901
+ <<: *hskp_default
1902
+ LABLAXIS: FDC_TRIGGER_CNT_SPARE2
1903
+ FIELDNAM: Indicates whether any CATEGORY 6 limits have triggered
1904
+ CATDESC: Indicates whether any CATEGORY 6 limits have triggered
1905
+
1906
+ fdc_trigger_cnt_spare3:
1907
+ <<: *hskp_default
1908
+ LABLAXIS: FDC_TRIGGER_CNT_SPARE3
1909
+ FIELDNAM: Indicates whether any CATEGORY 7 limits have triggered
1910
+ CATDESC: Indicates whether any CATEGORY 7 limits have triggered
1911
+
1912
+ fdc_trigger_cnt_spare4:
1913
+ <<: *hskp_default
1914
+ LABLAXIS: FDC_TRIGGER_CNT_SPARE4
1915
+ FIELDNAM: Indicates whether any CATEGORY 8 limits have triggered
1916
+ CATDESC: Indicates whether any CATEGORY 8 limits have triggered
1917
+
1918
+ fdc_last_trigger_minmax:
1919
+ <<: *hskp_default
1920
+ LABLAXIS: FDC_LAST_TRIGGER_MINMAX
1921
+ FIELDNAM: Indicates whether the most recent trigger was a minimum or maximum limit
1922
+ CATDESC: Indicates whether the most recent trigger was a minimum or maximum limit
1923
+
1924
+ fdc_last_trigger_id:
1925
+ <<: *hskp_default
1926
+ LABLAXIS: FDC_LAST_TRIGGER_ID
1927
+ FIELDNAM: Indicates the ID of the most recent FDC trigger
1928
+ CATDESC: Indicates the ID of the most recent FDC trigger
1929
+
1930
+ fdc_last_trigger_action:
1931
+ <<: *hskp_default
1932
+ LABLAXIS: FDC_LAST_TRIGGER_ACTION
1933
+ FIELDNAM: Indicates the action that was taken for the most recent FDC trigger
1934
+ CATDESC: Indicates the action that was taken for the most recent FDC trigger
1935
+
1936
+ round_robin_index:
1937
+ <<: *hskp_default
1938
+ LABLAXIS: ROUND_ROBIN_INDEX
1939
+ FIELDNAM: Round Robin Parameter Report Index
1940
+ CATDESC: Index for Round Robin parameter reporting. See VAR_NOTES for more details.
1941
+ VAR_NOTES: Current index for the Round Robin parameter reporting. The Round Robin mechanism reports one value from the Parameter Table each time this packet is generated.
1942
+
1943
+ round_robin_value:
1944
+ <<: *hskp_default
1945
+ LABLAXIS: ROUND_ROBIN_VALUE
1946
+ FIELDNAM: Round Robin Parameter Report Value
1947
+ CATDESC: Parameter value corresponding to the current Round_Robin_Index value.
1948
+
1949
+ heater_control_state:
1950
+ <<: *hskp_default
1951
+ LABLAXIS: HEATER_CONTROL_STATE
1952
+ FIELDNAM: State of the heater controller
1953
+ CATDESC: Indicates whether FSW control of the operational heater is enabled
1954
+
1955
+ heater_output_state:
1956
+ <<: *hskp_default
1957
+ LABLAXIS: HEATER_OUTPUT_STATE
1958
+ FIELDNAM: State of the heater output
1959
+ CATDESC: Indicates the current state of the physical heater output
1960
+
1961
+ heater_output_state_2:
1962
+ <<: *hskp_default
1963
+ LABLAXIS: HEATER_OUTPUT_STATE_2
1964
+ FIELDNAM: State of the heater output 2
1965
+ CATDESC: Indicates the current state of the physical heater output
1966
+
1967
+ spare_5:
1968
+ <<: *hskp_default
1969
+ LABLAXIS: SPARE_5
1970
+ FIELDNAM: Spare for alignment
1971
+ CATDESC: Spare for alignment
1972
+
1973
+ cpu_idle:
1974
+ <<: *hskp_default
1975
+ LABLAXIS: CPU_IDLE
1976
+ FIELDNAM: CPU Idle Percent
1977
+ CATDESC: CPU Idle Percent
1978
+
1979
+ cdh_processor_t:
1980
+ <<: *hskp_default
1981
+ LABLAXIS: CDH_PROCESSOR_T
1982
+ FIELDNAM: CDH – Processor Temp monitor
1983
+ CATDESC: CDH – Processor Temp monitor
1984
+
1985
+ cdh_1p8v_ldo_t:
1986
+ <<: *hskp_default
1987
+ LABLAXIS: CDH_1P8V_LDO_T
1988
+ FIELDNAM: CDH – +1.8V LDO Temp monitor
1989
+ CATDESC: CDH – +1.8V LDO Temp monitor
1990
+
1991
+ cdh_1p5v_ldo_t:
1992
+ <<: *hskp_default
1993
+ LABLAXIS: CDH_1P5V_LDO_T
1994
+ FIELDNAM: CDH – +1.5V LDO Temp monitor
1995
+ CATDESC: CDH – +1.5V LDO Temp monitor
1996
+
1997
+ cdh_sdram_t:
1998
+ <<: *hskp_default
1999
+ LABLAXIS: CDH_SDRAM_T
2000
+ FIELDNAM: CDH – SDRAM Temp monitor
2001
+ CATDESC: CDH – SDRAM Temp monitor
2002
+
2003
+ snsr_hvps_t:
2004
+ <<: *hskp_default
2005
+ LABLAXIS: SNSR_HVPS_T
2006
+ FIELDNAM: CoDICE – Sensor HVPS Temp monitor
2007
+ CATDESC: CoDICE – Sensor HVPS Temp monitor
2008
+
2009
+ fee_apd_3p3_digital_v:
2010
+ <<: *hskp_default
2011
+ LABLAXIS: FEE_APD_3P3_DIGITAL_V
2012
+ FIELDNAM: FEE; APD Side +3.3V Digital
2013
+ CATDESC: FEE; APD Side +3.3V Digital
2014
+
2015
+ fee_apd_5p0_analog_v:
2016
+ <<: *hskp_default
2017
+ LABLAXIS: FEE_APD_5P0_ANALOG_V
2018
+ FIELDNAM: FEE; APD Side +5.0V Analog
2019
+ CATDESC: FEE; APD Side +5.0V Analog
2020
+
2021
+ fee_apd_t:
2022
+ <<: *hskp_default
2023
+ LABLAXIS: FEE_APD_T
2024
+ FIELDNAM: FEE; APD Side Temperature
2025
+ CATDESC: FEE; APD Side Temperature
2026
+
2027
+ fee_apd_12p0_analog_v:
2028
+ <<: *hskp_default
2029
+ LABLAXIS: FEE_APD_12P0_ANALOG_V
2030
+ FIELDNAM: FEE; APD Side +12.0V Analog
2031
+ CATDESC: FEE; APD Side +12.0V Analog
2032
+
2033
+ fee_apd_eb_temp_1_t:
2034
+ <<: *hskp_default
2035
+ LABLAXIS: FEE_APD_EB_TEMP_1_T
2036
+ FIELDNAM: FEE; AEB Temp Sensor 1
2037
+ CATDESC: FEE; AEB Temp Sensor 1
2038
+
2039
+ fee_apd_eb_temp_2_t:
2040
+ <<: *hskp_default
2041
+ LABLAXIS: FEE_APD_EB_TEMP_2_T
2042
+ FIELDNAM: FEE; AEB Temp Sensor 2
2043
+ CATDESC: FEE; AEB Temp Sensor 2
2044
+
2045
+ fee_apd_eb_temp_3_t:
2046
+ <<: *hskp_default
2047
+ LABLAXIS: FEE_APD_EB_TEMP_3_T
2048
+ FIELDNAM: FEE; AEB Temp Sensor 3
2049
+ CATDESC: FEE; AEB Temp Sensor 3
2050
+
2051
+ fee_apd_eb_temp_4_t:
2052
+ <<: *hskp_default
2053
+ LABLAXIS: FEE_APD_EB_TEMP_4_T
2054
+ FIELDNAM: FEE; AEB Temp Sensor 4
2055
+ CATDESC: FEE; AEB Temp Sensor 4
2056
+
2057
+ fee_ssd_3p3_digital_v:
2058
+ <<: *hskp_default
2059
+ LABLAXIS: FEE_SSD_3P3_DIGITAL_V
2060
+ FIELDNAM: FEE; SSD Side +3.3V Digital
2061
+ CATDESC: FEE; SSD Side +3.3V Digital
2062
+
2063
+ fee_ssd_5p0_analog_v:
2064
+ <<: *hskp_default
2065
+ LABLAXIS: FEE_SSD_5P0_ANALOG_V
2066
+ FIELDNAM: FEE; SSD Side +5.0V Analog
2067
+ CATDESC: FEE; SSD Side +5.0V Analog
2068
+
2069
+ fee_ssd_t:
2070
+ <<: *hskp_default
2071
+ LABLAXIS: FEE_SSD_T
2072
+ FIELDNAM: FEE; SSD Side Temperature
2073
+ CATDESC: FEE; SSD Side Temperature
2074
+
2075
+ fee_ssd_12p0_analog_v:
2076
+ <<: *hskp_default
2077
+ LABLAXIS: FEE_SSD_12P0_ANALOG_V
2078
+ FIELDNAM: FEE; SSD Side +12.0V Analog
2079
+ CATDESC: FEE; SSD Side +12.0V Analog
2080
+
2081
+ fee_ssd_eb_temp_1_t:
2082
+ <<: *hskp_default
2083
+ LABLAXIS: FEE_SSD_EB_TEMP_1_T
2084
+ FIELDNAM: FEE; SEB Temp Sensor 1
2085
+ CATDESC: FEE; SEB Temp Sensor 1
2086
+
2087
+ fee_ssd_eb_temp_2_t:
2088
+ <<: *hskp_default
2089
+ LABLAXIS: FEE_SSD_EB_TEMP_2_T
2090
+ FIELDNAM: FEE; SEB Temp Sensor 2
2091
+ CATDESC: FEE; SEB Temp Sensor 2
2092
+
2093
+ fee_ssd_eb_temp_3_t:
2094
+ <<: *hskp_default
2095
+ LABLAXIS: FEE_SSD_EB_TEMP_3_T
2096
+ FIELDNAM: FEE; SEB Temp Sensor 3
2097
+ CATDESC: FEE; SEB Temp Sensor 3
2098
+
2099
+ fee_ssd_eb_temp_4_t:
2100
+ <<: *hskp_default
2101
+ LABLAXIS: FEE_SSD_EB_TEMP_4_T
2102
+ FIELDNAM: FEE; SEB Temp Sensor 4
2103
+ CATDESC: FEE; SEB Temp Sensor 4
2104
+
2105
+ spare_6:
2106
+ <<: *hskp_default
2107
+ LABLAXIS: SPARE_6
2108
+ FIELDNAM: Spare for alignment
2109
+ CATDESC: Spare for alignment