imap-processing 0.6.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 (398) hide show
  1. imap_processing/__init__.py +34 -0
  2. imap_processing/_version.py +3 -0
  3. imap_processing/ccsds/__init__.py +0 -0
  4. imap_processing/ccsds/ccsds_data.py +55 -0
  5. imap_processing/ccsds/excel_to_xtce.py +477 -0
  6. imap_processing/cdf/__init__.py +0 -0
  7. imap_processing/cdf/cdf_attribute_manager.py +322 -0
  8. imap_processing/cdf/config/imap_codice_global_cdf_attrs.yaml +212 -0
  9. imap_processing/cdf/config/imap_codice_l1a_variable_attrs.yaml +1358 -0
  10. imap_processing/cdf/config/imap_codice_l1b_variable_attrs.yaml +391 -0
  11. imap_processing/cdf/config/imap_constant_attrs.yaml +33 -0
  12. imap_processing/cdf/config/imap_default_global_cdf_attrs.yaml +17 -0
  13. imap_processing/cdf/config/imap_glows_global_cdf_attrs.yaml +41 -0
  14. imap_processing/cdf/config/imap_glows_l1a_variable_attrs.yaml +499 -0
  15. imap_processing/cdf/config/imap_glows_l1b_variable_attrs.yaml +334 -0
  16. imap_processing/cdf/config/imap_hi_global_cdf_attrs.yaml +51 -0
  17. imap_processing/cdf/config/imap_hi_variable_attrs.yaml +435 -0
  18. imap_processing/cdf/config/imap_hit_global_cdf_attrs.yaml +27 -0
  19. imap_processing/cdf/config/imap_hit_l1a_variable_attrs.yaml +493 -0
  20. imap_processing/cdf/config/imap_hit_l1b_variable_attrs.yaml +564 -0
  21. imap_processing/cdf/config/imap_idex_global_cdf_attrs.yaml +24 -0
  22. imap_processing/cdf/config/imap_idex_l1a_variable_attrs.yaml +426 -0
  23. imap_processing/cdf/config/imap_lo_global_cdf_attrs.yaml +90 -0
  24. imap_processing/cdf/config/imap_lo_l1a_variable_attrs.yaml +487 -0
  25. imap_processing/cdf/config/imap_lo_l1b_variable_attrs.yaml +121 -0
  26. imap_processing/cdf/config/imap_lo_l1c_variable_attrs.yaml +179 -0
  27. imap_processing/cdf/config/imap_mag_global_cdf_attrs.yaml +97 -0
  28. imap_processing/cdf/config/imap_mag_l1_variable_attrs.yaml +201 -0
  29. imap_processing/cdf/config/imap_swapi_global_cdf_attrs.yaml +33 -0
  30. imap_processing/cdf/config/imap_swapi_variable_attrs.yaml +137 -0
  31. imap_processing/cdf/config/imap_swe_global_cdf_attrs.yaml +24 -0
  32. imap_processing/cdf/config/imap_swe_l1a_variable_attrs.yaml +234 -0
  33. imap_processing/cdf/config/imap_swe_l1b_variable_attrs.yaml +273 -0
  34. imap_processing/cdf/config/imap_ultra_global_cdf_attrs.yaml +100 -0
  35. imap_processing/cdf/config/imap_ultra_l1a_variable_attrs.yaml +52 -0
  36. imap_processing/cdf/config/imap_ultra_l1b_variable_attrs.yaml +297 -0
  37. imap_processing/cdf/config/imap_ultra_l1c_variable_attrs.yaml +121 -0
  38. imap_processing/cdf/config/shared/default_global_cdf_attrs_schema.yaml +246 -0
  39. imap_processing/cdf/config/shared/default_variable_cdf_attrs_schema.yaml +466 -0
  40. imap_processing/cdf/imap_cdf_manager.py +64 -0
  41. imap_processing/cdf/utils.py +147 -0
  42. imap_processing/cli.py +863 -0
  43. imap_processing/codice/__init__.py +1 -0
  44. imap_processing/codice/codice_l0.py +54 -0
  45. imap_processing/codice/codice_l1a.py +558 -0
  46. imap_processing/codice/codice_l1b.py +194 -0
  47. imap_processing/codice/constants.py +986 -0
  48. imap_processing/codice/data/esa_sweep_values.csv +257 -0
  49. imap_processing/codice/data/lo_stepping_values.csv +129 -0
  50. imap_processing/codice/decompress.py +142 -0
  51. imap_processing/codice/packet_definitions/P_COD_NHK.xml +618 -0
  52. imap_processing/codice/packet_definitions/codice_packet_definition.xml +5073 -0
  53. imap_processing/codice/utils.py +95 -0
  54. imap_processing/decom.py +40 -0
  55. imap_processing/glows/__init__.py +1 -0
  56. imap_processing/glows/ancillary/l1b_conversion_table_v001.json +42 -0
  57. imap_processing/glows/l0/__init__.py +0 -0
  58. imap_processing/glows/l0/decom_glows.py +91 -0
  59. imap_processing/glows/l0/glows_l0_data.py +194 -0
  60. imap_processing/glows/l1a/glows_l1a.py +424 -0
  61. imap_processing/glows/l1a/glows_l1a_data.py +555 -0
  62. imap_processing/glows/l1b/glows_l1b.py +270 -0
  63. imap_processing/glows/l1b/glows_l1b_data.py +583 -0
  64. imap_processing/glows/packet_definitions/GLX_COMBINED.xml +254 -0
  65. imap_processing/glows/packet_definitions/P_GLX_TMSCDE.xml +97 -0
  66. imap_processing/glows/packet_definitions/P_GLX_TMSCHIST.xml +215 -0
  67. imap_processing/glows/utils/__init__.py +0 -0
  68. imap_processing/glows/utils/constants.py +105 -0
  69. imap_processing/hi/__init__.py +1 -0
  70. imap_processing/hi/l0/__init__.py +0 -0
  71. imap_processing/hi/l0/decom_hi.py +24 -0
  72. imap_processing/hi/l1a/__init__.py +0 -0
  73. imap_processing/hi/l1a/hi_l1a.py +73 -0
  74. imap_processing/hi/l1a/histogram.py +142 -0
  75. imap_processing/hi/l1a/housekeeping.py +27 -0
  76. imap_processing/hi/l1a/science_direct_event.py +341 -0
  77. imap_processing/hi/l1b/__init__.py +0 -0
  78. imap_processing/hi/l1b/hi_eng_unit_convert_table.csv +154 -0
  79. imap_processing/hi/l1b/hi_l1b.py +127 -0
  80. imap_processing/hi/l1c/__init__.py +0 -0
  81. imap_processing/hi/l1c/hi_l1c.py +228 -0
  82. imap_processing/hi/packet_definitions/__init__.py +0 -0
  83. imap_processing/hi/packet_definitions/hi_packet_definition.xml +482 -0
  84. imap_processing/hi/utils.py +27 -0
  85. imap_processing/hit/__init__.py +1 -0
  86. imap_processing/hit/l0/__init__.py +0 -0
  87. imap_processing/hit/l0/data_classes/housekeeping.py +240 -0
  88. imap_processing/hit/l0/data_classes/science_packet.py +259 -0
  89. imap_processing/hit/l0/decom_hit.py +467 -0
  90. imap_processing/hit/l0/utils/hit_base.py +57 -0
  91. imap_processing/hit/l1a/__init__.py +0 -0
  92. imap_processing/hit/l1a/hit_l1a.py +254 -0
  93. imap_processing/hit/l1b/hit_l1b.py +179 -0
  94. imap_processing/hit/packet_definitions/hit_packet_definitions.xml +1276 -0
  95. imap_processing/ialirt/__init__.py +0 -0
  96. imap_processing/ialirt/l0/__init__.py +0 -0
  97. imap_processing/ialirt/l0/process_hit.py +220 -0
  98. imap_processing/ialirt/packet_definitions/__init__.py +0 -0
  99. imap_processing/ialirt/packet_definitions/ialirt.xml +778 -0
  100. imap_processing/ialirt/packet_definitions/ialirt_hit.xml +186 -0
  101. imap_processing/idex/__init__.py +2 -0
  102. imap_processing/idex/idex_constants.py +27 -0
  103. imap_processing/idex/idex_l0.py +31 -0
  104. imap_processing/idex/idex_l1a.py +631 -0
  105. imap_processing/idex/packet_definitions/idex_packet_definition.xml +3162 -0
  106. imap_processing/lo/__init__.py +1 -0
  107. imap_processing/lo/l0/__init__.py +0 -0
  108. imap_processing/lo/l0/data_classes/science_direct_events.py +215 -0
  109. imap_processing/lo/l0/data_classes/star_sensor.py +98 -0
  110. imap_processing/lo/l0/decompression_tables/12_to_16_bit.csv +4097 -0
  111. imap_processing/lo/l0/decompression_tables/8_to_12_bit.csv +257 -0
  112. imap_processing/lo/l0/decompression_tables/8_to_16_bit.csv +257 -0
  113. imap_processing/lo/l0/decompression_tables/decompression_tables.py +75 -0
  114. imap_processing/lo/l0/lo_apid.py +15 -0
  115. imap_processing/lo/l0/lo_science.py +150 -0
  116. imap_processing/lo/l0/utils/binary_string.py +59 -0
  117. imap_processing/lo/l0/utils/bit_decompression.py +62 -0
  118. imap_processing/lo/l0/utils/lo_base.py +57 -0
  119. imap_processing/lo/l1a/__init__.py +0 -0
  120. imap_processing/lo/l1a/lo_l1a.py +157 -0
  121. imap_processing/lo/l1b/lo_l1b.py +160 -0
  122. imap_processing/lo/l1c/lo_l1c.py +180 -0
  123. imap_processing/lo/packet_definitions/lo_xtce.xml +3541 -0
  124. imap_processing/mag/__init__.py +2 -0
  125. imap_processing/mag/constants.py +108 -0
  126. imap_processing/mag/l0/decom_mag.py +170 -0
  127. imap_processing/mag/l0/mag_l0_data.py +118 -0
  128. imap_processing/mag/l1a/mag_l1a.py +317 -0
  129. imap_processing/mag/l1a/mag_l1a_data.py +1007 -0
  130. imap_processing/mag/l1b/__init__.py +0 -0
  131. imap_processing/mag/l1b/imap_calibration_mag_20240229_v01.cdf +0 -0
  132. imap_processing/mag/l1b/mag_l1b.py +125 -0
  133. imap_processing/mag/l1c/mag_l1c.py +57 -0
  134. imap_processing/mag/packet_definitions/MAG_SCI_COMBINED.xml +235 -0
  135. imap_processing/quality_flags.py +91 -0
  136. imap_processing/spice/__init__.py +1 -0
  137. imap_processing/spice/geometry.py +322 -0
  138. imap_processing/spice/kernels.py +459 -0
  139. imap_processing/spice/time.py +72 -0
  140. imap_processing/swapi/__init__.py +1 -0
  141. imap_processing/swapi/l1/__init__.py +0 -0
  142. imap_processing/swapi/l1/swapi_l1.py +685 -0
  143. imap_processing/swapi/l2/__init__.py +0 -0
  144. imap_processing/swapi/l2/swapi_l2.py +107 -0
  145. imap_processing/swapi/packet_definitions/__init__.py +0 -0
  146. imap_processing/swapi/packet_definitions/swapi_packet_definition.xml +708 -0
  147. imap_processing/swapi/swapi_utils.py +25 -0
  148. imap_processing/swe/__init__.py +1 -0
  149. imap_processing/swe/l1a/__init__.py +0 -0
  150. imap_processing/swe/l1a/swe_l1a.py +48 -0
  151. imap_processing/swe/l1a/swe_science.py +223 -0
  152. imap_processing/swe/l1b/engineering_unit_convert_table.csv +65 -0
  153. imap_processing/swe/l1b/swe_esa_lookup_table.csv +1441 -0
  154. imap_processing/swe/l1b/swe_l1b.py +49 -0
  155. imap_processing/swe/l1b/swe_l1b_science.py +557 -0
  156. imap_processing/swe/packet_definitions/__init__.py +0 -0
  157. imap_processing/swe/packet_definitions/swe_packet_definition.xml +303 -0
  158. imap_processing/swe/utils/__init__.py +0 -0
  159. imap_processing/swe/utils/swe_utils.py +9 -0
  160. imap_processing/tests/__init__.py +0 -0
  161. imap_processing/tests/ccsds/test_data/expected_output.xml +171 -0
  162. imap_processing/tests/ccsds/test_excel_to_xtce.py +285 -0
  163. imap_processing/tests/cdf/__init__.py +0 -0
  164. imap_processing/tests/cdf/imap_default_global_cdf_attrs.yaml +8 -0
  165. imap_processing/tests/cdf/shared/default_global_cdf_attrs_schema.yaml +246 -0
  166. imap_processing/tests/cdf/shared/default_variable_cdf_attrs_schema.yaml +466 -0
  167. imap_processing/tests/cdf/test_cdf_attribute_manager.py +353 -0
  168. imap_processing/tests/cdf/test_data/imap_default_global_test_cdf_attrs.yaml +7 -0
  169. imap_processing/tests/cdf/test_data/imap_instrument1_global_cdf_attrs.yaml +14 -0
  170. imap_processing/tests/cdf/test_data/imap_instrument1_level1_variable_attrs.yaml +23 -0
  171. imap_processing/tests/cdf/test_data/imap_instrument2_global_cdf_attrs.yaml +23 -0
  172. imap_processing/tests/cdf/test_data/imap_instrument2_level2_variable_attrs.yaml +30 -0
  173. imap_processing/tests/cdf/test_data/imap_test_global.yaml +26 -0
  174. imap_processing/tests/cdf/test_data/imap_test_variable.yaml +41 -0
  175. imap_processing/tests/cdf/test_imap_cdf_manager.py +62 -0
  176. imap_processing/tests/cdf/test_utils.py +109 -0
  177. imap_processing/tests/codice/__init__.py +0 -0
  178. imap_processing/tests/codice/conftest.py +56 -0
  179. imap_processing/tests/codice/data/eu_unit_lookup_table.csv +101 -0
  180. imap_processing/tests/codice/data/idle_export_eu.COD_NHK_20230822_122700 2.csv +100 -0
  181. imap_processing/tests/codice/data/idle_export_raw.COD_NHK_20230822_122700.csv +100 -0
  182. imap_processing/tests/codice/data/imap_codice_l0_hi-counters-aggregated_20240429_v001.pkts +0 -0
  183. imap_processing/tests/codice/data/imap_codice_l0_hi-counters-singles_20240429_v001.pkts +0 -0
  184. imap_processing/tests/codice/data/imap_codice_l0_hi-omni_20240429_v001.pkts +0 -0
  185. imap_processing/tests/codice/data/imap_codice_l0_hi-pha_20240429_v001.pkts +0 -0
  186. imap_processing/tests/codice/data/imap_codice_l0_hi-sectored_20240429_v001.pkts +0 -0
  187. imap_processing/tests/codice/data/imap_codice_l0_hskp_20100101_v001.pkts +0 -0
  188. imap_processing/tests/codice/data/imap_codice_l0_lo-counters-aggregated_20240429_v001.pkts +0 -0
  189. imap_processing/tests/codice/data/imap_codice_l0_lo-counters-singles_20240429_v001.pkts +0 -0
  190. imap_processing/tests/codice/data/imap_codice_l0_lo-nsw-angular_20240429_v001.pkts +0 -0
  191. imap_processing/tests/codice/data/imap_codice_l0_lo-nsw-priority_20240429_v001.pkts +0 -0
  192. imap_processing/tests/codice/data/imap_codice_l0_lo-nsw-species_20240429_v001.pkts +0 -0
  193. imap_processing/tests/codice/data/imap_codice_l0_lo-pha_20240429_v001.pkts +0 -0
  194. imap_processing/tests/codice/data/imap_codice_l0_lo-sw-angular_20240429_v001.pkts +0 -0
  195. imap_processing/tests/codice/data/imap_codice_l0_lo-sw-priority_20240429_v001.pkts +0 -0
  196. imap_processing/tests/codice/data/imap_codice_l0_lo-sw-species_20240429_v001.pkts +0 -0
  197. imap_processing/tests/codice/data/imap_codice_l1a_hi-counters-aggregated_20240429_v001.cdf +0 -0
  198. imap_processing/tests/codice/data/imap_codice_l1a_hi-counters-singles_20240429_v001.cdf +0 -0
  199. imap_processing/tests/codice/data/imap_codice_l1a_hi-omni_20240429_v001.cdf +0 -0
  200. imap_processing/tests/codice/data/imap_codice_l1a_hi-sectored_20240429_v001.cdf +0 -0
  201. imap_processing/tests/codice/data/imap_codice_l1a_hskp_20100101_v001.cdf +0 -0
  202. imap_processing/tests/codice/data/imap_codice_l1a_lo-counters-aggregated_20240429_v001.cdf +0 -0
  203. imap_processing/tests/codice/data/imap_codice_l1a_lo-counters-singles_20240429_v001.cdf +0 -0
  204. imap_processing/tests/codice/data/imap_codice_l1a_lo-nsw-angular_20240429_v001.cdf +0 -0
  205. imap_processing/tests/codice/data/imap_codice_l1a_lo-nsw-priority_20240429_v001.cdf +0 -0
  206. imap_processing/tests/codice/data/imap_codice_l1a_lo-nsw-species_20240429_v001.cdf +0 -0
  207. imap_processing/tests/codice/data/imap_codice_l1a_lo-sw-angular_20240429_v001.cdf +0 -0
  208. imap_processing/tests/codice/data/imap_codice_l1a_lo-sw-priority_20240429_v001.cdf +0 -0
  209. imap_processing/tests/codice/data/imap_codice_l1a_lo-sw-species_20240429_v001.cdf +0 -0
  210. imap_processing/tests/codice/data/imap_codice_l1b_hi-counters-aggregated_20240429_v001.cdf +0 -0
  211. imap_processing/tests/codice/data/imap_codice_l1b_hi-counters-singles_20240429_v001.cdf +0 -0
  212. imap_processing/tests/codice/data/imap_codice_l1b_hi-omni_20240429_v001.cdf +0 -0
  213. imap_processing/tests/codice/data/imap_codice_l1b_hi-sectored_20240429_v001.cdf +0 -0
  214. imap_processing/tests/codice/data/imap_codice_l1b_hskp_20100101_v001.cdf +0 -0
  215. imap_processing/tests/codice/data/imap_codice_l1b_lo-counters-aggregated_20240429_v001.cdf +0 -0
  216. imap_processing/tests/codice/data/imap_codice_l1b_lo-counters-singles_20240429_v001.cdf +0 -0
  217. imap_processing/tests/codice/data/imap_codice_l1b_lo-nsw-angular_20240429_v001.cdf +0 -0
  218. imap_processing/tests/codice/data/imap_codice_l1b_lo-nsw-priority_20240429_v001.cdf +0 -0
  219. imap_processing/tests/codice/data/imap_codice_l1b_lo-nsw-species_20240429_v001.cdf +0 -0
  220. imap_processing/tests/codice/data/imap_codice_l1b_lo-sw-angular_20240429_v001.cdf +0 -0
  221. imap_processing/tests/codice/data/imap_codice_l1b_lo-sw-priority_20240429_v001.cdf +0 -0
  222. imap_processing/tests/codice/data/imap_codice_l1b_lo-sw-species_20240429_v001.cdf +0 -0
  223. imap_processing/tests/codice/test_codice_l0.py +144 -0
  224. imap_processing/tests/codice/test_codice_l1a.py +187 -0
  225. imap_processing/tests/codice/test_codice_l1b.py +60 -0
  226. imap_processing/tests/codice/test_decompress.py +50 -0
  227. imap_processing/tests/conftest.py +372 -0
  228. imap_processing/tests/glows/direct_events_validation_data_l1a.csv +5704 -0
  229. imap_processing/tests/glows/glows_test_packet_20110921_v01.pkts +0 -0
  230. imap_processing/tests/glows/test_glows_decom.py +133 -0
  231. imap_processing/tests/glows/test_glows_l1a_cdf.py +85 -0
  232. imap_processing/tests/glows/test_glows_l1a_data.py +510 -0
  233. imap_processing/tests/glows/test_glows_l1b.py +348 -0
  234. imap_processing/tests/glows/test_glows_l1b_data.py +70 -0
  235. imap_processing/tests/hi/__init__.py +0 -0
  236. imap_processing/tests/hi/conftest.py +133 -0
  237. imap_processing/tests/hi/test_data/l0/20231030_H45_APP_NHK.bin +0 -0
  238. imap_processing/tests/hi/test_data/l0/20231030_H45_APP_NHK.csv +201 -0
  239. imap_processing/tests/hi/test_data/l0/20231030_H45_SCI_CNT.bin +0 -0
  240. imap_processing/tests/hi/test_data/l0/20231030_H45_SCI_DE.bin +0 -0
  241. imap_processing/tests/hi/test_data/l0/README.txt +54 -0
  242. imap_processing/tests/hi/test_decom.py +55 -0
  243. imap_processing/tests/hi/test_hi_l1b.py +31 -0
  244. imap_processing/tests/hi/test_hi_l1c.py +69 -0
  245. imap_processing/tests/hi/test_l1a.py +96 -0
  246. imap_processing/tests/hi/test_l1a_sci_de.py +72 -0
  247. imap_processing/tests/hi/test_utils.py +15 -0
  248. imap_processing/tests/hit/PREFLIGHT_raw_record_2023_256_15_59_04_apid1251.pkts +0 -0
  249. imap_processing/tests/hit/PREFLIGHT_raw_record_2023_256_15_59_04_apid1252.pkts +0 -0
  250. imap_processing/tests/hit/__init__.py +0 -0
  251. imap_processing/tests/hit/test_data/imap_hit_l0_hk_20100105_v001.pkts +0 -0
  252. imap_processing/tests/hit/test_data/sci_sample.ccsds +0 -0
  253. imap_processing/tests/hit/test_hit_decom.py +230 -0
  254. imap_processing/tests/hit/test_hit_l1a.py +224 -0
  255. imap_processing/tests/hit/test_hit_l1b.py +52 -0
  256. imap_processing/tests/hit/validation_data/hskp_sample_raw.csv +88 -0
  257. imap_processing/tests/ialirt/__init__.py +0 -0
  258. imap_processing/tests/ialirt/test_data/l0/IALiRT Raw Packet Telemetry.txt +33 -0
  259. imap_processing/tests/ialirt/test_data/l0/hit_ialirt_sample.ccsds +0 -0
  260. imap_processing/tests/ialirt/test_data/l0/hit_ialirt_sample.csv +1001 -0
  261. imap_processing/tests/ialirt/unit/__init__.py +0 -0
  262. imap_processing/tests/ialirt/unit/test_decom_ialirt.py +94 -0
  263. imap_processing/tests/ialirt/unit/test_process_hit.py +226 -0
  264. imap_processing/tests/idex/__init__.py +0 -0
  265. imap_processing/tests/idex/conftest.py +22 -0
  266. imap_processing/tests/idex/imap_idex_l0_raw_20230725_v001.pkts +0 -0
  267. imap_processing/tests/idex/impact_14_tof_high_data.txt +8189 -0
  268. imap_processing/tests/idex/test_idex_l0.py +45 -0
  269. imap_processing/tests/idex/test_idex_l1a.py +91 -0
  270. imap_processing/tests/lo/__init__.py +0 -0
  271. imap_processing/tests/lo/test_binary_string.py +21 -0
  272. imap_processing/tests/lo/test_bit_decompression.py +39 -0
  273. imap_processing/tests/lo/test_cdfs/imap_lo_l0_raw_20240627_v001.pkts +0 -0
  274. imap_processing/tests/lo/test_cdfs/imap_lo_l1a_de_20100101_v001.cdf +0 -0
  275. imap_processing/tests/lo/test_cdfs/imap_lo_l1a_spin_20100101_v001.cdf +0 -0
  276. imap_processing/tests/lo/test_cdfs/imap_lo_l1b_de_20100101_v001.cdf +0 -0
  277. imap_processing/tests/lo/test_lo_l1a.py +66 -0
  278. imap_processing/tests/lo/test_lo_l1b.py +74 -0
  279. imap_processing/tests/lo/test_lo_l1c.py +66 -0
  280. imap_processing/tests/lo/test_science_counts.py +41 -0
  281. imap_processing/tests/lo/test_science_direct_events.py +209 -0
  282. imap_processing/tests/lo/test_star_sensor.py +35 -0
  283. imap_processing/tests/mag/imap_mag_l1a_burst-magi_20231025_v001.cdf +0 -0
  284. imap_processing/tests/mag/mag_l0_test_data.pkts +0 -0
  285. imap_processing/tests/mag/mag_l0_test_output.csv +37 -0
  286. imap_processing/tests/mag/mag_l1_test_data.pkts +0 -0
  287. imap_processing/tests/mag/mag_l1a_test_output.csv +97 -0
  288. imap_processing/tests/mag/test_mag_decom.py +117 -0
  289. imap_processing/tests/mag/test_mag_l1a.py +856 -0
  290. imap_processing/tests/mag/test_mag_l1b.py +77 -0
  291. imap_processing/tests/mag/test_mag_l1c.py +40 -0
  292. imap_processing/tests/spice/__init__.py +0 -0
  293. imap_processing/tests/spice/test_data/imap_ena_sim_metakernel.template +4 -0
  294. imap_processing/tests/spice/test_data/imap_science_0001.tf +171 -0
  295. imap_processing/tests/spice/test_data/imap_sclk_0000.tsc +156 -0
  296. imap_processing/tests/spice/test_data/imap_sim_ck_2hr_2secsampling_with_nutation.bc +0 -0
  297. imap_processing/tests/spice/test_data/imap_simple_metakernel.template +3 -0
  298. imap_processing/tests/spice/test_data/imap_spk_demo.bsp +0 -0
  299. imap_processing/tests/spice/test_data/imap_wkcp.tf +1806 -0
  300. imap_processing/tests/spice/test_data/naif0012.tls +150 -0
  301. imap_processing/tests/spice/test_data/sim_1yr_imap_attitude.bc +0 -0
  302. imap_processing/tests/spice/test_data/sim_1yr_imap_pointing_frame.bc +0 -0
  303. imap_processing/tests/spice/test_geometry.py +214 -0
  304. imap_processing/tests/spice/test_kernels.py +272 -0
  305. imap_processing/tests/spice/test_time.py +35 -0
  306. imap_processing/tests/swapi/__init__.py +0 -0
  307. imap_processing/tests/swapi/conftest.py +16 -0
  308. imap_processing/tests/swapi/l0_data/__init__.py +0 -0
  309. imap_processing/tests/swapi/l0_data/imap_swapi_l0_raw_20231012_v001.pkts +0 -0
  310. imap_processing/tests/swapi/l0_validation_data/__init__.py +0 -0
  311. imap_processing/tests/swapi/l0_validation_data/idle_export_eu.SWP_AUT_20231012_125245.csv +124 -0
  312. imap_processing/tests/swapi/l0_validation_data/idle_export_eu.SWP_HK_20231012_125245.csv +98 -0
  313. imap_processing/tests/swapi/l0_validation_data/idle_export_eu.SWP_MG_20231012_125245.csv +9 -0
  314. imap_processing/tests/swapi/l0_validation_data/idle_export_eu.SWP_SCI_20231012_125245.csv +72 -0
  315. imap_processing/tests/swapi/l0_validation_data/idle_export_raw.SWP_AUT_20231012_125245.csv +124 -0
  316. imap_processing/tests/swapi/l0_validation_data/idle_export_raw.SWP_HK_20231012_125245.csv +98 -0
  317. imap_processing/tests/swapi/l0_validation_data/idle_export_raw.SWP_MG_20231012_125245.csv +9 -0
  318. imap_processing/tests/swapi/l0_validation_data/idle_export_raw.SWP_SCI_20231012_125245.csv +72 -0
  319. imap_processing/tests/swapi/test_swapi_decom.py +135 -0
  320. imap_processing/tests/swapi/test_swapi_l1.py +354 -0
  321. imap_processing/tests/swapi/test_swapi_l2.py +21 -0
  322. imap_processing/tests/swe/__init__.py +0 -0
  323. imap_processing/tests/swe/conftest.py +35 -0
  324. imap_processing/tests/swe/decompressed/20230927173238_4th_quarter_decompressed.csv +181 -0
  325. imap_processing/tests/swe/decompressed/20230927173253_1st_quarter_decompressed.csv +181 -0
  326. imap_processing/tests/swe/decompressed/20230927173308_2nd_quarter_decompressed.csv +181 -0
  327. imap_processing/tests/swe/decompressed/20230927173323_3rd_quarter_decompressed.csv +181 -0
  328. imap_processing/tests/swe/l0_data/2024051010_SWE_SCIENCE_packet.bin +0 -0
  329. imap_processing/tests/swe/l0_validation_data/idle_export_eu.SWE_SCIENCE_20240510_092742.csv +544 -0
  330. imap_processing/tests/swe/l0_validation_data/idle_export_raw.SWE_SCIENCE_20240510_092742.csv +363 -0
  331. imap_processing/tests/swe/test_swe_l1a.py +12 -0
  332. imap_processing/tests/swe/test_swe_l1a_science.py +129 -0
  333. imap_processing/tests/swe/test_swe_l1b.py +61 -0
  334. imap_processing/tests/swe/test_swe_l1b_science.py +65 -0
  335. imap_processing/tests/test_cli.py +229 -0
  336. imap_processing/tests/test_decom.py +66 -0
  337. imap_processing/tests/test_quality_flags.py +71 -0
  338. imap_processing/tests/test_utils.py +107 -0
  339. imap_processing/tests/ultra/__init__.py +0 -0
  340. imap_processing/tests/ultra/test_data/l0/FM45_40P_Phi28p5_BeamCal_LinearScan_phi28.50_theta-0.00_20240207T102740.CCSDS +0 -0
  341. imap_processing/tests/ultra/test_data/l0/FM45_7P_Phi0.0_BeamCal_LinearScan_phi0.04_theta-0.01_20230821T121304.CCSDS +0 -0
  342. imap_processing/tests/ultra/test_data/l0/FM45_TV_Cycle6_Hot_Ops_Front212_20240124T063837.CCSDS +0 -0
  343. imap_processing/tests/ultra/test_data/l0/Ultra45_EM_SwRI_Cal_Run7_ThetaScan_20220530T225054.CCSDS +0 -0
  344. imap_processing/tests/ultra/test_data/l0/ultra45_raw_sc_auxdata_Ultra45_EM_SwRI_Cal_Run7_ThetaScan_20220530T225054.csv +24 -0
  345. imap_processing/tests/ultra/test_data/l0/ultra45_raw_sc_enaphxtofhangimg_FM45_TV_Cycle6_Hot_Ops_Front212_20240124T063837.csv +105 -0
  346. imap_processing/tests/ultra/test_data/l0/ultra45_raw_sc_ultraimgrates_Ultra45_EM_SwRI_Cal_Run7_ThetaScan_20220530T225054.csv +24 -0
  347. imap_processing/tests/ultra/test_data/l0/ultra45_raw_sc_ultrarawimg_withFSWcalcs_FM45_40P_Phi28p5_BeamCal_LinearScan_phi2850_theta-000_20240207T102740.csv +3314 -0
  348. imap_processing/tests/ultra/test_data/l0/ultra45_raw_sc_ultrarawimgevent_FM45_7P_Phi00_BeamCal_LinearScan_phi004_theta-001_20230821T121304.csv +702 -0
  349. imap_processing/tests/ultra/unit/__init__.py +0 -0
  350. imap_processing/tests/ultra/unit/conftest.py +210 -0
  351. imap_processing/tests/ultra/unit/test_decom_apid_880.py +98 -0
  352. imap_processing/tests/ultra/unit/test_decom_apid_881.py +50 -0
  353. imap_processing/tests/ultra/unit/test_decom_apid_883.py +44 -0
  354. imap_processing/tests/ultra/unit/test_decom_apid_896.py +104 -0
  355. imap_processing/tests/ultra/unit/test_lookup_utils.py +68 -0
  356. imap_processing/tests/ultra/unit/test_ultra_l1a.py +338 -0
  357. imap_processing/tests/ultra/unit/test_ultra_l1b.py +122 -0
  358. imap_processing/tests/ultra/unit/test_ultra_l1b_annotated.py +57 -0
  359. imap_processing/tests/ultra/unit/test_ultra_l1b_extended.py +342 -0
  360. imap_processing/tests/ultra/unit/test_ultra_l1c.py +104 -0
  361. imap_processing/tests/ultra/unit/test_ultra_l1c_pset_bins.py +35 -0
  362. imap_processing/ultra/__init__.py +1 -0
  363. imap_processing/ultra/constants.py +60 -0
  364. imap_processing/ultra/l0/__init__.py +0 -0
  365. imap_processing/ultra/l0/decom_tools.py +281 -0
  366. imap_processing/ultra/l0/decom_ultra.py +278 -0
  367. imap_processing/ultra/l0/ultra_utils.py +326 -0
  368. imap_processing/ultra/l1a/__init__.py +0 -0
  369. imap_processing/ultra/l1a/ultra_l1a.py +319 -0
  370. imap_processing/ultra/l1b/badtimes.py +26 -0
  371. imap_processing/ultra/l1b/cullingmask.py +26 -0
  372. imap_processing/ultra/l1b/de.py +59 -0
  373. imap_processing/ultra/l1b/extendedspin.py +45 -0
  374. imap_processing/ultra/l1b/lookup_utils.py +165 -0
  375. imap_processing/ultra/l1b/ultra_l1b.py +65 -0
  376. imap_processing/ultra/l1b/ultra_l1b_annotated.py +54 -0
  377. imap_processing/ultra/l1b/ultra_l1b_extended.py +764 -0
  378. imap_processing/ultra/l1c/histogram.py +36 -0
  379. imap_processing/ultra/l1c/pset.py +36 -0
  380. imap_processing/ultra/l1c/ultra_l1c.py +52 -0
  381. imap_processing/ultra/l1c/ultra_l1c_pset_bins.py +54 -0
  382. imap_processing/ultra/lookup_tables/EgyNorm.mem.csv +32769 -0
  383. imap_processing/ultra/lookup_tables/FM45_Startup1_ULTRA_IMGPARAMS_20240719.csv +2 -0
  384. imap_processing/ultra/lookup_tables/ultra45_back-pos-luts.csv +4097 -0
  385. imap_processing/ultra/lookup_tables/ultra45_tdc_norm.csv +2050 -0
  386. imap_processing/ultra/lookup_tables/ultra90_back-pos-luts.csv +4097 -0
  387. imap_processing/ultra/lookup_tables/ultra90_tdc_norm.csv +2050 -0
  388. imap_processing/ultra/lookup_tables/yadjust.csv +257 -0
  389. imap_processing/ultra/packet_definitions/ULTRA_SCI_COMBINED.xml +547 -0
  390. imap_processing/ultra/packet_definitions/__init__.py +0 -0
  391. imap_processing/ultra/utils/__init__.py +0 -0
  392. imap_processing/ultra/utils/ultra_l1_utils.py +50 -0
  393. imap_processing/utils.py +413 -0
  394. imap_processing-0.6.0.dist-info/LICENSE +21 -0
  395. imap_processing-0.6.0.dist-info/METADATA +107 -0
  396. imap_processing-0.6.0.dist-info/RECORD +398 -0
  397. imap_processing-0.6.0.dist-info/WHEEL +4 -0
  398. imap_processing-0.6.0.dist-info/entry_points.txt +4 -0
@@ -0,0 +1,1276 @@
1
+ <?xml version='1.0' encoding='utf-8'?>
2
+ <xtce:SpaceSystem xmlns:xtce="http://www.omg.org/space/xtce" name="HIT">
3
+ <xtce:Header date="2024-03-21" version="13" author="IMAP SDC" />
4
+ <xtce:TelemetryMetaData>
5
+ <xtce:ParameterTypeSet>
6
+ <xtce:IntegerParameterType name="VERSION" signed="false">
7
+ <xtce:IntegerDataEncoding sizeInBits="3" encoding="unsigned" />
8
+ </xtce:IntegerParameterType>
9
+ <xtce:IntegerParameterType name="TYPE" signed="false">
10
+ <xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
11
+ </xtce:IntegerParameterType>
12
+ <xtce:IntegerParameterType name="SEC_HDR_FLG" signed="false">
13
+ <xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
14
+ </xtce:IntegerParameterType>
15
+ <xtce:IntegerParameterType name="PKT_APID" signed="false">
16
+ <xtce:IntegerDataEncoding sizeInBits="11" encoding="unsigned" />
17
+ </xtce:IntegerParameterType>
18
+ <xtce:IntegerParameterType name="SEQ_FLGS" signed="false">
19
+ <xtce:IntegerDataEncoding sizeInBits="2" encoding="unsigned" />
20
+ </xtce:IntegerParameterType>
21
+ <xtce:IntegerParameterType name="SRC_SEQ_CTR" signed="false">
22
+ <xtce:IntegerDataEncoding sizeInBits="14" encoding="unsigned" />
23
+ </xtce:IntegerParameterType>
24
+ <xtce:IntegerParameterType name="PKT_LEN" signed="false">
25
+ <xtce:IntegerDataEncoding sizeInBits="16" encoding="unsigned" />
26
+ </xtce:IntegerParameterType>
27
+ <xtce:IntegerParameterType name="HIT_HSKP.SC_TICK" signed="false">
28
+ <xtce:IntegerDataEncoding sizeInBits="32" encoding="unsigned" />
29
+ </xtce:IntegerParameterType>
30
+ <xtce:IntegerParameterType name="HIT_HSKP.MODE" signed="false">
31
+ <xtce:IntegerDataEncoding sizeInBits="4" encoding="unsigned" />
32
+ </xtce:IntegerParameterType>
33
+ <xtce:IntegerParameterType name="HIT_HSKP.FSW_VERSION_A" signed="false">
34
+ <xtce:IntegerDataEncoding sizeInBits="2" encoding="unsigned" />
35
+ </xtce:IntegerParameterType>
36
+ <xtce:IntegerParameterType name="HIT_HSKP.FSW_VERSION_B" signed="false">
37
+ <xtce:IntegerDataEncoding sizeInBits="4" encoding="unsigned" />
38
+ </xtce:IntegerParameterType>
39
+ <xtce:IntegerParameterType name="HIT_HSKP.FSW_VERSION_C" signed="false">
40
+ <xtce:IntegerDataEncoding sizeInBits="6" encoding="unsigned" />
41
+ </xtce:IntegerParameterType>
42
+ <xtce:IntegerParameterType name="HIT_HSKP.NUM_GOOD_CMDS" signed="false">
43
+ <xtce:IntegerDataEncoding sizeInBits="8" encoding="unsigned" />
44
+ </xtce:IntegerParameterType>
45
+ <xtce:IntegerParameterType name="HIT_HSKP.LAST_GOOD_CMD" signed="false">
46
+ <xtce:IntegerDataEncoding sizeInBits="8" encoding="unsigned" />
47
+ </xtce:IntegerParameterType>
48
+ <xtce:IntegerParameterType name="HIT_HSKP.LAST_GOOD_SEQ_NUM" signed="false">
49
+ <xtce:IntegerDataEncoding sizeInBits="8" encoding="unsigned" />
50
+ </xtce:IntegerParameterType>
51
+ <xtce:IntegerParameterType name="HIT_HSKP.NUM_BAD_CMDS" signed="false">
52
+ <xtce:IntegerDataEncoding sizeInBits="8" encoding="unsigned" />
53
+ </xtce:IntegerParameterType>
54
+ <xtce:IntegerParameterType name="HIT_HSKP.LAST_BAD_CMD" signed="false">
55
+ <xtce:IntegerDataEncoding sizeInBits="8" encoding="unsigned" />
56
+ </xtce:IntegerParameterType>
57
+ <xtce:IntegerParameterType name="HIT_HSKP.LAST_BAD_SEQ_NUM" signed="false">
58
+ <xtce:IntegerDataEncoding sizeInBits="8" encoding="unsigned" />
59
+ </xtce:IntegerParameterType>
60
+ <xtce:IntegerParameterType name="HIT_HSKP.FEE_RUNNING" signed="false">
61
+ <xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
62
+ </xtce:IntegerParameterType>
63
+ <xtce:IntegerParameterType name="HIT_HSKP.MRAM_DISABLED" signed="false">
64
+ <xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
65
+ </xtce:IntegerParameterType>
66
+ <xtce:IntegerParameterType name="HIT_HSKP.HSKP_SPARE1" signed="false">
67
+ <xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
68
+ </xtce:IntegerParameterType>
69
+ <xtce:IntegerParameterType name="HIT_HSKP.ENABLE_50KHZ" signed="false">
70
+ <xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
71
+ </xtce:IntegerParameterType>
72
+ <xtce:IntegerParameterType name="HIT_HSKP.ENABLE_HVPS" signed="false">
73
+ <xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
74
+ </xtce:IntegerParameterType>
75
+ <xtce:IntegerParameterType name="HIT_HSKP.TABLE_STATUS" signed="false">
76
+ <xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
77
+ </xtce:IntegerParameterType>
78
+ <xtce:IntegerParameterType name="HIT_HSKP.HEATER_CONTROL" signed="false">
79
+ <xtce:IntegerDataEncoding sizeInBits="2" encoding="unsigned" />
80
+ </xtce:IntegerParameterType>
81
+ <xtce:IntegerParameterType name="HIT_HSKP.ADC_MODE" signed="false">
82
+ <xtce:IntegerDataEncoding sizeInBits="2" encoding="unsigned" />
83
+ </xtce:IntegerParameterType>
84
+ <xtce:IntegerParameterType name="HIT_HSKP.DYN_THRESH_LVL" signed="false">
85
+ <xtce:IntegerDataEncoding sizeInBits="2" encoding="unsigned" />
86
+ </xtce:IntegerParameterType>
87
+ <xtce:IntegerParameterType name="HIT_HSKP.HSKP_SPARE2" signed="false">
88
+ <xtce:IntegerDataEncoding sizeInBits="2" encoding="unsigned" />
89
+ </xtce:IntegerParameterType>
90
+ <xtce:IntegerParameterType name="HIT_HSKP.NUM_EVNT_LAST_HK" signed="false">
91
+ <xtce:IntegerDataEncoding sizeInBits="18" encoding="unsigned" />
92
+ </xtce:IntegerParameterType>
93
+ <xtce:IntegerParameterType name="HIT_HSKP.NUM_ERRORS" signed="false">
94
+ <xtce:IntegerDataEncoding sizeInBits="8" encoding="unsigned" />
95
+ </xtce:IntegerParameterType>
96
+ <xtce:IntegerParameterType name="HIT_HSKP.LAST_ERROR_NUM" signed="false">
97
+ <xtce:IntegerDataEncoding sizeInBits="8" encoding="unsigned" />
98
+ </xtce:IntegerParameterType>
99
+ <xtce:IntegerParameterType name="HIT_HSKP.CODE_CHECKSUM" signed="false">
100
+ <xtce:IntegerDataEncoding sizeInBits="16" encoding="unsigned" />
101
+ </xtce:IntegerParameterType>
102
+ <xtce:IntegerParameterType name="HIT_HSKP.SPIN_PERIOD_SHORT" signed="false">
103
+ <xtce:IntegerDataEncoding sizeInBits="16" encoding="unsigned" />
104
+ </xtce:IntegerParameterType>
105
+ <xtce:IntegerParameterType name="HIT_HSKP.SPIN_PERIOD_LONG" signed="false">
106
+ <xtce:IntegerDataEncoding sizeInBits="16" encoding="unsigned" />
107
+ </xtce:IntegerParameterType>
108
+ <xtce:IntegerParameterType name="HIT_HSKP.LEAK_I_63" signed="false">
109
+ <xtce:IntegerDataEncoding sizeInBits="10" encoding="unsigned">
110
+ <xtce:DefaultCalibrator>
111
+ <xtce:PolynomialCalibrator>
112
+ <xtce:Term coefficient="0.00488758553274682" exponent="1" />
113
+ </xtce:PolynomialCalibrator>
114
+ </xtce:DefaultCalibrator>
115
+ </xtce:IntegerDataEncoding>
116
+ </xtce:IntegerParameterType>
117
+ <xtce:IntegerParameterType name="HIT_HSKP.LEAK_I_62" signed="false">
118
+ <xtce:IntegerDataEncoding sizeInBits="10" encoding="unsigned">
119
+ <xtce:DefaultCalibrator>
120
+ <xtce:PolynomialCalibrator>
121
+ <xtce:Term coefficient="0.00488758553274682" exponent="1" />
122
+ </xtce:PolynomialCalibrator>
123
+ </xtce:DefaultCalibrator>
124
+ </xtce:IntegerDataEncoding>
125
+ </xtce:IntegerParameterType>
126
+ <xtce:IntegerParameterType name="HIT_HSKP.LEAK_I_61" signed="false">
127
+ <xtce:IntegerDataEncoding sizeInBits="10" encoding="unsigned">
128
+ <xtce:DefaultCalibrator>
129
+ <xtce:PolynomialCalibrator>
130
+ <xtce:Term coefficient="0.00488758553274682" exponent="1" />
131
+ </xtce:PolynomialCalibrator>
132
+ </xtce:DefaultCalibrator>
133
+ </xtce:IntegerDataEncoding>
134
+ </xtce:IntegerParameterType>
135
+ <xtce:IntegerParameterType name="HIT_HSKP.LEAK_I_60" signed="false">
136
+ <xtce:IntegerDataEncoding sizeInBits="10" encoding="unsigned">
137
+ <xtce:DefaultCalibrator>
138
+ <xtce:PolynomialCalibrator>
139
+ <xtce:Term coefficient="0.00488758553274682" exponent="1" />
140
+ </xtce:PolynomialCalibrator>
141
+ </xtce:DefaultCalibrator>
142
+ </xtce:IntegerDataEncoding>
143
+ </xtce:IntegerParameterType>
144
+ <xtce:IntegerParameterType name="HIT_HSKP.LEAK_I_59" signed="false">
145
+ <xtce:IntegerDataEncoding sizeInBits="10" encoding="unsigned">
146
+ <xtce:DefaultCalibrator>
147
+ <xtce:PolynomialCalibrator>
148
+ <xtce:Term coefficient="0.00488758553274682" exponent="1" />
149
+ </xtce:PolynomialCalibrator>
150
+ </xtce:DefaultCalibrator>
151
+ </xtce:IntegerDataEncoding>
152
+ </xtce:IntegerParameterType>
153
+ <xtce:IntegerParameterType name="HIT_HSKP.LEAK_I_58" signed="false">
154
+ <xtce:IntegerDataEncoding sizeInBits="10" encoding="unsigned">
155
+ <xtce:DefaultCalibrator>
156
+ <xtce:PolynomialCalibrator>
157
+ <xtce:Term coefficient="0.00488758553274682" exponent="1" />
158
+ </xtce:PolynomialCalibrator>
159
+ </xtce:DefaultCalibrator>
160
+ </xtce:IntegerDataEncoding>
161
+ </xtce:IntegerParameterType>
162
+ <xtce:IntegerParameterType name="HIT_HSKP.LEAK_I_57" signed="false">
163
+ <xtce:IntegerDataEncoding sizeInBits="10" encoding="unsigned">
164
+ <xtce:DefaultCalibrator>
165
+ <xtce:PolynomialCalibrator>
166
+ <xtce:Term coefficient="0.00488758553274682" exponent="1" />
167
+ </xtce:PolynomialCalibrator>
168
+ </xtce:DefaultCalibrator>
169
+ </xtce:IntegerDataEncoding>
170
+ </xtce:IntegerParameterType>
171
+ <xtce:IntegerParameterType name="HIT_HSKP.LEAK_I_56" signed="false">
172
+ <xtce:IntegerDataEncoding sizeInBits="10" encoding="unsigned">
173
+ <xtce:DefaultCalibrator>
174
+ <xtce:PolynomialCalibrator>
175
+ <xtce:Term coefficient="0.00488758553274682" exponent="1" />
176
+ </xtce:PolynomialCalibrator>
177
+ </xtce:DefaultCalibrator>
178
+ </xtce:IntegerDataEncoding>
179
+ </xtce:IntegerParameterType>
180
+ <xtce:IntegerParameterType name="HIT_HSKP.LEAK_I_55" signed="false">
181
+ <xtce:IntegerDataEncoding sizeInBits="10" encoding="unsigned">
182
+ <xtce:DefaultCalibrator>
183
+ <xtce:PolynomialCalibrator>
184
+ <xtce:Term coefficient="0.00488758553274682" exponent="1" />
185
+ </xtce:PolynomialCalibrator>
186
+ </xtce:DefaultCalibrator>
187
+ </xtce:IntegerDataEncoding>
188
+ </xtce:IntegerParameterType>
189
+ <xtce:IntegerParameterType name="HIT_HSKP.LEAK_I_54" signed="false">
190
+ <xtce:IntegerDataEncoding sizeInBits="10" encoding="unsigned">
191
+ <xtce:DefaultCalibrator>
192
+ <xtce:PolynomialCalibrator>
193
+ <xtce:Term coefficient="0.00488758553274682" exponent="1" />
194
+ </xtce:PolynomialCalibrator>
195
+ </xtce:DefaultCalibrator>
196
+ </xtce:IntegerDataEncoding>
197
+ </xtce:IntegerParameterType>
198
+ <xtce:IntegerParameterType name="HIT_HSKP.LEAK_I_53" signed="false">
199
+ <xtce:IntegerDataEncoding sizeInBits="10" encoding="unsigned">
200
+ <xtce:DefaultCalibrator>
201
+ <xtce:PolynomialCalibrator>
202
+ <xtce:Term coefficient="0.00488758553274682" exponent="1" />
203
+ </xtce:PolynomialCalibrator>
204
+ </xtce:DefaultCalibrator>
205
+ </xtce:IntegerDataEncoding>
206
+ </xtce:IntegerParameterType>
207
+ <xtce:IntegerParameterType name="HIT_HSKP.LEAK_I_52" signed="false">
208
+ <xtce:IntegerDataEncoding sizeInBits="10" encoding="unsigned">
209
+ <xtce:DefaultCalibrator>
210
+ <xtce:PolynomialCalibrator>
211
+ <xtce:Term coefficient="0.00488758553274682" exponent="1" />
212
+ </xtce:PolynomialCalibrator>
213
+ </xtce:DefaultCalibrator>
214
+ </xtce:IntegerDataEncoding>
215
+ </xtce:IntegerParameterType>
216
+ <xtce:IntegerParameterType name="HIT_HSKP.LEAK_I_51" signed="false">
217
+ <xtce:IntegerDataEncoding sizeInBits="10" encoding="unsigned">
218
+ <xtce:DefaultCalibrator>
219
+ <xtce:PolynomialCalibrator>
220
+ <xtce:Term coefficient="0.00488758553274682" exponent="1" />
221
+ </xtce:PolynomialCalibrator>
222
+ </xtce:DefaultCalibrator>
223
+ </xtce:IntegerDataEncoding>
224
+ </xtce:IntegerParameterType>
225
+ <xtce:IntegerParameterType name="HIT_HSKP.LEAK_I_50" signed="false">
226
+ <xtce:IntegerDataEncoding sizeInBits="10" encoding="unsigned">
227
+ <xtce:DefaultCalibrator>
228
+ <xtce:PolynomialCalibrator>
229
+ <xtce:Term coefficient="0.00488758553274682" exponent="1" />
230
+ </xtce:PolynomialCalibrator>
231
+ </xtce:DefaultCalibrator>
232
+ </xtce:IntegerDataEncoding>
233
+ </xtce:IntegerParameterType>
234
+ <xtce:IntegerParameterType name="HIT_HSKP.LEAK_I_49" signed="false">
235
+ <xtce:IntegerDataEncoding sizeInBits="10" encoding="unsigned">
236
+ <xtce:DefaultCalibrator>
237
+ <xtce:PolynomialCalibrator>
238
+ <xtce:Term coefficient="0.00488758553274682" exponent="1" />
239
+ </xtce:PolynomialCalibrator>
240
+ </xtce:DefaultCalibrator>
241
+ </xtce:IntegerDataEncoding>
242
+ </xtce:IntegerParameterType>
243
+ <xtce:IntegerParameterType name="HIT_HSKP.LEAK_I_48" signed="false">
244
+ <xtce:IntegerDataEncoding sizeInBits="10" encoding="unsigned">
245
+ <xtce:DefaultCalibrator>
246
+ <xtce:PolynomialCalibrator>
247
+ <xtce:Term coefficient="0.00488758553274682" exponent="1" />
248
+ </xtce:PolynomialCalibrator>
249
+ </xtce:DefaultCalibrator>
250
+ </xtce:IntegerDataEncoding>
251
+ </xtce:IntegerParameterType>
252
+ <xtce:IntegerParameterType name="HIT_HSKP.LEAK_I_47" signed="false">
253
+ <xtce:IntegerDataEncoding sizeInBits="10" encoding="unsigned">
254
+ <xtce:DefaultCalibrator>
255
+ <xtce:PolynomialCalibrator>
256
+ <xtce:Term coefficient="0.00488758553274682" exponent="1" />
257
+ </xtce:PolynomialCalibrator>
258
+ </xtce:DefaultCalibrator>
259
+ </xtce:IntegerDataEncoding>
260
+ </xtce:IntegerParameterType>
261
+ <xtce:IntegerParameterType name="HIT_HSKP.LEAK_I_46" signed="false">
262
+ <xtce:IntegerDataEncoding sizeInBits="10" encoding="unsigned">
263
+ <xtce:DefaultCalibrator>
264
+ <xtce:PolynomialCalibrator>
265
+ <xtce:Term coefficient="0.00488758553274682" exponent="1" />
266
+ </xtce:PolynomialCalibrator>
267
+ </xtce:DefaultCalibrator>
268
+ </xtce:IntegerDataEncoding>
269
+ </xtce:IntegerParameterType>
270
+ <xtce:IntegerParameterType name="HIT_HSKP.LEAK_I_45" signed="false">
271
+ <xtce:IntegerDataEncoding sizeInBits="10" encoding="unsigned">
272
+ <xtce:DefaultCalibrator>
273
+ <xtce:PolynomialCalibrator>
274
+ <xtce:Term coefficient="0.00488758553274682" exponent="1" />
275
+ </xtce:PolynomialCalibrator>
276
+ </xtce:DefaultCalibrator>
277
+ </xtce:IntegerDataEncoding>
278
+ </xtce:IntegerParameterType>
279
+ <xtce:IntegerParameterType name="HIT_HSKP.LEAK_I_44" signed="false">
280
+ <xtce:IntegerDataEncoding sizeInBits="10" encoding="unsigned">
281
+ <xtce:DefaultCalibrator>
282
+ <xtce:PolynomialCalibrator>
283
+ <xtce:Term coefficient="0.00488758553274682" exponent="1" />
284
+ </xtce:PolynomialCalibrator>
285
+ </xtce:DefaultCalibrator>
286
+ </xtce:IntegerDataEncoding>
287
+ </xtce:IntegerParameterType>
288
+ <xtce:IntegerParameterType name="HIT_HSKP.LEAK_I_43" signed="false">
289
+ <xtce:IntegerDataEncoding sizeInBits="10" encoding="unsigned">
290
+ <xtce:DefaultCalibrator>
291
+ <xtce:PolynomialCalibrator>
292
+ <xtce:Term coefficient="0.00488758553274682" exponent="1" />
293
+ </xtce:PolynomialCalibrator>
294
+ </xtce:DefaultCalibrator>
295
+ </xtce:IntegerDataEncoding>
296
+ </xtce:IntegerParameterType>
297
+ <xtce:IntegerParameterType name="HIT_HSKP.LEAK_I_42" signed="false">
298
+ <xtce:IntegerDataEncoding sizeInBits="10" encoding="unsigned">
299
+ <xtce:DefaultCalibrator>
300
+ <xtce:PolynomialCalibrator>
301
+ <xtce:Term coefficient="0.00488758553274682" exponent="1" />
302
+ </xtce:PolynomialCalibrator>
303
+ </xtce:DefaultCalibrator>
304
+ </xtce:IntegerDataEncoding>
305
+ </xtce:IntegerParameterType>
306
+ <xtce:IntegerParameterType name="HIT_HSKP.LEAK_I_41" signed="false">
307
+ <xtce:IntegerDataEncoding sizeInBits="10" encoding="unsigned">
308
+ <xtce:DefaultCalibrator>
309
+ <xtce:PolynomialCalibrator>
310
+ <xtce:Term coefficient="0.00488758553274682" exponent="1" />
311
+ </xtce:PolynomialCalibrator>
312
+ </xtce:DefaultCalibrator>
313
+ </xtce:IntegerDataEncoding>
314
+ </xtce:IntegerParameterType>
315
+ <xtce:IntegerParameterType name="HIT_HSKP.LEAK_I_40" signed="false">
316
+ <xtce:IntegerDataEncoding sizeInBits="10" encoding="unsigned">
317
+ <xtce:DefaultCalibrator>
318
+ <xtce:PolynomialCalibrator>
319
+ <xtce:Term coefficient="0.00488758553274682" exponent="1" />
320
+ </xtce:PolynomialCalibrator>
321
+ </xtce:DefaultCalibrator>
322
+ </xtce:IntegerDataEncoding>
323
+ </xtce:IntegerParameterType>
324
+ <xtce:IntegerParameterType name="HIT_HSKP.LEAK_I_39" signed="false">
325
+ <xtce:IntegerDataEncoding sizeInBits="10" encoding="unsigned">
326
+ <xtce:DefaultCalibrator>
327
+ <xtce:PolynomialCalibrator>
328
+ <xtce:Term coefficient="0.00488758553274682" exponent="1" />
329
+ </xtce:PolynomialCalibrator>
330
+ </xtce:DefaultCalibrator>
331
+ </xtce:IntegerDataEncoding>
332
+ </xtce:IntegerParameterType>
333
+ <xtce:IntegerParameterType name="HIT_HSKP.LEAK_I_38" signed="false">
334
+ <xtce:IntegerDataEncoding sizeInBits="10" encoding="unsigned">
335
+ <xtce:DefaultCalibrator>
336
+ <xtce:PolynomialCalibrator>
337
+ <xtce:Term coefficient="0.00488758553274682" exponent="1" />
338
+ </xtce:PolynomialCalibrator>
339
+ </xtce:DefaultCalibrator>
340
+ </xtce:IntegerDataEncoding>
341
+ </xtce:IntegerParameterType>
342
+ <xtce:IntegerParameterType name="HIT_HSKP.LEAK_I_37" signed="false">
343
+ <xtce:IntegerDataEncoding sizeInBits="10" encoding="unsigned">
344
+ <xtce:DefaultCalibrator>
345
+ <xtce:PolynomialCalibrator>
346
+ <xtce:Term coefficient="0.00488758553274682" exponent="1" />
347
+ </xtce:PolynomialCalibrator>
348
+ </xtce:DefaultCalibrator>
349
+ </xtce:IntegerDataEncoding>
350
+ </xtce:IntegerParameterType>
351
+ <xtce:IntegerParameterType name="HIT_HSKP.LEAK_I_36" signed="false">
352
+ <xtce:IntegerDataEncoding sizeInBits="10" encoding="unsigned">
353
+ <xtce:DefaultCalibrator>
354
+ <xtce:PolynomialCalibrator>
355
+ <xtce:Term coefficient="0.00488758553274682" exponent="1" />
356
+ </xtce:PolynomialCalibrator>
357
+ </xtce:DefaultCalibrator>
358
+ </xtce:IntegerDataEncoding>
359
+ </xtce:IntegerParameterType>
360
+ <xtce:IntegerParameterType name="HIT_HSKP.LEAK_I_35" signed="false">
361
+ <xtce:IntegerDataEncoding sizeInBits="10" encoding="unsigned">
362
+ <xtce:DefaultCalibrator>
363
+ <xtce:PolynomialCalibrator>
364
+ <xtce:Term coefficient="0.00488758553274682" exponent="1" />
365
+ </xtce:PolynomialCalibrator>
366
+ </xtce:DefaultCalibrator>
367
+ </xtce:IntegerDataEncoding>
368
+ </xtce:IntegerParameterType>
369
+ <xtce:IntegerParameterType name="HIT_HSKP.LEAK_I_34" signed="false">
370
+ <xtce:IntegerDataEncoding sizeInBits="10" encoding="unsigned">
371
+ <xtce:DefaultCalibrator>
372
+ <xtce:PolynomialCalibrator>
373
+ <xtce:Term coefficient="0.00488758553274682" exponent="1" />
374
+ </xtce:PolynomialCalibrator>
375
+ </xtce:DefaultCalibrator>
376
+ </xtce:IntegerDataEncoding>
377
+ </xtce:IntegerParameterType>
378
+ <xtce:IntegerParameterType name="HIT_HSKP.LEAK_I_33" signed="false">
379
+ <xtce:IntegerDataEncoding sizeInBits="10" encoding="unsigned">
380
+ <xtce:DefaultCalibrator>
381
+ <xtce:PolynomialCalibrator>
382
+ <xtce:Term coefficient="0.00488758553274682" exponent="1" />
383
+ </xtce:PolynomialCalibrator>
384
+ </xtce:DefaultCalibrator>
385
+ </xtce:IntegerDataEncoding>
386
+ </xtce:IntegerParameterType>
387
+ <xtce:IntegerParameterType name="HIT_HSKP.LEAK_I_32" signed="false">
388
+ <xtce:IntegerDataEncoding sizeInBits="10" encoding="unsigned">
389
+ <xtce:DefaultCalibrator>
390
+ <xtce:PolynomialCalibrator>
391
+ <xtce:Term coefficient="0.00488758553274682" exponent="1" />
392
+ </xtce:PolynomialCalibrator>
393
+ </xtce:DefaultCalibrator>
394
+ </xtce:IntegerDataEncoding>
395
+ </xtce:IntegerParameterType>
396
+ <xtce:IntegerParameterType name="HIT_HSKP.LEAK_I_31" signed="false">
397
+ <xtce:IntegerDataEncoding sizeInBits="10" encoding="unsigned">
398
+ <xtce:DefaultCalibrator>
399
+ <xtce:PolynomialCalibrator>
400
+ <xtce:Term coefficient="0.00488758553274682" exponent="1" />
401
+ </xtce:PolynomialCalibrator>
402
+ </xtce:DefaultCalibrator>
403
+ </xtce:IntegerDataEncoding>
404
+ </xtce:IntegerParameterType>
405
+ <xtce:IntegerParameterType name="HIT_HSKP.LEAK_I_30" signed="false">
406
+ <xtce:IntegerDataEncoding sizeInBits="10" encoding="unsigned">
407
+ <xtce:DefaultCalibrator>
408
+ <xtce:PolynomialCalibrator>
409
+ <xtce:Term coefficient="0.00488758553274682" exponent="1" />
410
+ </xtce:PolynomialCalibrator>
411
+ </xtce:DefaultCalibrator>
412
+ </xtce:IntegerDataEncoding>
413
+ </xtce:IntegerParameterType>
414
+ <xtce:IntegerParameterType name="HIT_HSKP.LEAK_I_29" signed="false">
415
+ <xtce:IntegerDataEncoding sizeInBits="10" encoding="unsigned">
416
+ <xtce:DefaultCalibrator>
417
+ <xtce:PolynomialCalibrator>
418
+ <xtce:Term coefficient="0.00488758553274682" exponent="1" />
419
+ </xtce:PolynomialCalibrator>
420
+ </xtce:DefaultCalibrator>
421
+ </xtce:IntegerDataEncoding>
422
+ </xtce:IntegerParameterType>
423
+ <xtce:IntegerParameterType name="HIT_HSKP.LEAK_I_28" signed="false">
424
+ <xtce:IntegerDataEncoding sizeInBits="10" encoding="unsigned">
425
+ <xtce:DefaultCalibrator>
426
+ <xtce:PolynomialCalibrator>
427
+ <xtce:Term coefficient="0.00488758553274682" exponent="1" />
428
+ </xtce:PolynomialCalibrator>
429
+ </xtce:DefaultCalibrator>
430
+ </xtce:IntegerDataEncoding>
431
+ </xtce:IntegerParameterType>
432
+ <xtce:IntegerParameterType name="HIT_HSKP.LEAK_I_27" signed="false">
433
+ <xtce:IntegerDataEncoding sizeInBits="10" encoding="unsigned">
434
+ <xtce:DefaultCalibrator>
435
+ <xtce:PolynomialCalibrator>
436
+ <xtce:Term coefficient="0.00488758553274682" exponent="1" />
437
+ </xtce:PolynomialCalibrator>
438
+ </xtce:DefaultCalibrator>
439
+ </xtce:IntegerDataEncoding>
440
+ </xtce:IntegerParameterType>
441
+ <xtce:IntegerParameterType name="HIT_HSKP.LEAK_I_26" signed="false">
442
+ <xtce:IntegerDataEncoding sizeInBits="10" encoding="unsigned">
443
+ <xtce:DefaultCalibrator>
444
+ <xtce:PolynomialCalibrator>
445
+ <xtce:Term coefficient="0.00488758553274682" exponent="1" />
446
+ </xtce:PolynomialCalibrator>
447
+ </xtce:DefaultCalibrator>
448
+ </xtce:IntegerDataEncoding>
449
+ </xtce:IntegerParameterType>
450
+ <xtce:IntegerParameterType name="HIT_HSKP.LEAK_I_25" signed="false">
451
+ <xtce:IntegerDataEncoding sizeInBits="10" encoding="unsigned">
452
+ <xtce:DefaultCalibrator>
453
+ <xtce:PolynomialCalibrator>
454
+ <xtce:Term coefficient="0.00488758553274682" exponent="1" />
455
+ </xtce:PolynomialCalibrator>
456
+ </xtce:DefaultCalibrator>
457
+ </xtce:IntegerDataEncoding>
458
+ </xtce:IntegerParameterType>
459
+ <xtce:IntegerParameterType name="HIT_HSKP.LEAK_I_24" signed="false">
460
+ <xtce:IntegerDataEncoding sizeInBits="10" encoding="unsigned">
461
+ <xtce:DefaultCalibrator>
462
+ <xtce:PolynomialCalibrator>
463
+ <xtce:Term coefficient="0.00488758553274682" exponent="1" />
464
+ </xtce:PolynomialCalibrator>
465
+ </xtce:DefaultCalibrator>
466
+ </xtce:IntegerDataEncoding>
467
+ </xtce:IntegerParameterType>
468
+ <xtce:IntegerParameterType name="HIT_HSKP.LEAK_I_23" signed="false">
469
+ <xtce:IntegerDataEncoding sizeInBits="10" encoding="unsigned">
470
+ <xtce:DefaultCalibrator>
471
+ <xtce:PolynomialCalibrator>
472
+ <xtce:Term coefficient="0.00488758553274682" exponent="1" />
473
+ </xtce:PolynomialCalibrator>
474
+ </xtce:DefaultCalibrator>
475
+ </xtce:IntegerDataEncoding>
476
+ </xtce:IntegerParameterType>
477
+ <xtce:IntegerParameterType name="HIT_HSKP.LEAK_I_22" signed="false">
478
+ <xtce:IntegerDataEncoding sizeInBits="10" encoding="unsigned">
479
+ <xtce:DefaultCalibrator>
480
+ <xtce:PolynomialCalibrator>
481
+ <xtce:Term coefficient="0.00488758553274682" exponent="1" />
482
+ </xtce:PolynomialCalibrator>
483
+ </xtce:DefaultCalibrator>
484
+ </xtce:IntegerDataEncoding>
485
+ </xtce:IntegerParameterType>
486
+ <xtce:IntegerParameterType name="HIT_HSKP.LEAK_I_21" signed="false">
487
+ <xtce:IntegerDataEncoding sizeInBits="10" encoding="unsigned">
488
+ <xtce:DefaultCalibrator>
489
+ <xtce:PolynomialCalibrator>
490
+ <xtce:Term coefficient="0.00488758553274682" exponent="1" />
491
+ </xtce:PolynomialCalibrator>
492
+ </xtce:DefaultCalibrator>
493
+ </xtce:IntegerDataEncoding>
494
+ </xtce:IntegerParameterType>
495
+ <xtce:IntegerParameterType name="HIT_HSKP.LEAK_I_20" signed="false">
496
+ <xtce:IntegerDataEncoding sizeInBits="10" encoding="unsigned">
497
+ <xtce:DefaultCalibrator>
498
+ <xtce:PolynomialCalibrator>
499
+ <xtce:Term coefficient="0.00488758553274682" exponent="1" />
500
+ </xtce:PolynomialCalibrator>
501
+ </xtce:DefaultCalibrator>
502
+ </xtce:IntegerDataEncoding>
503
+ </xtce:IntegerParameterType>
504
+ <xtce:IntegerParameterType name="HIT_HSKP.LEAK_I_19" signed="false">
505
+ <xtce:IntegerDataEncoding sizeInBits="10" encoding="unsigned">
506
+ <xtce:DefaultCalibrator>
507
+ <xtce:PolynomialCalibrator>
508
+ <xtce:Term coefficient="0.00488758553274682" exponent="1" />
509
+ </xtce:PolynomialCalibrator>
510
+ </xtce:DefaultCalibrator>
511
+ </xtce:IntegerDataEncoding>
512
+ </xtce:IntegerParameterType>
513
+ <xtce:IntegerParameterType name="HIT_HSKP.LEAK_I_18" signed="false">
514
+ <xtce:IntegerDataEncoding sizeInBits="10" encoding="unsigned">
515
+ <xtce:DefaultCalibrator>
516
+ <xtce:PolynomialCalibrator>
517
+ <xtce:Term coefficient="0.00488758553274682" exponent="1" />
518
+ </xtce:PolynomialCalibrator>
519
+ </xtce:DefaultCalibrator>
520
+ </xtce:IntegerDataEncoding>
521
+ </xtce:IntegerParameterType>
522
+ <xtce:IntegerParameterType name="HIT_HSKP.LEAK_I_17" signed="false">
523
+ <xtce:IntegerDataEncoding sizeInBits="10" encoding="unsigned">
524
+ <xtce:DefaultCalibrator>
525
+ <xtce:PolynomialCalibrator>
526
+ <xtce:Term coefficient="0.00488758553274682" exponent="1" />
527
+ </xtce:PolynomialCalibrator>
528
+ </xtce:DefaultCalibrator>
529
+ </xtce:IntegerDataEncoding>
530
+ </xtce:IntegerParameterType>
531
+ <xtce:IntegerParameterType name="HIT_HSKP.LEAK_I_16" signed="false">
532
+ <xtce:IntegerDataEncoding sizeInBits="10" encoding="unsigned">
533
+ <xtce:DefaultCalibrator>
534
+ <xtce:PolynomialCalibrator>
535
+ <xtce:Term coefficient="0.00488758553274682" exponent="1" />
536
+ </xtce:PolynomialCalibrator>
537
+ </xtce:DefaultCalibrator>
538
+ </xtce:IntegerDataEncoding>
539
+ </xtce:IntegerParameterType>
540
+ <xtce:IntegerParameterType name="HIT_HSKP.LEAK_I_15" signed="false">
541
+ <xtce:IntegerDataEncoding sizeInBits="10" encoding="unsigned">
542
+ <xtce:DefaultCalibrator>
543
+ <xtce:PolynomialCalibrator>
544
+ <xtce:Term coefficient="0.00488758553274682" exponent="1" />
545
+ </xtce:PolynomialCalibrator>
546
+ </xtce:DefaultCalibrator>
547
+ </xtce:IntegerDataEncoding>
548
+ </xtce:IntegerParameterType>
549
+ <xtce:IntegerParameterType name="HIT_HSKP.LEAK_I_14" signed="false">
550
+ <xtce:IntegerDataEncoding sizeInBits="10" encoding="unsigned">
551
+ <xtce:DefaultCalibrator>
552
+ <xtce:PolynomialCalibrator>
553
+ <xtce:Term coefficient="0.00488758553274682" exponent="1" />
554
+ </xtce:PolynomialCalibrator>
555
+ </xtce:DefaultCalibrator>
556
+ </xtce:IntegerDataEncoding>
557
+ </xtce:IntegerParameterType>
558
+ <xtce:IntegerParameterType name="HIT_HSKP.LEAK_I_13" signed="false">
559
+ <xtce:IntegerDataEncoding sizeInBits="10" encoding="unsigned">
560
+ <xtce:DefaultCalibrator>
561
+ <xtce:PolynomialCalibrator>
562
+ <xtce:Term coefficient="0.00488758553274682" exponent="1" />
563
+ </xtce:PolynomialCalibrator>
564
+ </xtce:DefaultCalibrator>
565
+ </xtce:IntegerDataEncoding>
566
+ </xtce:IntegerParameterType>
567
+ <xtce:IntegerParameterType name="HIT_HSKP.LEAK_I_12" signed="false">
568
+ <xtce:IntegerDataEncoding sizeInBits="10" encoding="unsigned">
569
+ <xtce:DefaultCalibrator>
570
+ <xtce:PolynomialCalibrator>
571
+ <xtce:Term coefficient="0.00488758553274682" exponent="1" />
572
+ </xtce:PolynomialCalibrator>
573
+ </xtce:DefaultCalibrator>
574
+ </xtce:IntegerDataEncoding>
575
+ </xtce:IntegerParameterType>
576
+ <xtce:IntegerParameterType name="HIT_HSKP.LEAK_I_11" signed="false">
577
+ <xtce:IntegerDataEncoding sizeInBits="10" encoding="unsigned">
578
+ <xtce:DefaultCalibrator>
579
+ <xtce:PolynomialCalibrator>
580
+ <xtce:Term coefficient="0.00488758553274682" exponent="1" />
581
+ </xtce:PolynomialCalibrator>
582
+ </xtce:DefaultCalibrator>
583
+ </xtce:IntegerDataEncoding>
584
+ </xtce:IntegerParameterType>
585
+ <xtce:IntegerParameterType name="HIT_HSKP.LEAK_I_10" signed="false">
586
+ <xtce:IntegerDataEncoding sizeInBits="10" encoding="unsigned">
587
+ <xtce:DefaultCalibrator>
588
+ <xtce:PolynomialCalibrator>
589
+ <xtce:Term coefficient="0.00488758553274682" exponent="1" />
590
+ </xtce:PolynomialCalibrator>
591
+ </xtce:DefaultCalibrator>
592
+ </xtce:IntegerDataEncoding>
593
+ </xtce:IntegerParameterType>
594
+ <xtce:IntegerParameterType name="HIT_HSKP.LEAK_I_09" signed="false">
595
+ <xtce:IntegerDataEncoding sizeInBits="10" encoding="unsigned">
596
+ <xtce:DefaultCalibrator>
597
+ <xtce:PolynomialCalibrator>
598
+ <xtce:Term coefficient="0.00488758553274682" exponent="1" />
599
+ </xtce:PolynomialCalibrator>
600
+ </xtce:DefaultCalibrator>
601
+ </xtce:IntegerDataEncoding>
602
+ </xtce:IntegerParameterType>
603
+ <xtce:IntegerParameterType name="HIT_HSKP.LEAK_I_08" signed="false">
604
+ <xtce:IntegerDataEncoding sizeInBits="10" encoding="unsigned">
605
+ <xtce:DefaultCalibrator>
606
+ <xtce:PolynomialCalibrator>
607
+ <xtce:Term coefficient="0.00488758553274682" exponent="1" />
608
+ </xtce:PolynomialCalibrator>
609
+ </xtce:DefaultCalibrator>
610
+ </xtce:IntegerDataEncoding>
611
+ </xtce:IntegerParameterType>
612
+ <xtce:IntegerParameterType name="HIT_HSKP.LEAK_I_07" signed="false">
613
+ <xtce:IntegerDataEncoding sizeInBits="10" encoding="unsigned">
614
+ <xtce:DefaultCalibrator>
615
+ <xtce:PolynomialCalibrator>
616
+ <xtce:Term coefficient="0.00488758553274682" exponent="1" />
617
+ </xtce:PolynomialCalibrator>
618
+ </xtce:DefaultCalibrator>
619
+ </xtce:IntegerDataEncoding>
620
+ </xtce:IntegerParameterType>
621
+ <xtce:IntegerParameterType name="HIT_HSKP.LEAK_I_06" signed="false">
622
+ <xtce:IntegerDataEncoding sizeInBits="10" encoding="unsigned">
623
+ <xtce:DefaultCalibrator>
624
+ <xtce:PolynomialCalibrator>
625
+ <xtce:Term coefficient="0.00488758553274682" exponent="1" />
626
+ </xtce:PolynomialCalibrator>
627
+ </xtce:DefaultCalibrator>
628
+ </xtce:IntegerDataEncoding>
629
+ </xtce:IntegerParameterType>
630
+ <xtce:IntegerParameterType name="HIT_HSKP.LEAK_I_05" signed="false">
631
+ <xtce:IntegerDataEncoding sizeInBits="10" encoding="unsigned">
632
+ <xtce:DefaultCalibrator>
633
+ <xtce:PolynomialCalibrator>
634
+ <xtce:Term coefficient="0.00488758553274682" exponent="1" />
635
+ </xtce:PolynomialCalibrator>
636
+ </xtce:DefaultCalibrator>
637
+ </xtce:IntegerDataEncoding>
638
+ </xtce:IntegerParameterType>
639
+ <xtce:IntegerParameterType name="HIT_HSKP.LEAK_I_04" signed="false">
640
+ <xtce:IntegerDataEncoding sizeInBits="10" encoding="unsigned">
641
+ <xtce:DefaultCalibrator>
642
+ <xtce:PolynomialCalibrator>
643
+ <xtce:Term coefficient="0.00488758553274682" exponent="1" />
644
+ </xtce:PolynomialCalibrator>
645
+ </xtce:DefaultCalibrator>
646
+ </xtce:IntegerDataEncoding>
647
+ </xtce:IntegerParameterType>
648
+ <xtce:IntegerParameterType name="HIT_HSKP.LEAK_I_03" signed="false">
649
+ <xtce:IntegerDataEncoding sizeInBits="10" encoding="unsigned">
650
+ <xtce:DefaultCalibrator>
651
+ <xtce:PolynomialCalibrator>
652
+ <xtce:Term coefficient="0.00488758553274682" exponent="1" />
653
+ </xtce:PolynomialCalibrator>
654
+ </xtce:DefaultCalibrator>
655
+ </xtce:IntegerDataEncoding>
656
+ </xtce:IntegerParameterType>
657
+ <xtce:IntegerParameterType name="HIT_HSKP.LEAK_I_02" signed="false">
658
+ <xtce:IntegerDataEncoding sizeInBits="10" encoding="unsigned">
659
+ <xtce:DefaultCalibrator>
660
+ <xtce:PolynomialCalibrator>
661
+ <xtce:Term coefficient="0.00488758553274682" exponent="1" />
662
+ </xtce:PolynomialCalibrator>
663
+ </xtce:DefaultCalibrator>
664
+ </xtce:IntegerDataEncoding>
665
+ </xtce:IntegerParameterType>
666
+ <xtce:IntegerParameterType name="HIT_HSKP.LEAK_I_01" signed="false">
667
+ <xtce:IntegerDataEncoding sizeInBits="10" encoding="unsigned">
668
+ <xtce:DefaultCalibrator>
669
+ <xtce:PolynomialCalibrator>
670
+ <xtce:Term coefficient="0.004887585532746823" exponent="1" />
671
+ </xtce:PolynomialCalibrator>
672
+ </xtce:DefaultCalibrator>
673
+ </xtce:IntegerDataEncoding>
674
+ </xtce:IntegerParameterType>
675
+ <xtce:IntegerParameterType name="HIT_HSKP.LEAK_I_00" signed="false">
676
+ <xtce:IntegerDataEncoding sizeInBits="10" encoding="unsigned">
677
+ <xtce:DefaultCalibrator>
678
+ <xtce:PolynomialCalibrator>
679
+ <xtce:Term coefficient="0.004887585532746823" exponent="1" />
680
+ </xtce:PolynomialCalibrator>
681
+ </xtce:DefaultCalibrator>
682
+ </xtce:IntegerDataEncoding>
683
+ </xtce:IntegerParameterType>
684
+ <xtce:IntegerParameterType name="HIT_HSKP.PHASIC_STAT" signed="false">
685
+ <xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
686
+ </xtce:IntegerParameterType>
687
+ <xtce:IntegerParameterType name="HIT_HSKP.ACTIVE_HEATER" signed="false">
688
+ <xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
689
+ </xtce:IntegerParameterType>
690
+ <xtce:IntegerParameterType name="HIT_HSKP.HEATER_ON" signed="false">
691
+ <xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
692
+ </xtce:IntegerParameterType>
693
+ <xtce:IntegerParameterType name="HIT_HSKP.TEST_PULSER_ON" signed="false">
694
+ <xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
695
+ </xtce:IntegerParameterType>
696
+ <xtce:IntegerParameterType name="HIT_HSKP.DAC0_ENABLE" signed="false">
697
+ <xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
698
+ </xtce:IntegerParameterType>
699
+ <xtce:IntegerParameterType name="HIT_HSKP.DAC1_ENABLE" signed="false">
700
+ <xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
701
+ </xtce:IntegerParameterType>
702
+ <xtce:IntegerParameterType name="HIT_HSKP.HSKP_SPARE3" signed="false">
703
+ <xtce:IntegerDataEncoding sizeInBits="2" encoding="unsigned" />
704
+ </xtce:IntegerParameterType>
705
+ <xtce:IntegerParameterType name="HIT_HSKP.PREAMP_L234A" signed="false">
706
+ <xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
707
+ <xtce:DefaultCalibrator>
708
+ <xtce:PolynomialCalibrator>
709
+ <xtce:Term coefficient="0.00121" exponent="1" />
710
+ </xtce:PolynomialCalibrator>
711
+ </xtce:DefaultCalibrator>
712
+ </xtce:IntegerDataEncoding>
713
+ </xtce:IntegerParameterType>
714
+ <xtce:IntegerParameterType name="HIT_HSKP.PREAMP_L1A" signed="false">
715
+ <xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
716
+ <xtce:DefaultCalibrator>
717
+ <xtce:PolynomialCalibrator>
718
+ <xtce:Term coefficient="0.00121" exponent="1" />
719
+ </xtce:PolynomialCalibrator>
720
+ </xtce:DefaultCalibrator>
721
+ </xtce:IntegerDataEncoding>
722
+ </xtce:IntegerParameterType>
723
+ <xtce:IntegerParameterType name="HIT_HSKP.PREAMP_L1B" signed="false">
724
+ <xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
725
+ <xtce:DefaultCalibrator>
726
+ <xtce:PolynomialCalibrator>
727
+ <xtce:Term coefficient="0.00121" exponent="1" />
728
+ </xtce:PolynomialCalibrator>
729
+ </xtce:DefaultCalibrator>
730
+ </xtce:IntegerDataEncoding>
731
+ </xtce:IntegerParameterType>
732
+ <xtce:IntegerParameterType name="HIT_HSKP.PREAMP_L234B" signed="false">
733
+ <xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
734
+ <xtce:DefaultCalibrator>
735
+ <xtce:PolynomialCalibrator>
736
+ <xtce:Term coefficient="0.00121" exponent="1" />
737
+ </xtce:PolynomialCalibrator>
738
+ </xtce:DefaultCalibrator>
739
+ </xtce:IntegerDataEncoding>
740
+ </xtce:IntegerParameterType>
741
+ <xtce:IntegerParameterType name="HIT_HSKP.TEMP0" signed="false">
742
+ <xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
743
+ <xtce:DefaultCalibrator>
744
+ <xtce:PolynomialCalibrator>
745
+ <xtce:Term coefficient="-999.0" exponent="0" />
746
+ </xtce:PolynomialCalibrator>
747
+ </xtce:DefaultCalibrator>
748
+ </xtce:IntegerDataEncoding>
749
+ </xtce:IntegerParameterType>
750
+ <xtce:IntegerParameterType name="HIT_HSKP.TEMP1" signed="false">
751
+ <xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
752
+ <xtce:DefaultCalibrator>
753
+ <xtce:PolynomialCalibrator>
754
+ <xtce:Term coefficient="-999.0" exponent="0" />
755
+ </xtce:PolynomialCalibrator>
756
+ </xtce:DefaultCalibrator>
757
+ </xtce:IntegerDataEncoding>
758
+ </xtce:IntegerParameterType>
759
+ <xtce:IntegerParameterType name="HIT_HSKP.TEMP2" signed="false">
760
+ <xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
761
+ <xtce:DefaultCalibrator>
762
+ <xtce:PolynomialCalibrator>
763
+ <xtce:Term coefficient="-999.0" exponent="0" />
764
+ </xtce:PolynomialCalibrator>
765
+ </xtce:DefaultCalibrator>
766
+ </xtce:IntegerDataEncoding>
767
+ </xtce:IntegerParameterType>
768
+ <xtce:IntegerParameterType name="HIT_HSKP.TEMP3" signed="false">
769
+ <xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
770
+ <xtce:DefaultCalibrator>
771
+ <xtce:PolynomialCalibrator>
772
+ <xtce:Term coefficient="-999.0" exponent="0" />
773
+ </xtce:PolynomialCalibrator>
774
+ </xtce:DefaultCalibrator>
775
+ </xtce:IntegerDataEncoding>
776
+ </xtce:IntegerParameterType>
777
+ <xtce:IntegerParameterType name="HIT_HSKP.HSKP_SPARE4" signed="false">
778
+ <xtce:IntegerDataEncoding sizeInBits="8" encoding="unsigned" />
779
+ </xtce:IntegerParameterType>
780
+ <xtce:IntegerParameterType name="HIT_HSKP.ANALOG_TEMP" signed="false">
781
+ <xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
782
+ <xtce:DefaultCalibrator>
783
+ <xtce:PolynomialCalibrator>
784
+ <xtce:Term coefficient="-999.0" exponent="0" />
785
+ </xtce:PolynomialCalibrator>
786
+ </xtce:DefaultCalibrator>
787
+ </xtce:IntegerDataEncoding>
788
+ </xtce:IntegerParameterType>
789
+ <xtce:IntegerParameterType name="HIT_HSKP.HVPS_TEMP" signed="false">
790
+ <xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
791
+ <xtce:DefaultCalibrator>
792
+ <xtce:PolynomialCalibrator>
793
+ <xtce:Term coefficient="-999.0" exponent="0" />
794
+ </xtce:PolynomialCalibrator>
795
+ </xtce:DefaultCalibrator>
796
+ </xtce:IntegerDataEncoding>
797
+ </xtce:IntegerParameterType>
798
+ <xtce:IntegerParameterType name="HIT_HSKP.IDPU_TEMP" signed="false">
799
+ <xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
800
+ <xtce:DefaultCalibrator>
801
+ <xtce:PolynomialCalibrator>
802
+ <xtce:Term coefficient="-999.0" exponent="0" />
803
+ </xtce:PolynomialCalibrator>
804
+ </xtce:DefaultCalibrator>
805
+ </xtce:IntegerDataEncoding>
806
+ </xtce:IntegerParameterType>
807
+ <xtce:IntegerParameterType name="HIT_HSKP.LVPS_TEMP" signed="false">
808
+ <xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
809
+ <xtce:DefaultCalibrator>
810
+ <xtce:PolynomialCalibrator>
811
+ <xtce:Term coefficient="-999.0" exponent="0" />
812
+ </xtce:PolynomialCalibrator>
813
+ </xtce:DefaultCalibrator>
814
+ </xtce:IntegerDataEncoding>
815
+ </xtce:IntegerParameterType>
816
+ <xtce:IntegerParameterType name="HIT_HSKP.EBOX_3D4VD" signed="false">
817
+ <xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
818
+ <xtce:DefaultCalibrator>
819
+ <xtce:PolynomialCalibrator>
820
+ <xtce:Term coefficient="0.001242" exponent="1" />
821
+ </xtce:PolynomialCalibrator>
822
+ </xtce:DefaultCalibrator>
823
+ </xtce:IntegerDataEncoding>
824
+ </xtce:IntegerParameterType>
825
+ <xtce:IntegerParameterType name="HIT_HSKP.EBOX_5D1VD" signed="false">
826
+ <xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
827
+ <xtce:DefaultCalibrator>
828
+ <xtce:PolynomialCalibrator>
829
+ <xtce:Term coefficient="0.00151" exponent="1" />
830
+ </xtce:PolynomialCalibrator>
831
+ </xtce:DefaultCalibrator>
832
+ </xtce:IntegerDataEncoding>
833
+ </xtce:IntegerParameterType>
834
+ <xtce:IntegerParameterType name="HIT_HSKP.EBOX_P12VA" signed="false">
835
+ <xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
836
+ <xtce:DefaultCalibrator>
837
+ <xtce:PolynomialCalibrator>
838
+ <xtce:Term coefficient="0.004007" exponent="1" />
839
+ </xtce:PolynomialCalibrator>
840
+ </xtce:DefaultCalibrator>
841
+ </xtce:IntegerDataEncoding>
842
+ </xtce:IntegerParameterType>
843
+ <xtce:IntegerParameterType name="HIT_HSKP.EBOX_M12VA" signed="false">
844
+ <xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
845
+ <xtce:DefaultCalibrator>
846
+ <xtce:PolynomialCalibrator>
847
+ <xtce:Term coefficient="-13.95" exponent="0" />
848
+ <xtce:Term coefficient="0.00468" exponent="1" />
849
+ </xtce:PolynomialCalibrator>
850
+ </xtce:DefaultCalibrator>
851
+ </xtce:IntegerDataEncoding>
852
+ </xtce:IntegerParameterType>
853
+ <xtce:IntegerParameterType name="HIT_HSKP.EBOX_P5D7VA" signed="false">
854
+ <xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
855
+ <xtce:DefaultCalibrator>
856
+ <xtce:PolynomialCalibrator>
857
+ <xtce:Term coefficient="0.001835" exponent="1" />
858
+ </xtce:PolynomialCalibrator>
859
+ </xtce:DefaultCalibrator>
860
+ </xtce:IntegerDataEncoding>
861
+ </xtce:IntegerParameterType>
862
+ <xtce:IntegerParameterType name="HIT_HSKP.EBOX_M5D7VA" signed="false">
863
+ <xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
864
+ <xtce:DefaultCalibrator>
865
+ <xtce:PolynomialCalibrator>
866
+ <xtce:Term coefficient="-7.274" exponent="0" />
867
+ <xtce:Term coefficient="0.003028" exponent="1" />
868
+ </xtce:PolynomialCalibrator>
869
+ </xtce:DefaultCalibrator>
870
+ </xtce:IntegerDataEncoding>
871
+ </xtce:IntegerParameterType>
872
+ <xtce:IntegerParameterType name="HIT_HSKP.REF_P5V" signed="false">
873
+ <xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
874
+ <xtce:DefaultCalibrator>
875
+ <xtce:PolynomialCalibrator>
876
+ <xtce:Term coefficient="0.001526" exponent="1" />
877
+ </xtce:PolynomialCalibrator>
878
+ </xtce:DefaultCalibrator>
879
+ </xtce:IntegerDataEncoding>
880
+ </xtce:IntegerParameterType>
881
+ <xtce:IntegerParameterType name="HIT_HSKP.L1AB_BIAS" signed="false">
882
+ <xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
883
+ <xtce:DefaultCalibrator>
884
+ <xtce:PolynomialCalibrator>
885
+ <xtce:Term coefficient="-0.98574" exponent="0" />
886
+ <xtce:Term coefficient="0.0056389" exponent="1" />
887
+ </xtce:PolynomialCalibrator>
888
+ </xtce:DefaultCalibrator>
889
+ </xtce:IntegerDataEncoding>
890
+ </xtce:IntegerParameterType>
891
+ <xtce:IntegerParameterType name="HIT_HSKP.L2AB_BIAS" signed="false">
892
+ <xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
893
+ <xtce:DefaultCalibrator>
894
+ <xtce:PolynomialCalibrator>
895
+ <xtce:Term coefficient="-0.94715" exponent="0" />
896
+ <xtce:Term coefficient="0.0056063" exponent="1" />
897
+ </xtce:PolynomialCalibrator>
898
+ </xtce:DefaultCalibrator>
899
+ </xtce:IntegerDataEncoding>
900
+ </xtce:IntegerParameterType>
901
+ <xtce:IntegerParameterType name="HIT_HSKP.L34A_BIAS" signed="false">
902
+ <xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
903
+ <xtce:DefaultCalibrator>
904
+ <xtce:PolynomialCalibrator>
905
+ <xtce:Term coefficient="-12.775" exponent="0" />
906
+ <xtce:Term coefficient="0.066753" exponent="1" />
907
+ </xtce:PolynomialCalibrator>
908
+ </xtce:DefaultCalibrator>
909
+ </xtce:IntegerDataEncoding>
910
+ </xtce:IntegerParameterType>
911
+ <xtce:IntegerParameterType name="HIT_HSKP.L34B_BIAS" signed="false">
912
+ <xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
913
+ <xtce:DefaultCalibrator>
914
+ <xtce:PolynomialCalibrator>
915
+ <xtce:Term coefficient="-12.461" exponent="0" />
916
+ <xtce:Term coefficient="0.066097" exponent="1" />
917
+ </xtce:PolynomialCalibrator>
918
+ </xtce:DefaultCalibrator>
919
+ </xtce:IntegerDataEncoding>
920
+ </xtce:IntegerParameterType>
921
+ <xtce:IntegerParameterType name="HIT_HSKP.EBOX_P2D0VD" signed="false">
922
+ <xtce:IntegerDataEncoding sizeInBits="12" encoding="unsigned">
923
+ <xtce:DefaultCalibrator>
924
+ <xtce:PolynomialCalibrator>
925
+ <xtce:Term coefficient="0.001225" exponent="1" />
926
+ </xtce:PolynomialCalibrator>
927
+ </xtce:DefaultCalibrator>
928
+ </xtce:IntegerDataEncoding>
929
+ </xtce:IntegerParameterType>
930
+ <xtce:IntegerParameterType name="HIT_HSKP.HSKP_SPARE5" signed="false">
931
+ <xtce:IntegerDataEncoding sizeInBits="16" encoding="unsigned" />
932
+ </xtce:IntegerParameterType>
933
+ <xtce:IntegerParameterType name="HIT_SCIENCE.SC_TICK" signed="false">
934
+ <xtce:IntegerDataEncoding sizeInBits="32" encoding="unsigned" />
935
+ </xtce:IntegerParameterType>
936
+ <xtce:BinaryParameterType name="HIT_SCIENCE.SCIENCE_DATA">
937
+ <xtce:BinaryDataEncoding bitOrder="mostSignificantBitFirst">
938
+ <xtce:SizeInBits>
939
+ <xtce:DynamicValue>
940
+ <xtce:ParameterInstanceRef parameterRef="PKT_LEN" />
941
+ <xtce:LinearAdjustment slope="8" intercept="-24" />
942
+ </xtce:DynamicValue>
943
+ </xtce:SizeInBits>
944
+ </xtce:BinaryDataEncoding>
945
+ </xtce:BinaryParameterType>
946
+ </xtce:ParameterTypeSet>
947
+ <xtce:ParameterSet>
948
+ <xtce:Parameter name="VERSION" parameterTypeRef="VERSION">
949
+ <xtce:LongDescription>CCSDS Packet Version Number (always 0)</xtce:LongDescription>
950
+ </xtce:Parameter>
951
+ <xtce:Parameter name="TYPE" parameterTypeRef="TYPE">
952
+ <xtce:LongDescription>CCSDS Packet Type Indicator (0=telemetry)</xtce:LongDescription>
953
+ </xtce:Parameter>
954
+ <xtce:Parameter name="SEC_HDR_FLG" parameterTypeRef="SEC_HDR_FLG">
955
+ <xtce:LongDescription>CCSDS Packet Secondary Header Flag (always 1)</xtce:LongDescription>
956
+ </xtce:Parameter>
957
+ <xtce:Parameter name="PKT_APID" parameterTypeRef="PKT_APID">
958
+ <xtce:LongDescription>CCSDS Packet Application Process ID</xtce:LongDescription>
959
+ </xtce:Parameter>
960
+ <xtce:Parameter name="SEQ_FLGS" parameterTypeRef="SEQ_FLGS">
961
+ <xtce:LongDescription>CCSDS Packet Grouping Flags (3=not part of group)</xtce:LongDescription>
962
+ </xtce:Parameter>
963
+ <xtce:Parameter name="SRC_SEQ_CTR" parameterTypeRef="SRC_SEQ_CTR">
964
+ <xtce:LongDescription>CCSDS Packet Sequence Count (increments with each new packet)</xtce:LongDescription>
965
+ </xtce:Parameter>
966
+ <xtce:Parameter name="PKT_LEN" parameterTypeRef="PKT_LEN">
967
+ <xtce:LongDescription>CCSDS Packet Length (number of bytes after Packet length minus 1)</xtce:LongDescription>
968
+ </xtce:Parameter>
969
+ <xtce:Parameter name="HIT_HSKP.SC_TICK" parameterTypeRef="HIT_HSKP.SC_TICK" shortDescription="Spacecraft tick">
970
+ <xtce:LongDescription>Spacecraft tick</xtce:LongDescription>
971
+ </xtce:Parameter>
972
+ <xtce:Parameter name="HIT_HSKP.MODE" parameterTypeRef="HIT_HSKP.MODE" shortDescription="Mode (0=boot, 1=maint, 2=stdby, 3=science" />
973
+ <xtce:Parameter name="HIT_HSKP.FSW_VERSION_A" parameterTypeRef="HIT_HSKP.FSW_VERSION_A" shortDescription="FSW version number (A.B.C bits)" />
974
+ <xtce:Parameter name="HIT_HSKP.FSW_VERSION_B" parameterTypeRef="HIT_HSKP.FSW_VERSION_B" shortDescription="FSW version number (A.B.C bits)" />
975
+ <xtce:Parameter name="HIT_HSKP.FSW_VERSION_C" parameterTypeRef="HIT_HSKP.FSW_VERSION_C" shortDescription="FSW version number (A.B.C bits)" />
976
+ <xtce:Parameter name="HIT_HSKP.NUM_GOOD_CMDS" parameterTypeRef="HIT_HSKP.NUM_GOOD_CMDS" shortDescription="Number of good commands" />
977
+ <xtce:Parameter name="HIT_HSKP.LAST_GOOD_CMD" parameterTypeRef="HIT_HSKP.LAST_GOOD_CMD" shortDescription="Last good command" />
978
+ <xtce:Parameter name="HIT_HSKP.LAST_GOOD_SEQ_NUM" parameterTypeRef="HIT_HSKP.LAST_GOOD_SEQ_NUM" shortDescription="Last good sequence number" />
979
+ <xtce:Parameter name="HIT_HSKP.NUM_BAD_CMDS" parameterTypeRef="HIT_HSKP.NUM_BAD_CMDS" shortDescription="Number of bad commands" />
980
+ <xtce:Parameter name="HIT_HSKP.LAST_BAD_CMD" parameterTypeRef="HIT_HSKP.LAST_BAD_CMD" shortDescription="Last bad command" />
981
+ <xtce:Parameter name="HIT_HSKP.LAST_BAD_SEQ_NUM" parameterTypeRef="HIT_HSKP.LAST_BAD_SEQ_NUM" shortDescription="Last bad sequence number" />
982
+ <xtce:Parameter name="HIT_HSKP.FEE_RUNNING" parameterTypeRef="HIT_HSKP.FEE_RUNNING" shortDescription="FEE running (1) or reset (0)" />
983
+ <xtce:Parameter name="HIT_HSKP.MRAM_DISABLED" parameterTypeRef="HIT_HSKP.MRAM_DISABLED" shortDescription="MRAM disabled (1) or enabled (0)" />
984
+ <xtce:Parameter name="HIT_HSKP.HSKP_SPARE1" parameterTypeRef="HIT_HSKP.HSKP_SPARE1" shortDescription="spare" />
985
+ <xtce:Parameter name="HIT_HSKP.ENABLE_50KHZ" parameterTypeRef="HIT_HSKP.ENABLE_50KHZ" shortDescription="50kHz enabled (1) or disabled (0)" />
986
+ <xtce:Parameter name="HIT_HSKP.ENABLE_HVPS" parameterTypeRef="HIT_HSKP.ENABLE_HVPS" shortDescription="HVPS enabled (1) or disabled (0)" />
987
+ <xtce:Parameter name="HIT_HSKP.TABLE_STATUS" parameterTypeRef="HIT_HSKP.TABLE_STATUS" shortDescription="Table status OK (1) or error (0)" />
988
+ <xtce:Parameter name="HIT_HSKP.HEATER_CONTROL" parameterTypeRef="HIT_HSKP.HEATER_CONTROL" shortDescription="Heater control (0=none, 1=pri, 2=sec)" />
989
+ <xtce:Parameter name="HIT_HSKP.ADC_MODE" parameterTypeRef="HIT_HSKP.ADC_MODE" shortDescription="ADC mode (0=quiet, 1=normal, 2=adcstim, 3=adcThreshold?)" />
990
+ <xtce:Parameter name="HIT_HSKP.DYN_THRESH_LVL" parameterTypeRef="HIT_HSKP.DYN_THRESH_LVL" shortDescription="Dynamic threshold level (0-3)" />
991
+ <xtce:Parameter name="HIT_HSKP.HSKP_SPARE2" parameterTypeRef="HIT_HSKP.HSKP_SPARE2" shortDescription="spare" />
992
+ <xtce:Parameter name="HIT_HSKP.NUM_EVNT_LAST_HK" parameterTypeRef="HIT_HSKP.NUM_EVNT_LAST_HK" shortDescription="Number of events since last HK update" />
993
+ <xtce:Parameter name="HIT_HSKP.NUM_ERRORS" parameterTypeRef="HIT_HSKP.NUM_ERRORS" shortDescription="Number of errors" />
994
+ <xtce:Parameter name="HIT_HSKP.LAST_ERROR_NUM" parameterTypeRef="HIT_HSKP.LAST_ERROR_NUM" shortDescription="Last error number" />
995
+ <xtce:Parameter name="HIT_HSKP.CODE_CHECKSUM" parameterTypeRef="HIT_HSKP.CODE_CHECKSUM" shortDescription="Code checksum" />
996
+ <xtce:Parameter name="HIT_HSKP.SPIN_PERIOD_SHORT" parameterTypeRef="HIT_HSKP.SPIN_PERIOD_SHORT" shortDescription="Spin period at t=0" />
997
+ <xtce:Parameter name="HIT_HSKP.SPIN_PERIOD_LONG" parameterTypeRef="HIT_HSKP.SPIN_PERIOD_LONG" shortDescription="Spin period at t=0" />
998
+ <xtce:Parameter name="HIT_HSKP.LEAK_I_63" parameterTypeRef="HIT_HSKP.LEAK_I_63" shortDescription="Leakage current [V]" />
999
+ <xtce:Parameter name="HIT_HSKP.LEAK_I_62" parameterTypeRef="HIT_HSKP.LEAK_I_62" shortDescription="Leakage current [V]" />
1000
+ <xtce:Parameter name="HIT_HSKP.LEAK_I_61" parameterTypeRef="HIT_HSKP.LEAK_I_61" shortDescription="Leakage current [V]" />
1001
+ <xtce:Parameter name="HIT_HSKP.LEAK_I_60" parameterTypeRef="HIT_HSKP.LEAK_I_60" shortDescription="Leakage current [V]" />
1002
+ <xtce:Parameter name="HIT_HSKP.LEAK_I_59" parameterTypeRef="HIT_HSKP.LEAK_I_59" shortDescription="Leakage current [V]" />
1003
+ <xtce:Parameter name="HIT_HSKP.LEAK_I_58" parameterTypeRef="HIT_HSKP.LEAK_I_58" shortDescription="Leakage current [V]" />
1004
+ <xtce:Parameter name="HIT_HSKP.LEAK_I_57" parameterTypeRef="HIT_HSKP.LEAK_I_57" shortDescription="Leakage current [V]" />
1005
+ <xtce:Parameter name="HIT_HSKP.LEAK_I_56" parameterTypeRef="HIT_HSKP.LEAK_I_56" shortDescription="Leakage current [V]" />
1006
+ <xtce:Parameter name="HIT_HSKP.LEAK_I_55" parameterTypeRef="HIT_HSKP.LEAK_I_55" shortDescription="Leakage current [V]" />
1007
+ <xtce:Parameter name="HIT_HSKP.LEAK_I_54" parameterTypeRef="HIT_HSKP.LEAK_I_54" shortDescription="Leakage current [V]" />
1008
+ <xtce:Parameter name="HIT_HSKP.LEAK_I_53" parameterTypeRef="HIT_HSKP.LEAK_I_53" shortDescription="Leakage current [V]" />
1009
+ <xtce:Parameter name="HIT_HSKP.LEAK_I_52" parameterTypeRef="HIT_HSKP.LEAK_I_52" shortDescription="Leakage current [V]" />
1010
+ <xtce:Parameter name="HIT_HSKP.LEAK_I_51" parameterTypeRef="HIT_HSKP.LEAK_I_51" shortDescription="Leakage current [V]" />
1011
+ <xtce:Parameter name="HIT_HSKP.LEAK_I_50" parameterTypeRef="HIT_HSKP.LEAK_I_50" shortDescription="Leakage current [V]" />
1012
+ <xtce:Parameter name="HIT_HSKP.LEAK_I_49" parameterTypeRef="HIT_HSKP.LEAK_I_49" shortDescription="Leakage current [V]" />
1013
+ <xtce:Parameter name="HIT_HSKP.LEAK_I_48" parameterTypeRef="HIT_HSKP.LEAK_I_48" shortDescription="Leakage current [V]" />
1014
+ <xtce:Parameter name="HIT_HSKP.LEAK_I_47" parameterTypeRef="HIT_HSKP.LEAK_I_47" shortDescription="Leakage current [V]" />
1015
+ <xtce:Parameter name="HIT_HSKP.LEAK_I_46" parameterTypeRef="HIT_HSKP.LEAK_I_46" shortDescription="Leakage current [V]" />
1016
+ <xtce:Parameter name="HIT_HSKP.LEAK_I_45" parameterTypeRef="HIT_HSKP.LEAK_I_45" shortDescription="Leakage current [V]" />
1017
+ <xtce:Parameter name="HIT_HSKP.LEAK_I_44" parameterTypeRef="HIT_HSKP.LEAK_I_44" shortDescription="Leakage current [V]" />
1018
+ <xtce:Parameter name="HIT_HSKP.LEAK_I_43" parameterTypeRef="HIT_HSKP.LEAK_I_43" shortDescription="Leakage current [V]" />
1019
+ <xtce:Parameter name="HIT_HSKP.LEAK_I_42" parameterTypeRef="HIT_HSKP.LEAK_I_42" shortDescription="Leakage current [V]" />
1020
+ <xtce:Parameter name="HIT_HSKP.LEAK_I_41" parameterTypeRef="HIT_HSKP.LEAK_I_41" shortDescription="Leakage current [V]" />
1021
+ <xtce:Parameter name="HIT_HSKP.LEAK_I_40" parameterTypeRef="HIT_HSKP.LEAK_I_40" shortDescription="Leakage current [V]" />
1022
+ <xtce:Parameter name="HIT_HSKP.LEAK_I_39" parameterTypeRef="HIT_HSKP.LEAK_I_39" shortDescription="Leakage current [V]" />
1023
+ <xtce:Parameter name="HIT_HSKP.LEAK_I_38" parameterTypeRef="HIT_HSKP.LEAK_I_38" shortDescription="Leakage current [V]" />
1024
+ <xtce:Parameter name="HIT_HSKP.LEAK_I_37" parameterTypeRef="HIT_HSKP.LEAK_I_37" shortDescription="Leakage current [V]" />
1025
+ <xtce:Parameter name="HIT_HSKP.LEAK_I_36" parameterTypeRef="HIT_HSKP.LEAK_I_36" shortDescription="Leakage current [V]" />
1026
+ <xtce:Parameter name="HIT_HSKP.LEAK_I_35" parameterTypeRef="HIT_HSKP.LEAK_I_35" shortDescription="Leakage current [V]" />
1027
+ <xtce:Parameter name="HIT_HSKP.LEAK_I_34" parameterTypeRef="HIT_HSKP.LEAK_I_34" shortDescription="Leakage current [V]" />
1028
+ <xtce:Parameter name="HIT_HSKP.LEAK_I_33" parameterTypeRef="HIT_HSKP.LEAK_I_33" shortDescription="Leakage current [V]" />
1029
+ <xtce:Parameter name="HIT_HSKP.LEAK_I_32" parameterTypeRef="HIT_HSKP.LEAK_I_32" shortDescription="Leakage current [V]" />
1030
+ <xtce:Parameter name="HIT_HSKP.LEAK_I_31" parameterTypeRef="HIT_HSKP.LEAK_I_31" shortDescription="Leakage current [V]" />
1031
+ <xtce:Parameter name="HIT_HSKP.LEAK_I_30" parameterTypeRef="HIT_HSKP.LEAK_I_30" shortDescription="Leakage current [V]" />
1032
+ <xtce:Parameter name="HIT_HSKP.LEAK_I_29" parameterTypeRef="HIT_HSKP.LEAK_I_29" shortDescription="Leakage current [V]" />
1033
+ <xtce:Parameter name="HIT_HSKP.LEAK_I_28" parameterTypeRef="HIT_HSKP.LEAK_I_28" shortDescription="Leakage current [V]" />
1034
+ <xtce:Parameter name="HIT_HSKP.LEAK_I_27" parameterTypeRef="HIT_HSKP.LEAK_I_27" shortDescription="Leakage current [V]" />
1035
+ <xtce:Parameter name="HIT_HSKP.LEAK_I_26" parameterTypeRef="HIT_HSKP.LEAK_I_26" shortDescription="Leakage current [V]" />
1036
+ <xtce:Parameter name="HIT_HSKP.LEAK_I_25" parameterTypeRef="HIT_HSKP.LEAK_I_25" shortDescription="Leakage current [V]" />
1037
+ <xtce:Parameter name="HIT_HSKP.LEAK_I_24" parameterTypeRef="HIT_HSKP.LEAK_I_24" shortDescription="Leakage current [V]" />
1038
+ <xtce:Parameter name="HIT_HSKP.LEAK_I_23" parameterTypeRef="HIT_HSKP.LEAK_I_23" shortDescription="Leakage current [V]" />
1039
+ <xtce:Parameter name="HIT_HSKP.LEAK_I_22" parameterTypeRef="HIT_HSKP.LEAK_I_22" shortDescription="Leakage current [V]" />
1040
+ <xtce:Parameter name="HIT_HSKP.LEAK_I_21" parameterTypeRef="HIT_HSKP.LEAK_I_21" shortDescription="Leakage current [V]" />
1041
+ <xtce:Parameter name="HIT_HSKP.LEAK_I_20" parameterTypeRef="HIT_HSKP.LEAK_I_20" shortDescription="Leakage current [V]" />
1042
+ <xtce:Parameter name="HIT_HSKP.LEAK_I_19" parameterTypeRef="HIT_HSKP.LEAK_I_19" shortDescription="Leakage current [V]" />
1043
+ <xtce:Parameter name="HIT_HSKP.LEAK_I_18" parameterTypeRef="HIT_HSKP.LEAK_I_18" shortDescription="Leakage current [V]" />
1044
+ <xtce:Parameter name="HIT_HSKP.LEAK_I_17" parameterTypeRef="HIT_HSKP.LEAK_I_17" shortDescription="Leakage current [V]" />
1045
+ <xtce:Parameter name="HIT_HSKP.LEAK_I_16" parameterTypeRef="HIT_HSKP.LEAK_I_16" shortDescription="Leakage current [V]" />
1046
+ <xtce:Parameter name="HIT_HSKP.LEAK_I_15" parameterTypeRef="HIT_HSKP.LEAK_I_15" shortDescription="Leakage current [V]" />
1047
+ <xtce:Parameter name="HIT_HSKP.LEAK_I_14" parameterTypeRef="HIT_HSKP.LEAK_I_14" shortDescription="Leakage current [V]" />
1048
+ <xtce:Parameter name="HIT_HSKP.LEAK_I_13" parameterTypeRef="HIT_HSKP.LEAK_I_13" shortDescription="Leakage current [V]" />
1049
+ <xtce:Parameter name="HIT_HSKP.LEAK_I_12" parameterTypeRef="HIT_HSKP.LEAK_I_12" shortDescription="Leakage current [V]" />
1050
+ <xtce:Parameter name="HIT_HSKP.LEAK_I_11" parameterTypeRef="HIT_HSKP.LEAK_I_11" shortDescription="Leakage current [V]" />
1051
+ <xtce:Parameter name="HIT_HSKP.LEAK_I_10" parameterTypeRef="HIT_HSKP.LEAK_I_10" shortDescription="Leakage current [V]" />
1052
+ <xtce:Parameter name="HIT_HSKP.LEAK_I_09" parameterTypeRef="HIT_HSKP.LEAK_I_09" shortDescription="Leakage current [V]" />
1053
+ <xtce:Parameter name="HIT_HSKP.LEAK_I_08" parameterTypeRef="HIT_HSKP.LEAK_I_08" shortDescription="Leakage current [V]" />
1054
+ <xtce:Parameter name="HIT_HSKP.LEAK_I_07" parameterTypeRef="HIT_HSKP.LEAK_I_07" shortDescription="Leakage current [V]" />
1055
+ <xtce:Parameter name="HIT_HSKP.LEAK_I_06" parameterTypeRef="HIT_HSKP.LEAK_I_06" shortDescription="Leakage current [V]" />
1056
+ <xtce:Parameter name="HIT_HSKP.LEAK_I_05" parameterTypeRef="HIT_HSKP.LEAK_I_05" shortDescription="Leakage current [V]" />
1057
+ <xtce:Parameter name="HIT_HSKP.LEAK_I_04" parameterTypeRef="HIT_HSKP.LEAK_I_04" shortDescription="Leakage current [V]" />
1058
+ <xtce:Parameter name="HIT_HSKP.LEAK_I_03" parameterTypeRef="HIT_HSKP.LEAK_I_03" shortDescription="Leakage current [V]" />
1059
+ <xtce:Parameter name="HIT_HSKP.LEAK_I_02" parameterTypeRef="HIT_HSKP.LEAK_I_02" shortDescription="Leakage current [V]" />
1060
+ <xtce:Parameter name="HIT_HSKP.LEAK_I_01" parameterTypeRef="HIT_HSKP.LEAK_I_01" shortDescription="Leakage current [V]" />
1061
+ <xtce:Parameter name="HIT_HSKP.LEAK_I_00" parameterTypeRef="HIT_HSKP.LEAK_I_00" shortDescription="Leakage current [V]" />
1062
+ <xtce:Parameter name="HIT_HSKP.PHASIC_STAT" parameterTypeRef="HIT_HSKP.PHASIC_STAT" shortDescription="PHASIC status" />
1063
+ <xtce:Parameter name="HIT_HSKP.ACTIVE_HEATER" parameterTypeRef="HIT_HSKP.ACTIVE_HEATER" shortDescription="Active heater" />
1064
+ <xtce:Parameter name="HIT_HSKP.HEATER_ON" parameterTypeRef="HIT_HSKP.HEATER_ON" shortDescription="Heater on/off" />
1065
+ <xtce:Parameter name="HIT_HSKP.TEST_PULSER_ON" parameterTypeRef="HIT_HSKP.TEST_PULSER_ON" shortDescription="Test pulser on/off" />
1066
+ <xtce:Parameter name="HIT_HSKP.DAC0_ENABLE" parameterTypeRef="HIT_HSKP.DAC0_ENABLE" shortDescription="DAC_0 enable" />
1067
+ <xtce:Parameter name="HIT_HSKP.DAC1_ENABLE" parameterTypeRef="HIT_HSKP.DAC1_ENABLE" shortDescription="DAC_1 enable" />
1068
+ <xtce:Parameter name="HIT_HSKP.HSKP_SPARE3" parameterTypeRef="HIT_HSKP.HSKP_SPARE3" shortDescription="Reserved" />
1069
+ <xtce:Parameter name="HIT_HSKP.PREAMP_L234A" parameterTypeRef="HIT_HSKP.PREAMP_L234A" shortDescription="Preamp L234A" />
1070
+ <xtce:Parameter name="HIT_HSKP.PREAMP_L1A" parameterTypeRef="HIT_HSKP.PREAMP_L1A" shortDescription="Preamp L1A" />
1071
+ <xtce:Parameter name="HIT_HSKP.PREAMP_L1B" parameterTypeRef="HIT_HSKP.PREAMP_L1B" shortDescription="Preamp L1B" />
1072
+ <xtce:Parameter name="HIT_HSKP.PREAMP_L234B" parameterTypeRef="HIT_HSKP.PREAMP_L234B" shortDescription="Preamp L234B" />
1073
+ <xtce:Parameter name="HIT_HSKP.TEMP0" parameterTypeRef="HIT_HSKP.TEMP0" shortDescription="FEE LDO Regulator">
1074
+ <xtce:LongDescription>Mounted on the board next to the low-dropout regulator</xtce:LongDescription>
1075
+ </xtce:Parameter>
1076
+ <xtce:Parameter name="HIT_HSKP.TEMP1" parameterTypeRef="HIT_HSKP.TEMP1" shortDescription="Primary Heater">
1077
+ <xtce:LongDescription>Mounted on the board next to the primary heater circuit</xtce:LongDescription>
1078
+ </xtce:Parameter>
1079
+ <xtce:Parameter name="HIT_HSKP.TEMP2" parameterTypeRef="HIT_HSKP.TEMP2" shortDescription="FEE FPGA">
1080
+ <xtce:LongDescription>Mounted on the board next to the FPGA</xtce:LongDescription>
1081
+ </xtce:Parameter>
1082
+ <xtce:Parameter name="HIT_HSKP.TEMP3" parameterTypeRef="HIT_HSKP.TEMP3" shortDescription="Secondary Heater">
1083
+ <xtce:LongDescription>Mounted on the board next to the secondary heater</xtce:LongDescription>
1084
+ </xtce:Parameter>
1085
+ <xtce:Parameter name="HIT_HSKP.HSKP_SPARE4" parameterTypeRef="HIT_HSKP.HSKP_SPARE4" />
1086
+ <xtce:Parameter name="HIT_HSKP.ANALOG_TEMP" parameterTypeRef="HIT_HSKP.ANALOG_TEMP" shortDescription="Chassis temp">
1087
+ <xtce:LongDescription>Mounted on analog board, close to thermostats, heaters, and chassis</xtce:LongDescription>
1088
+ </xtce:Parameter>
1089
+ <xtce:Parameter name="HIT_HSKP.HVPS_TEMP" parameterTypeRef="HIT_HSKP.HVPS_TEMP" shortDescription="Board temp">
1090
+ <xtce:LongDescription>Mounted inside the faraday cage in the middle of the board near the connector side.</xtce:LongDescription>
1091
+ </xtce:Parameter>
1092
+ <xtce:Parameter name="HIT_HSKP.IDPU_TEMP" parameterTypeRef="HIT_HSKP.IDPU_TEMP" shortDescription="LDO Temp">
1093
+ <xtce:LongDescription>Mounted on top of the low-dropout regulator</xtce:LongDescription>
1094
+ </xtce:Parameter>
1095
+ <xtce:Parameter name="HIT_HSKP.LVPS_TEMP" parameterTypeRef="HIT_HSKP.LVPS_TEMP" shortDescription="Board temp">
1096
+ <xtce:LongDescription>Mounted in the middle of the board on the opposite side of the hottest component</xtce:LongDescription>
1097
+ </xtce:Parameter>
1098
+ <xtce:Parameter name="HIT_HSKP.EBOX_3D4VD" parameterTypeRef="HIT_HSKP.EBOX_3D4VD" shortDescription="3.4VD Ebox (digital)" />
1099
+ <xtce:Parameter name="HIT_HSKP.EBOX_5D1VD" parameterTypeRef="HIT_HSKP.EBOX_5D1VD" shortDescription="5.1VD Ebox (digital)" />
1100
+ <xtce:Parameter name="HIT_HSKP.EBOX_P12VA" parameterTypeRef="HIT_HSKP.EBOX_P12VA" shortDescription="+12VA Ebox (analog)" />
1101
+ <xtce:Parameter name="HIT_HSKP.EBOX_M12VA" parameterTypeRef="HIT_HSKP.EBOX_M12VA" shortDescription="-12VA Ebox (analog)" />
1102
+ <xtce:Parameter name="HIT_HSKP.EBOX_P5D7VA" parameterTypeRef="HIT_HSKP.EBOX_P5D7VA" shortDescription="+5.7VA Ebox (analog)" />
1103
+ <xtce:Parameter name="HIT_HSKP.EBOX_M5D7VA" parameterTypeRef="HIT_HSKP.EBOX_M5D7VA" shortDescription="-5.7VA Ebox (analog)" />
1104
+ <xtce:Parameter name="HIT_HSKP.REF_P5V" parameterTypeRef="HIT_HSKP.REF_P5V" shortDescription="+5Vref" />
1105
+ <xtce:Parameter name="HIT_HSKP.L1AB_BIAS" parameterTypeRef="HIT_HSKP.L1AB_BIAS" shortDescription="L1A/B Bias" />
1106
+ <xtce:Parameter name="HIT_HSKP.L2AB_BIAS" parameterTypeRef="HIT_HSKP.L2AB_BIAS" shortDescription="L2A/B Bias" />
1107
+ <xtce:Parameter name="HIT_HSKP.L34A_BIAS" parameterTypeRef="HIT_HSKP.L34A_BIAS" shortDescription="L3/4A Bias" />
1108
+ <xtce:Parameter name="HIT_HSKP.L34B_BIAS" parameterTypeRef="HIT_HSKP.L34B_BIAS" shortDescription="L3/4B Bias" />
1109
+ <xtce:Parameter name="HIT_HSKP.EBOX_P2D0VD" parameterTypeRef="HIT_HSKP.EBOX_P2D0VD" shortDescription="+2.0VD Ebox (digital)" />
1110
+ <xtce:Parameter name="HIT_HSKP.HSKP_SPARE5" parameterTypeRef="HIT_HSKP.HSKP_SPARE5" />
1111
+ <xtce:Parameter name="HIT_SCIENCE.SC_TICK" parameterTypeRef="HIT_SCIENCE.SC_TICK" shortDescription="Spacecraft tick">
1112
+ <xtce:LongDescription>CCSDS Packet Sec Header</xtce:LongDescription>
1113
+ </xtce:Parameter>
1114
+ <xtce:Parameter name="HIT_SCIENCE.SCIENCE_DATA" parameterTypeRef="HIT_SCIENCE.SCIENCE_DATA" shortDescription="Science data ">
1115
+ <xtce:LongDescription>262 byte chunks of science data</xtce:LongDescription>
1116
+ </xtce:Parameter>
1117
+ </xtce:ParameterSet>
1118
+ <xtce:ContainerSet>
1119
+ <xtce:SequenceContainer name="CCSDSPacket" abstract="true">
1120
+ <xtce:EntryList>
1121
+ <xtce:ParameterRefEntry parameterRef="VERSION" />
1122
+ <xtce:ParameterRefEntry parameterRef="TYPE" />
1123
+ <xtce:ParameterRefEntry parameterRef="SEC_HDR_FLG" />
1124
+ <xtce:ParameterRefEntry parameterRef="PKT_APID" />
1125
+ <xtce:ParameterRefEntry parameterRef="SEQ_FLGS" />
1126
+ <xtce:ParameterRefEntry parameterRef="SRC_SEQ_CTR" />
1127
+ <xtce:ParameterRefEntry parameterRef="PKT_LEN" />
1128
+ </xtce:EntryList>
1129
+ </xtce:SequenceContainer>
1130
+ <xtce:SequenceContainer name="HIT_HSKP">
1131
+ <xtce:BaseContainer containerRef="CCSDSPacket">
1132
+ <xtce:RestrictionCriteria>
1133
+ <xtce:Comparison parameterRef="PKT_APID" value="1251" useCalibratedValue="false" />
1134
+ </xtce:RestrictionCriteria>
1135
+ </xtce:BaseContainer>
1136
+ <xtce:EntryList>
1137
+ <xtce:ParameterRefEntry parameterRef="HIT_HSKP.SC_TICK" />
1138
+ <xtce:ParameterRefEntry parameterRef="HIT_HSKP.MODE" />
1139
+ <xtce:ParameterRefEntry parameterRef="HIT_HSKP.FSW_VERSION_A" />
1140
+ <xtce:ParameterRefEntry parameterRef="HIT_HSKP.FSW_VERSION_B" />
1141
+ <xtce:ParameterRefEntry parameterRef="HIT_HSKP.FSW_VERSION_C" />
1142
+ <xtce:ParameterRefEntry parameterRef="HIT_HSKP.NUM_GOOD_CMDS" />
1143
+ <xtce:ParameterRefEntry parameterRef="HIT_HSKP.LAST_GOOD_CMD" />
1144
+ <xtce:ParameterRefEntry parameterRef="HIT_HSKP.LAST_GOOD_SEQ_NUM" />
1145
+ <xtce:ParameterRefEntry parameterRef="HIT_HSKP.NUM_BAD_CMDS" />
1146
+ <xtce:ParameterRefEntry parameterRef="HIT_HSKP.LAST_BAD_CMD" />
1147
+ <xtce:ParameterRefEntry parameterRef="HIT_HSKP.LAST_BAD_SEQ_NUM" />
1148
+ <xtce:ParameterRefEntry parameterRef="HIT_HSKP.FEE_RUNNING" />
1149
+ <xtce:ParameterRefEntry parameterRef="HIT_HSKP.MRAM_DISABLED" />
1150
+ <xtce:ParameterRefEntry parameterRef="HIT_HSKP.HSKP_SPARE1" />
1151
+ <xtce:ParameterRefEntry parameterRef="HIT_HSKP.ENABLE_50KHZ" />
1152
+ <xtce:ParameterRefEntry parameterRef="HIT_HSKP.ENABLE_HVPS" />
1153
+ <xtce:ParameterRefEntry parameterRef="HIT_HSKP.TABLE_STATUS" />
1154
+ <xtce:ParameterRefEntry parameterRef="HIT_HSKP.HEATER_CONTROL" />
1155
+ <xtce:ParameterRefEntry parameterRef="HIT_HSKP.ADC_MODE" />
1156
+ <xtce:ParameterRefEntry parameterRef="HIT_HSKP.DYN_THRESH_LVL" />
1157
+ <xtce:ParameterRefEntry parameterRef="HIT_HSKP.HSKP_SPARE2" />
1158
+ <xtce:ParameterRefEntry parameterRef="HIT_HSKP.NUM_EVNT_LAST_HK" />
1159
+ <xtce:ParameterRefEntry parameterRef="HIT_HSKP.NUM_ERRORS" />
1160
+ <xtce:ParameterRefEntry parameterRef="HIT_HSKP.LAST_ERROR_NUM" />
1161
+ <xtce:ParameterRefEntry parameterRef="HIT_HSKP.CODE_CHECKSUM" />
1162
+ <xtce:ParameterRefEntry parameterRef="HIT_HSKP.SPIN_PERIOD_SHORT" />
1163
+ <xtce:ParameterRefEntry parameterRef="HIT_HSKP.SPIN_PERIOD_LONG" />
1164
+ <xtce:ParameterRefEntry parameterRef="HIT_HSKP.LEAK_I_63" />
1165
+ <xtce:ParameterRefEntry parameterRef="HIT_HSKP.LEAK_I_62" />
1166
+ <xtce:ParameterRefEntry parameterRef="HIT_HSKP.LEAK_I_61" />
1167
+ <xtce:ParameterRefEntry parameterRef="HIT_HSKP.LEAK_I_60" />
1168
+ <xtce:ParameterRefEntry parameterRef="HIT_HSKP.LEAK_I_59" />
1169
+ <xtce:ParameterRefEntry parameterRef="HIT_HSKP.LEAK_I_58" />
1170
+ <xtce:ParameterRefEntry parameterRef="HIT_HSKP.LEAK_I_57" />
1171
+ <xtce:ParameterRefEntry parameterRef="HIT_HSKP.LEAK_I_56" />
1172
+ <xtce:ParameterRefEntry parameterRef="HIT_HSKP.LEAK_I_55" />
1173
+ <xtce:ParameterRefEntry parameterRef="HIT_HSKP.LEAK_I_54" />
1174
+ <xtce:ParameterRefEntry parameterRef="HIT_HSKP.LEAK_I_53" />
1175
+ <xtce:ParameterRefEntry parameterRef="HIT_HSKP.LEAK_I_52" />
1176
+ <xtce:ParameterRefEntry parameterRef="HIT_HSKP.LEAK_I_51" />
1177
+ <xtce:ParameterRefEntry parameterRef="HIT_HSKP.LEAK_I_50" />
1178
+ <xtce:ParameterRefEntry parameterRef="HIT_HSKP.LEAK_I_49" />
1179
+ <xtce:ParameterRefEntry parameterRef="HIT_HSKP.LEAK_I_48" />
1180
+ <xtce:ParameterRefEntry parameterRef="HIT_HSKP.LEAK_I_47" />
1181
+ <xtce:ParameterRefEntry parameterRef="HIT_HSKP.LEAK_I_46" />
1182
+ <xtce:ParameterRefEntry parameterRef="HIT_HSKP.LEAK_I_45" />
1183
+ <xtce:ParameterRefEntry parameterRef="HIT_HSKP.LEAK_I_44" />
1184
+ <xtce:ParameterRefEntry parameterRef="HIT_HSKP.LEAK_I_43" />
1185
+ <xtce:ParameterRefEntry parameterRef="HIT_HSKP.LEAK_I_42" />
1186
+ <xtce:ParameterRefEntry parameterRef="HIT_HSKP.LEAK_I_41" />
1187
+ <xtce:ParameterRefEntry parameterRef="HIT_HSKP.LEAK_I_40" />
1188
+ <xtce:ParameterRefEntry parameterRef="HIT_HSKP.LEAK_I_39" />
1189
+ <xtce:ParameterRefEntry parameterRef="HIT_HSKP.LEAK_I_38" />
1190
+ <xtce:ParameterRefEntry parameterRef="HIT_HSKP.LEAK_I_37" />
1191
+ <xtce:ParameterRefEntry parameterRef="HIT_HSKP.LEAK_I_36" />
1192
+ <xtce:ParameterRefEntry parameterRef="HIT_HSKP.LEAK_I_35" />
1193
+ <xtce:ParameterRefEntry parameterRef="HIT_HSKP.LEAK_I_34" />
1194
+ <xtce:ParameterRefEntry parameterRef="HIT_HSKP.LEAK_I_33" />
1195
+ <xtce:ParameterRefEntry parameterRef="HIT_HSKP.LEAK_I_32" />
1196
+ <xtce:ParameterRefEntry parameterRef="HIT_HSKP.LEAK_I_31" />
1197
+ <xtce:ParameterRefEntry parameterRef="HIT_HSKP.LEAK_I_30" />
1198
+ <xtce:ParameterRefEntry parameterRef="HIT_HSKP.LEAK_I_29" />
1199
+ <xtce:ParameterRefEntry parameterRef="HIT_HSKP.LEAK_I_28" />
1200
+ <xtce:ParameterRefEntry parameterRef="HIT_HSKP.LEAK_I_27" />
1201
+ <xtce:ParameterRefEntry parameterRef="HIT_HSKP.LEAK_I_26" />
1202
+ <xtce:ParameterRefEntry parameterRef="HIT_HSKP.LEAK_I_25" />
1203
+ <xtce:ParameterRefEntry parameterRef="HIT_HSKP.LEAK_I_24" />
1204
+ <xtce:ParameterRefEntry parameterRef="HIT_HSKP.LEAK_I_23" />
1205
+ <xtce:ParameterRefEntry parameterRef="HIT_HSKP.LEAK_I_22" />
1206
+ <xtce:ParameterRefEntry parameterRef="HIT_HSKP.LEAK_I_21" />
1207
+ <xtce:ParameterRefEntry parameterRef="HIT_HSKP.LEAK_I_20" />
1208
+ <xtce:ParameterRefEntry parameterRef="HIT_HSKP.LEAK_I_19" />
1209
+ <xtce:ParameterRefEntry parameterRef="HIT_HSKP.LEAK_I_18" />
1210
+ <xtce:ParameterRefEntry parameterRef="HIT_HSKP.LEAK_I_17" />
1211
+ <xtce:ParameterRefEntry parameterRef="HIT_HSKP.LEAK_I_16" />
1212
+ <xtce:ParameterRefEntry parameterRef="HIT_HSKP.LEAK_I_15" />
1213
+ <xtce:ParameterRefEntry parameterRef="HIT_HSKP.LEAK_I_14" />
1214
+ <xtce:ParameterRefEntry parameterRef="HIT_HSKP.LEAK_I_13" />
1215
+ <xtce:ParameterRefEntry parameterRef="HIT_HSKP.LEAK_I_12" />
1216
+ <xtce:ParameterRefEntry parameterRef="HIT_HSKP.LEAK_I_11" />
1217
+ <xtce:ParameterRefEntry parameterRef="HIT_HSKP.LEAK_I_10" />
1218
+ <xtce:ParameterRefEntry parameterRef="HIT_HSKP.LEAK_I_09" />
1219
+ <xtce:ParameterRefEntry parameterRef="HIT_HSKP.LEAK_I_08" />
1220
+ <xtce:ParameterRefEntry parameterRef="HIT_HSKP.LEAK_I_07" />
1221
+ <xtce:ParameterRefEntry parameterRef="HIT_HSKP.LEAK_I_06" />
1222
+ <xtce:ParameterRefEntry parameterRef="HIT_HSKP.LEAK_I_05" />
1223
+ <xtce:ParameterRefEntry parameterRef="HIT_HSKP.LEAK_I_04" />
1224
+ <xtce:ParameterRefEntry parameterRef="HIT_HSKP.LEAK_I_03" />
1225
+ <xtce:ParameterRefEntry parameterRef="HIT_HSKP.LEAK_I_02" />
1226
+ <xtce:ParameterRefEntry parameterRef="HIT_HSKP.LEAK_I_01" />
1227
+ <xtce:ParameterRefEntry parameterRef="HIT_HSKP.LEAK_I_00" />
1228
+ <xtce:ParameterRefEntry parameterRef="HIT_HSKP.PHASIC_STAT" />
1229
+ <xtce:ParameterRefEntry parameterRef="HIT_HSKP.ACTIVE_HEATER" />
1230
+ <xtce:ParameterRefEntry parameterRef="HIT_HSKP.HEATER_ON" />
1231
+ <xtce:ParameterRefEntry parameterRef="HIT_HSKP.TEST_PULSER_ON" />
1232
+ <xtce:ParameterRefEntry parameterRef="HIT_HSKP.DAC0_ENABLE" />
1233
+ <xtce:ParameterRefEntry parameterRef="HIT_HSKP.DAC1_ENABLE" />
1234
+ <xtce:ParameterRefEntry parameterRef="HIT_HSKP.HSKP_SPARE3" />
1235
+ <xtce:ParameterRefEntry parameterRef="HIT_HSKP.PREAMP_L234A" />
1236
+ <xtce:ParameterRefEntry parameterRef="HIT_HSKP.PREAMP_L1A" />
1237
+ <xtce:ParameterRefEntry parameterRef="HIT_HSKP.PREAMP_L1B" />
1238
+ <xtce:ParameterRefEntry parameterRef="HIT_HSKP.PREAMP_L234B" />
1239
+ <xtce:ParameterRefEntry parameterRef="HIT_HSKP.TEMP0" />
1240
+ <xtce:ParameterRefEntry parameterRef="HIT_HSKP.TEMP1" />
1241
+ <xtce:ParameterRefEntry parameterRef="HIT_HSKP.TEMP2" />
1242
+ <xtce:ParameterRefEntry parameterRef="HIT_HSKP.TEMP3" />
1243
+ <xtce:ParameterRefEntry parameterRef="HIT_HSKP.HSKP_SPARE4" />
1244
+ <xtce:ParameterRefEntry parameterRef="HIT_HSKP.ANALOG_TEMP" />
1245
+ <xtce:ParameterRefEntry parameterRef="HIT_HSKP.HVPS_TEMP" />
1246
+ <xtce:ParameterRefEntry parameterRef="HIT_HSKP.IDPU_TEMP" />
1247
+ <xtce:ParameterRefEntry parameterRef="HIT_HSKP.LVPS_TEMP" />
1248
+ <xtce:ParameterRefEntry parameterRef="HIT_HSKP.EBOX_3D4VD" />
1249
+ <xtce:ParameterRefEntry parameterRef="HIT_HSKP.EBOX_5D1VD" />
1250
+ <xtce:ParameterRefEntry parameterRef="HIT_HSKP.EBOX_P12VA" />
1251
+ <xtce:ParameterRefEntry parameterRef="HIT_HSKP.EBOX_M12VA" />
1252
+ <xtce:ParameterRefEntry parameterRef="HIT_HSKP.EBOX_P5D7VA" />
1253
+ <xtce:ParameterRefEntry parameterRef="HIT_HSKP.EBOX_M5D7VA" />
1254
+ <xtce:ParameterRefEntry parameterRef="HIT_HSKP.REF_P5V" />
1255
+ <xtce:ParameterRefEntry parameterRef="HIT_HSKP.L1AB_BIAS" />
1256
+ <xtce:ParameterRefEntry parameterRef="HIT_HSKP.L2AB_BIAS" />
1257
+ <xtce:ParameterRefEntry parameterRef="HIT_HSKP.L34A_BIAS" />
1258
+ <xtce:ParameterRefEntry parameterRef="HIT_HSKP.L34B_BIAS" />
1259
+ <xtce:ParameterRefEntry parameterRef="HIT_HSKP.EBOX_P2D0VD" />
1260
+ <xtce:ParameterRefEntry parameterRef="HIT_HSKP.HSKP_SPARE5" />
1261
+ </xtce:EntryList>
1262
+ </xtce:SequenceContainer>
1263
+ <xtce:SequenceContainer name="HIT_SCIENCE">
1264
+ <xtce:BaseContainer containerRef="CCSDSPacket">
1265
+ <xtce:RestrictionCriteria>
1266
+ <xtce:Comparison parameterRef="PKT_APID" value="1252" useCalibratedValue="false" />
1267
+ </xtce:RestrictionCriteria>
1268
+ </xtce:BaseContainer>
1269
+ <xtce:EntryList>
1270
+ <xtce:ParameterRefEntry parameterRef="HIT_SCIENCE.SC_TICK" />
1271
+ <xtce:ParameterRefEntry parameterRef="HIT_SCIENCE.SCIENCE_DATA" />
1272
+ </xtce:EntryList>
1273
+ </xtce:SequenceContainer>
1274
+ </xtce:ContainerSet>
1275
+ </xtce:TelemetryMetaData>
1276
+ </xtce:SpaceSystem>