imap-processing 0.7.0__py3-none-any.whl → 0.9.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


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

Files changed (172) hide show
  1. imap_processing/__init__.py +1 -1
  2. imap_processing/_version.py +2 -2
  3. imap_processing/ccsds/excel_to_xtce.py +36 -2
  4. imap_processing/cdf/config/imap_codice_global_cdf_attrs.yaml +1 -1
  5. imap_processing/cdf/config/imap_codice_l1a_variable_attrs.yaml +145 -30
  6. imap_processing/cdf/config/imap_glows_l1b_variable_attrs.yaml +36 -36
  7. imap_processing/cdf/config/imap_hi_variable_attrs.yaml +136 -9
  8. imap_processing/cdf/config/imap_hit_global_cdf_attrs.yaml +14 -0
  9. imap_processing/cdf/config/imap_hit_l1a_variable_attrs.yaml +63 -1
  10. imap_processing/cdf/config/imap_hit_l1b_variable_attrs.yaml +9 -0
  11. imap_processing/cdf/config/imap_idex_global_cdf_attrs.yaml +14 -7
  12. imap_processing/cdf/config/imap_idex_l1a_variable_attrs.yaml +577 -235
  13. imap_processing/cdf/config/imap_idex_l1b_variable_attrs.yaml +326 -0
  14. imap_processing/cdf/config/imap_lo_l1a_variable_attrs.yaml +33 -23
  15. imap_processing/cdf/config/imap_mag_l1_variable_attrs.yaml +24 -28
  16. imap_processing/cdf/config/imap_ultra_l1a_variable_attrs.yaml +1 -0
  17. imap_processing/cdf/config/imap_ultra_l1b_variable_attrs.yaml +137 -79
  18. imap_processing/cdf/config/imap_variable_schema.yaml +13 -0
  19. imap_processing/cdf/imap_cdf_manager.py +31 -27
  20. imap_processing/cdf/utils.py +3 -5
  21. imap_processing/cli.py +25 -14
  22. imap_processing/codice/codice_l1a.py +153 -63
  23. imap_processing/codice/constants.py +10 -10
  24. imap_processing/codice/decompress.py +10 -11
  25. imap_processing/codice/utils.py +1 -0
  26. imap_processing/glows/l1a/glows_l1a.py +1 -2
  27. imap_processing/glows/l1b/glows_l1b.py +3 -3
  28. imap_processing/glows/l1b/glows_l1b_data.py +59 -37
  29. imap_processing/glows/l2/glows_l2_data.py +123 -0
  30. imap_processing/hi/l1a/hi_l1a.py +4 -4
  31. imap_processing/hi/l1a/histogram.py +107 -109
  32. imap_processing/hi/l1a/science_direct_event.py +92 -225
  33. imap_processing/hi/l1b/hi_l1b.py +85 -11
  34. imap_processing/hi/l1c/hi_l1c.py +23 -1
  35. imap_processing/hi/packet_definitions/TLM_HI_COMBINED_SCI.xml +3994 -0
  36. imap_processing/hi/utils.py +1 -1
  37. imap_processing/hit/hit_utils.py +221 -0
  38. imap_processing/hit/l0/constants.py +118 -0
  39. imap_processing/hit/l0/decom_hit.py +100 -156
  40. imap_processing/hit/l1a/hit_l1a.py +170 -184
  41. imap_processing/hit/l1b/hit_l1b.py +33 -153
  42. imap_processing/ialirt/l0/process_codicelo.py +153 -0
  43. imap_processing/ialirt/l0/process_hit.py +5 -5
  44. imap_processing/ialirt/packet_definitions/ialirt_codicelo.xml +281 -0
  45. imap_processing/ialirt/process_ephemeris.py +212 -0
  46. imap_processing/idex/idex_l1a.py +65 -84
  47. imap_processing/idex/idex_l1b.py +192 -0
  48. imap_processing/idex/idex_variable_unpacking_and_eu_conversion.csv +33 -0
  49. imap_processing/idex/packet_definitions/idex_packet_definition.xml +97 -595
  50. imap_processing/lo/l0/decompression_tables/decompression_tables.py +17 -1
  51. imap_processing/lo/l0/lo_science.py +45 -13
  52. imap_processing/lo/l1a/lo_l1a.py +76 -8
  53. imap_processing/lo/packet_definitions/lo_xtce.xml +8344 -1849
  54. imap_processing/mag/l0/decom_mag.py +4 -3
  55. imap_processing/mag/l1a/mag_l1a.py +12 -13
  56. imap_processing/mag/l1a/mag_l1a_data.py +1 -2
  57. imap_processing/mag/l1b/mag_l1b.py +90 -7
  58. imap_processing/spice/geometry.py +156 -16
  59. imap_processing/spice/time.py +144 -2
  60. imap_processing/swapi/l1/swapi_l1.py +4 -4
  61. imap_processing/swapi/l2/swapi_l2.py +1 -1
  62. imap_processing/swapi/packet_definitions/swapi_packet_definition.xml +1535 -446
  63. imap_processing/swe/l1b/swe_l1b_science.py +8 -8
  64. imap_processing/swe/l2/swe_l2.py +134 -17
  65. imap_processing/tests/ccsds/test_data/expected_output.xml +2 -1
  66. imap_processing/tests/ccsds/test_excel_to_xtce.py +4 -4
  67. imap_processing/tests/cdf/test_imap_cdf_manager.py +0 -10
  68. imap_processing/tests/codice/conftest.py +1 -17
  69. imap_processing/tests/codice/data/imap_codice_l0_raw_20241110_v001.pkts +0 -0
  70. imap_processing/tests/codice/test_codice_l0.py +8 -2
  71. imap_processing/tests/codice/test_codice_l1a.py +127 -107
  72. imap_processing/tests/codice/test_codice_l1b.py +1 -0
  73. imap_processing/tests/codice/test_decompress.py +7 -7
  74. imap_processing/tests/conftest.py +100 -58
  75. imap_processing/tests/glows/conftest.py +6 -0
  76. imap_processing/tests/glows/test_glows_l1b.py +9 -9
  77. imap_processing/tests/glows/test_glows_l1b_data.py +9 -9
  78. imap_processing/tests/hi/test_data/l0/H90_NHK_20241104.bin +0 -0
  79. imap_processing/tests/hi/test_data/l0/H90_sci_cnt_20241104.bin +0 -0
  80. imap_processing/tests/hi/test_data/l0/H90_sci_de_20241104.bin +0 -0
  81. imap_processing/tests/hi/test_data/l1a/imap_hi_l1a_45sensor-de_20250415_v000.cdf +0 -0
  82. imap_processing/tests/hi/test_hi_l1b.py +73 -3
  83. imap_processing/tests/hi/test_hi_l1c.py +10 -2
  84. imap_processing/tests/hi/test_l1a.py +31 -58
  85. imap_processing/tests/hi/test_science_direct_event.py +58 -0
  86. imap_processing/tests/hi/test_utils.py +4 -3
  87. imap_processing/tests/hit/test_data/sci_sample1.ccsds +0 -0
  88. imap_processing/tests/hit/{test_hit_decom.py → test_decom_hit.py} +95 -36
  89. imap_processing/tests/hit/test_hit_l1a.py +299 -179
  90. imap_processing/tests/hit/test_hit_l1b.py +231 -24
  91. imap_processing/tests/hit/test_hit_utils.py +218 -0
  92. imap_processing/tests/hit/validation_data/hskp_sample_eu.csv +89 -0
  93. imap_processing/tests/hit/validation_data/sci_sample_raw1.csv +29 -0
  94. imap_processing/tests/ialirt/test_data/l0/apid01152.tlm +0 -0
  95. imap_processing/tests/ialirt/test_data/l0/imap_codice_l1a_lo-ialirt_20241110193700_v0.0.0.cdf +0 -0
  96. imap_processing/tests/ialirt/unit/test_process_codicelo.py +106 -0
  97. imap_processing/tests/ialirt/unit/test_process_ephemeris.py +109 -0
  98. imap_processing/tests/ialirt/unit/test_process_hit.py +9 -6
  99. imap_processing/tests/idex/conftest.py +2 -2
  100. imap_processing/tests/idex/imap_idex_l0_raw_20231214_v001.pkts +0 -0
  101. imap_processing/tests/idex/impact_14_tof_high_data.txt +4444 -4444
  102. imap_processing/tests/idex/test_idex_l0.py +4 -4
  103. imap_processing/tests/idex/test_idex_l1a.py +8 -2
  104. imap_processing/tests/idex/test_idex_l1b.py +126 -0
  105. imap_processing/tests/lo/test_lo_l1a.py +7 -16
  106. imap_processing/tests/lo/test_lo_science.py +69 -5
  107. imap_processing/tests/lo/test_pkts/imap_lo_l0_raw_20240803_v002.pkts +0 -0
  108. imap_processing/tests/lo/validation_data/Instrument_FM1_T104_R129_20240803_ILO_SCI_DE_dec_DN_with_fills.csv +1999 -0
  109. imap_processing/tests/mag/imap_mag_l1a_norm-magi_20251017_v001.cdf +0 -0
  110. imap_processing/tests/mag/test_mag_l1b.py +97 -7
  111. imap_processing/tests/spice/test_data/imap_ena_sim_metakernel.template +3 -1
  112. imap_processing/tests/spice/test_geometry.py +115 -9
  113. imap_processing/tests/spice/test_time.py +135 -6
  114. imap_processing/tests/swapi/test_swapi_decom.py +75 -69
  115. imap_processing/tests/swapi/test_swapi_l1.py +4 -4
  116. imap_processing/tests/swe/conftest.py +33 -0
  117. imap_processing/tests/swe/l1_validation/swe_l0_unpacked-data_20240510_v001_VALIDATION_L1B_v3.dat +4332 -0
  118. imap_processing/tests/swe/test_swe_l1b.py +29 -8
  119. imap_processing/tests/swe/test_swe_l2.py +64 -8
  120. imap_processing/tests/test_utils.py +2 -2
  121. imap_processing/tests/ultra/test_data/l0/ultra45_raw_sc_ultrarawimg_withFSWcalcs_FM45_40P_Phi28p5_BeamCal_LinearScan_phi2850_theta-000_20240207T102740.csv +3314 -3314
  122. imap_processing/tests/ultra/test_data/l1/dps_exposure_helio_45_E12.cdf +0 -0
  123. imap_processing/tests/ultra/test_data/l1/dps_exposure_helio_45_E24.cdf +0 -0
  124. imap_processing/tests/ultra/unit/test_de.py +113 -0
  125. imap_processing/tests/ultra/unit/test_spatial_utils.py +125 -0
  126. imap_processing/tests/ultra/unit/test_ultra_l1b.py +27 -3
  127. imap_processing/tests/ultra/unit/test_ultra_l1b_annotated.py +31 -10
  128. imap_processing/tests/ultra/unit/test_ultra_l1b_extended.py +55 -35
  129. imap_processing/tests/ultra/unit/test_ultra_l1c_pset_bins.py +10 -68
  130. imap_processing/ultra/constants.py +12 -3
  131. imap_processing/ultra/l1b/de.py +168 -30
  132. imap_processing/ultra/l1b/ultra_l1b_annotated.py +24 -10
  133. imap_processing/ultra/l1b/ultra_l1b_extended.py +46 -80
  134. imap_processing/ultra/l1c/ultra_l1c_pset_bins.py +60 -144
  135. imap_processing/ultra/utils/spatial_utils.py +221 -0
  136. {imap_processing-0.7.0.dist-info → imap_processing-0.9.0.dist-info}/METADATA +15 -14
  137. {imap_processing-0.7.0.dist-info → imap_processing-0.9.0.dist-info}/RECORD +142 -139
  138. imap_processing/cdf/cdf_attribute_manager.py +0 -322
  139. imap_processing/cdf/config/shared/default_global_cdf_attrs_schema.yaml +0 -246
  140. imap_processing/cdf/config/shared/default_variable_cdf_attrs_schema.yaml +0 -466
  141. imap_processing/hi/l0/decom_hi.py +0 -24
  142. imap_processing/hi/packet_definitions/hi_packet_definition.xml +0 -482
  143. imap_processing/hit/l0/data_classes/housekeeping.py +0 -240
  144. imap_processing/hit/l0/data_classes/science_packet.py +0 -259
  145. imap_processing/hit/l0/utils/hit_base.py +0 -57
  146. imap_processing/tests/cdf/shared/default_global_cdf_attrs_schema.yaml +0 -246
  147. imap_processing/tests/cdf/shared/default_variable_cdf_attrs_schema.yaml +0 -466
  148. imap_processing/tests/cdf/test_cdf_attribute_manager.py +0 -353
  149. imap_processing/tests/codice/data/imap_codice_l0_hi-counters-aggregated_20240429_v001.pkts +0 -0
  150. imap_processing/tests/codice/data/imap_codice_l0_hi-counters-singles_20240429_v001.pkts +0 -0
  151. imap_processing/tests/codice/data/imap_codice_l0_hi-omni_20240429_v001.pkts +0 -0
  152. imap_processing/tests/codice/data/imap_codice_l0_hi-pha_20240429_v001.pkts +0 -0
  153. imap_processing/tests/codice/data/imap_codice_l0_hi-sectored_20240429_v001.pkts +0 -0
  154. imap_processing/tests/codice/data/imap_codice_l0_hskp_20100101_v001.pkts +0 -0
  155. imap_processing/tests/codice/data/imap_codice_l0_lo-counters-aggregated_20240429_v001.pkts +0 -0
  156. imap_processing/tests/codice/data/imap_codice_l0_lo-counters-singles_20240429_v001.pkts +0 -0
  157. imap_processing/tests/codice/data/imap_codice_l0_lo-nsw-angular_20240429_v001.pkts +0 -0
  158. imap_processing/tests/codice/data/imap_codice_l0_lo-nsw-priority_20240429_v001.pkts +0 -0
  159. imap_processing/tests/codice/data/imap_codice_l0_lo-nsw-species_20240429_v001.pkts +0 -0
  160. imap_processing/tests/codice/data/imap_codice_l0_lo-pha_20240429_v001.pkts +0 -0
  161. imap_processing/tests/codice/data/imap_codice_l0_lo-sw-angular_20240429_v001.pkts +0 -0
  162. imap_processing/tests/codice/data/imap_codice_l0_lo-sw-priority_20240429_v001.pkts +0 -0
  163. imap_processing/tests/codice/data/imap_codice_l0_lo-sw-species_20240429_v001.pkts +0 -0
  164. imap_processing/tests/hi/test_decom.py +0 -55
  165. imap_processing/tests/hi/test_l1a_sci_de.py +0 -72
  166. imap_processing/tests/idex/imap_idex_l0_raw_20230725_v001.pkts +0 -0
  167. imap_processing/tests/mag/imap_mag_l1a_burst-magi_20231025_v001.cdf +0 -0
  168. /imap_processing/{hi/l0/__init__.py → tests/glows/test_glows_l2_data.py} +0 -0
  169. /imap_processing/tests/hit/test_data/{imap_hit_l0_hk_20100105_v001.pkts → imap_hit_l0_raw_20100105_v001.pkts} +0 -0
  170. {imap_processing-0.7.0.dist-info → imap_processing-0.9.0.dist-info}/LICENSE +0 -0
  171. {imap_processing-0.7.0.dist-info → imap_processing-0.9.0.dist-info}/WHEEL +0 -0
  172. {imap_processing-0.7.0.dist-info → imap_processing-0.9.0.dist-info}/entry_points.txt +0 -0
@@ -1,6 +1,8 @@
1
1
  int_fillval: &int_fillval -9223372036854775808
2
- min_epoch: &min_epoch -315575942816000000
3
- max_epoch: &max_epoch 3155630469184000000
2
+
3
+ max_uint32: &max_uint32 4294967295
4
+ max_uint16: &max_uint16 65535
5
+ max_uint8: &max_uint8 255
4
6
 
5
7
  data_min: &data_min 0
6
8
  data_max: &data_max 4096
@@ -10,27 +12,39 @@ sample_rate_max: &sample_rate_max 130
10
12
 
11
13
  int_maxval: &int_maxval 9223372036854775807
12
14
 
13
- l1_data_base: &l1_data_base
15
+ # <=== Base Attributes ===>
16
+ string_base_attrs: &string_base
17
+ CATDESC: " "
18
+ FIELDNAM: " "
19
+ FORMAT: A3
20
+ LABLAXIS: "none"
21
+ VAR_TYPE: metadata
22
+ DISPLAY_TYPE: no_plot
23
+ DEPEND_0: epoch
24
+ UNITS: " "
25
+
26
+ l1a_data_base: &l1a_data_base
14
27
  VALIDMIN: *data_min
15
28
  VALIDMAX: *data_max
16
29
  DISPLAY_TYPE: spectrogram
17
30
  DEPEND_0: epoch
18
- FORMAT: ""
31
+ FORMAT: I12
19
32
  UNITS: dN
20
33
  VAR_TYPE: data
21
- # VAR_PURPOSE: PRIMARY
22
34
  CATDESC: ""
23
35
  FIELDNAM: ""
24
36
  FILLVAL: *int_fillval
25
37
  LABLAXIS: ""
26
38
 
27
- l1_tof_base: &l1_tof_base
28
- <<: *l1_data_base
39
+ l1a_tof_base: &l1a_tof_base
40
+ <<: *l1a_data_base
29
41
  DEPEND_1: time_high_sr
42
+ LABL_PTR_1: time_high_sr_label
30
43
 
31
- l1_target_base: &l1_target_base
32
- <<: *l1_data_base
44
+ l1a_target_base: &l1a_target_base
45
+ <<: *l1a_data_base
33
46
  DEPEND_1: time_low_sr
47
+ LABL_PTR_1: time_low_sr_label
34
48
 
35
49
  sample_rate_base: &sample_rate_base
36
50
  DISPLAY_TYPE: no_plot
@@ -50,23 +64,35 @@ sample_rate_base: &sample_rate_base
50
64
 
51
65
  trigger_base: &trigger_base
52
66
  VALIDMIN: 0
53
- VALIDMAX: *int_maxval
54
- DISPLAY_0: epoch
67
+ VALIDMAX: *max_uint32
68
+ DEPEND_0: epoch
55
69
  DISPLAY_TYPE: no_plot
56
70
  CATDESC: ""
57
71
  FIELDNAM: ""
58
72
  VAR_TYPE: support_data
59
73
  FILLVAL: *int_fillval
60
74
  LABLAXIS: ""
61
- FORMAT: I12
62
- UNITS: ""
75
+ FORMAT: I10
76
+ UNITS: " "
77
+
78
+ # <=== LABL_PTR_i Attributes ===>
79
+ time_high_sr_label:
80
+ CATDESC: High sample rate time steps for a dust event.
81
+ FIELDNAM: High Sample Rate Time
82
+ FORMAT: A5
83
+ VAR_TYPE: metadata
63
84
 
64
- # TODO: All of these have var_notes in idex_cef_attrs. Should I add these?
85
+ time_low_sr_label:
86
+ CATDESC: Low sample rate time steps for a dust event.
87
+ FIELDNAM: Low Sample Rate Time
88
+ FORMAT: A5
89
+ VAR_TYPE: metadata
90
+
91
+ # <=== Instrument Setting Attributes ===>
65
92
  low_sr_attrs:
66
93
  <<: *sample_rate_base
67
94
  CATDESC: Low sample rate time steps for a dust event.
68
95
  FIELDNAM: Low Sample Rate Time
69
- FILLVAL: *int_fillval
70
96
  VAR_NOTES: The low sample rate in microseconds. Steps are approximately 1/4.025
71
97
  microseconds in duration. Used by the Ion_Grid, Target_Low, and
72
98
  Target_High variables.
@@ -80,7 +106,7 @@ high_sr_attrs:
80
106
  TOF_Low variables.
81
107
 
82
108
  tof_high_attrs:
83
- <<: *l1_tof_base
109
+ <<: *l1a_tof_base
84
110
  CATDESC: Time of flight waveform on the high-gain channel
85
111
  FIELDNAM: High Gain Time of Flight
86
112
  LABLAXIS: TOF High Ampl.
@@ -89,7 +115,7 @@ tof_high_attrs:
89
115
  Data is used to quantify dust composition.
90
116
 
91
117
  tof_mid_attrs:
92
- <<: *l1_tof_base
118
+ <<: *l1a_tof_base
93
119
  CATDESC: Time of flight waveform on the mid-gain channel
94
120
  FIELDNAM: Mid Gain Time of Flight
95
121
  LABLAXIS: TOF Mid Ampl.
@@ -98,7 +124,7 @@ tof_mid_attrs:
98
124
  Data is used to quantify dust composition.
99
125
 
100
126
  tof_low_attrs:
101
- <<: *l1_tof_base
127
+ <<: *l1a_tof_base
102
128
  FILLVAL: *int_fillval
103
129
  CATDESC: Time of flight waveform on the low-gain channel
104
130
  FIELDNAM: Low Gain Time of Flight
@@ -109,7 +135,7 @@ tof_low_attrs:
109
135
 
110
136
 
111
137
  target_low_attrs:
112
- <<: *l1_target_base
138
+ <<: *l1a_target_base
113
139
  CATDESC: Target low charge sensitive amplifier waveform
114
140
  FIELDNAM: Low Target Signal
115
141
  LABLAXIS: Low Target Ampl.
@@ -118,7 +144,7 @@ target_low_attrs:
118
144
  Data is used to quantify dust charge.
119
145
 
120
146
  target_high_attrs:
121
- <<: *l1_target_base
147
+ <<: *l1a_target_base
122
148
  CATDESC: Ion grid charge sensitive amplifier waveform
123
149
  FIELDNAM: High Target Signal
124
150
  LABLAXIS: High Target Ampl.
@@ -127,7 +153,7 @@ target_high_attrs:
127
153
  Data is used to quantify dust charge.
128
154
 
129
155
  ion_grid_attrs:
130
- <<: *l1_target_base
156
+ <<: *l1a_target_base
131
157
  CATDESC: Ion grid charge sensitive amplifier waveform data
132
158
  FIELDNAM: Ion Grid Signal
133
159
  LABLAXIS: Ion Grid Ampl.
@@ -135,292 +161,608 @@ ion_grid_attrs:
135
161
  Sampled at 3.75 Msps with 12-bit resolution.
136
162
  Data is used to quantify dust charge.
137
163
 
138
- # Trigger Stuff
139
-
140
- event_number:
164
+ shcoarse:
141
165
  <<: *trigger_base
142
- CATDESC: The unique number assigned to the impact by the FPGA
143
- FIELDNAM: Event Number
144
- VALIDMAX: 65535
145
- LABLAXIS: Event Number
146
- UNITS: ""
166
+ CATDESC: Time of packet generation (not data acquisition), as integer seconds since epoch
167
+ FIELDNAM: Secondary header coarse time
168
+ LABLAXIS: Packet Generation Time (Coarse)
169
+ UNITS: seconds
147
170
 
148
- tof_high_trigger_level:
171
+ shfine:
149
172
  <<: *trigger_base
150
- VALIDMAX: 1023
151
- FIELDNAM: TOF High Trigger Level
152
- CATDESC: Trigger level for the TOF High Channel
153
- LABLAXIS: Level
154
- UNITS: ""
173
+ CATDESC: Time of packet generation, each DN represents 20usec within current second
174
+ FIELDNAM: Secondary header fine time
175
+ VALIDMAX: *max_uint16
176
+ LABLAXIS: Packet Generation Time (Fine)
177
+ UNITS: seconds
155
178
 
156
- tof_high_trigger_num_max_1_2:
179
+ checksum:
157
180
  <<: *trigger_base
158
- VALIDMAX: 2047
159
- FIELDNAM: TOF High Double Pulse Max Samples
160
- CATDESC: Maximum number of samples between pulse 1 and 2 for TOF. High double pulse triggering.
161
- LABLAXIS: Samples Number
162
- UNITS: "" # "samples" in idex_packet_parser...?
181
+ CATDESC: CRC 16 Checksum
182
+ FIELDNAM: Checksum
183
+ UNITS: " "
163
184
 
164
- tof_high_trigger_num_min_1_2:
185
+ idx__sci0aid:
165
186
  <<: *trigger_base
166
- VALIDMAX: 2047
167
- FIELDNAM: TOF High Double Pulse Min Samples
168
- CATDESC: Minimum number of samples between pulse 1 and 2 for TOF High. Double pulse triggering.
169
- LABLAXIS: Samples Number
170
- UNITS: "" # "samples" in idex_packet_parser...?
187
+ CATDESC: Accountability identifier for this event
188
+ FIELDNAM: Accountability identifier
189
+ LABLAXIS: Accountability ID
171
190
 
172
- tof_high_trigger_num_min_1:
191
+ idx__sci0type:
173
192
  <<: *trigger_base
174
- VALIDMAX: 255
175
- FIELDNAM: TOF High Pulse 1 Min Samples
176
- CATDESC: Minimum number of samples for pulse 1 for TOF High single and double pulse triggering.
177
- LABLAXIS: Samples Number
178
- UNITS: "" # "samples" in idex_packet_parser...?
193
+ CATDESC: Packet data content type
194
+ FIELDNAM: Packet data content type
195
+ VALIDMAX: *max_uint8
179
196
 
180
- tof_high_trigger_num_max_1:
197
+ idx__sci0cont:
181
198
  <<: *trigger_base
182
- VALIDMAX: 255
183
- FIELDNAM: TOF High Pulse 1 Max Samples
184
- CATDESC: Maximum number of samples for pulse 1 for TOF High single and double pulse triggering.
185
- LABLAXIS: Samples Number
186
- UNITS: "" # "samples" in idex_packet_parser...?
199
+ CATDESC: Channels included in downlink
200
+ FIELDNAM: Downlink channels
201
+ VALIDMAX: *max_uint8
187
202
 
188
- tof_high_trigger_num_min_2:
203
+ idx__sci0spare1:
189
204
  <<: *trigger_base
190
- VALIDMAX: 255
191
- FIELDNAM: TOF High Pulse 2 Min Samples
192
- CATDESC: Minimum number of samples for pulse 2 for TOF High single and double pulse triggering.
193
- LABLAXIS: Samples Number
194
- UNITS: "" # "samples" in idex_packet_parser...?
205
+ CATDESC: Spare for alignment
206
+ FIELDNAM: Sci spare 1
207
+ VALIDMAX: 8191
208
+ LABLAXIS: Sci Spare 1
209
+
210
+ idx__sci0pack:
211
+ <<: *string_base
212
+ CATDESC: Flag indicating if data was bit-packed (Always 0b1)
213
+ FIELDNAM: Data packed flag
214
+
215
+ idx__sci0frag:
216
+ <<: *string_base
217
+ CATDESC: Flag indicating if data was fragmented
218
+ FIELDNAM: Data fragmented flag
219
+
220
+ idx__sci0comp:
221
+ <<: *string_base
222
+ CATDESC: Flag indicating if data was compressed
223
+ FIELDNAM: Data compression flag
195
224
 
196
- tof_high_trigger_num_max_2:
225
+ idx__sci0evtnum:
197
226
  <<: *trigger_base
198
- VALIDMAX: 255
199
- FIELDNAM: TOF High Pulse 2 Max Samples
200
- CATDESC: Maximum number of samples for pulse 2 for TOF High single and double pulse triggering.
201
- LABLAXIS: Samples Number
202
- UNITS: "" # "samples" in idex_packet_parser...?
227
+ CATDESC: Event number
228
+ FIELDNAM: Event number
229
+ VALIDMAX: *max_uint16
230
+ LABLAXIS: Event Number
203
231
 
204
- tof_low_trigger_level:
232
+ idx__sci0cat:
205
233
  <<: *trigger_base
206
- VALIDMAX: 1023
207
- FIELDNAM: TOF Low Trigger Level
208
- CATDESC: Trigger level for the TOF Low Channel
209
- LABLAXIS: Level
210
- UNITS: "" # "samples" in idex_packet_parser...?
234
+ CATDESC: Category assigned to this event (for most recent processing operation)
235
+ FIELDNAM: Category
236
+ VALIDMAX: *max_uint16
237
+ LABLAXIS: Category
211
238
 
212
- tof_low_trigger_num_max_1_2:
239
+ idx__sci0qual:
213
240
  <<: *trigger_base
214
- VALIDMAX: 2047
215
- FIELDNAM: TOF Low Double Pulse Max Samples
216
- CATDESC: Maximum number of samples between pulse 1 and 2 for TOF Low double pulse triggering.
217
- LABLAXIS: Samples Number
218
- UNITS: "" # "samples" in idex_packet_parser...?
241
+ CATDESC: Quality factor assigned to this category
242
+ FIELDNAM: Quality factor
243
+ VALIDMAX: *max_uint8
244
+ LABLAXIS: Quality factor
219
245
 
220
- tof_low_trigger_num_min_1_2:
246
+ idx__sci0fragoff:
221
247
  <<: *trigger_base
222
- VALIDMAX: 2047
223
- FIELDNAM: TOF Low Double Pulse Min Samples
224
- CATDESC: Minimum number of samples between pulse 1 and 2 for TOF Low double pulse triggering.
225
- LABLAXIS: Samples Number
226
- UNITS: "" # "samples" in idex_packet_parser...?
248
+ CATDESC: Starting offset for this data when reconstructing data that spans multiple packets (fragmented)
249
+ FIELDNAM: Fragmentation offset
250
+ VALIDMAX: *max_uint16
251
+ LABLAXIS: Offset
227
252
 
228
- tof_low_trigger_num_min_1:
253
+ idx__sci0ver:
229
254
  <<: *trigger_base
230
- VALIDMAX: 255
231
- FIELDNAM: TOF Low Pulse 1 Min Samples
232
- CATDESC: Minimum number of samples for pulse 1 for TOF Low single and double pulse triggering.
233
- LABLAXIS: Samples Number
234
- UNITS: "" # "samples" in idex_packet_parser...?
255
+ CATDESC: Science CSC version number for this header
256
+ FIELDNAM: Version number
257
+ VALIDMAX: *max_uint16
258
+ LABLAXIS: Version number
235
259
 
236
- tof_low_trigger_num_max_1:
260
+ idx__sci0time32:
237
261
  <<: *trigger_base
238
- VALIDMAX: 255
239
- FIELDNAM: TOF Low Pulse 1 Max Samples
240
- CATDESC: Maximum number of samples for pulse 1 for TOF Low single and double pulse triggering.
241
- LABLAXIS: Samples Number
242
- UNITS: "" # "samples" in idex_packet_parser...?
262
+ CATDESC: Event time
263
+ FIELDNAM: Event time
264
+ LABLAXIS: Event time
243
265
 
244
- tof_low_trigger_num_min_2 :
266
+ idx__sci0spare2:
245
267
  <<: *trigger_base
246
- VALIDMAX: 255
247
- FIELDNAM: TOF Low Pulse 2 Min Samples
248
- CATDESC: Minimum number of samples for pulse 2 for TOF Low single and double pulse triggering.
249
- LABLAXIS: Samples Number
250
- UNITS: "" # "samples" in idex_packet_parser...?
268
+ CATDESC: Spare for alignment
269
+ FIELDNAM: Sci spare 2
270
+ LABLAXIS: Sci Spare 2
251
271
 
252
- tof_low_trigger_num_max_2:
272
+ idx__sci0spare3:
253
273
  <<: *trigger_base
254
- VALIDMAX: 65535
255
- FIELDNAM: TOF Low Pulse 2 Max Samples
256
- CATDESC: Maximum number of samples for pulse 2 for TOF Low single and double pulse triggering.
257
- LABLAXIS: Samples Number
258
- UNITS: "" # "samples" in idex_packet_parser...?
274
+ CATDESC: Spare for alignment
275
+ FIELDNAM: Sci spare 3
276
+ LABLAXIS: Sci Spare 3
259
277
 
260
- tof_mid_trigger_level:
278
+ idx__sci0spare4:
261
279
  <<: *trigger_base
262
- VALIDMAX: 1023
263
- FIELDNAM: TOF Mid Trigger Level
264
- CATDESC: Trigger level for the TOF Mid Channel
265
- LABLAXIS: Level
266
- UNITS: "" # "samples" in idex_packet_parser...?
280
+ CATDESC: Spare for alignment
281
+ FIELDNAM: Sci spare 4
282
+ LABLAXIS: Sci Spare 4
267
283
 
268
- tof_mid_trigger_num_max_1_2:
284
+ idx__txhdrscievtlen:
269
285
  <<: *trigger_base
270
- VALIDMAX: 2047
271
- FIELDNAM: TOF Mid Double Pulse Max Samples
272
- CATDESC: Maximum number of samples between pulse 1 and 2 for TOF Mid double pulse triggering.
273
- LABLAXIS: Samples Number
274
- UNITS: "" # "samples" in idex_packet_parser...?
286
+ CATDESC: Length of raw sci data in memory for this event (all 6 channels), in dwords
287
+ FIELDNAM: Data length
288
+ LABLAXIS: Data length
275
289
 
276
- tof_mid_trigger_num_min_1_2:
290
+ idx__txhdrsp00:
277
291
  <<: *trigger_base
278
- VALIDMAX: 2047
279
- FIELDNAM: TOF Mid Double Pulse Min Samples
280
- CATDESC: Minimum number of samples between pulse 1 and 2 for TOF Mid double pulse triggering.
281
- LABLAXIS: Samples Number
282
- UNITS: "" # "samples" in idex_packet_parser...?
292
+ CATDESC: Spare for alignment
293
+ FIELDNAM: Spare 0
294
+ VALIDMAX: *max_uint16
295
+ LABLAXIS: Spare 0
283
296
 
284
- tof_mid_trigger_num_min_1:
297
+ idx__txhdrtimesec1:
285
298
  <<: *trigger_base
286
- VALIDMAX: 255
287
- FIELDNAM: TOF Mid Pulse 1 Min Samples
288
- CATDESC: Minimum number of samples for pulse 1 for TOF Mid single and double pulse triggering.
289
- LABLAXIS: Samples Number
290
- UNITS: "" # "samples" in idex_packet_parser...?
299
+ CATDESC: Trigger time, bits 31:16 of the coarse timestamp (integer seconds since epoch)
300
+ FIELDNAM: Trigger time
301
+ VALIDMAX: *max_uint16
302
+ LABLAXIS: Trigger Time
291
303
 
292
- tof_mid_trigger_num_max_1:
304
+ idx__txhdrtimesec2:
293
305
  <<: *trigger_base
294
- VALIDMAX: 255
295
- FIELDNAM: TOF Mid Pulse 1 Max Samples
296
- CATDESC: Maximum number of samples for pulse 1 for TOF Mid single and double pulse triggering.
297
- LABLAXIS: Samples Number
298
- UNITS: "" # "samples" in idex_packet_parser...?
306
+ CATDESC: Trigger time, bits 15:0 of the coarse timestamp (integer seconds since epoch)
307
+ FIELDNAM: Trigger time
308
+ VALIDMAX: *max_uint16
309
+ LABLAXIS: Trigger Time
299
310
 
300
- tof_mid_trigger_num_min_2:
311
+ idx__txhdrtimesubs:
301
312
  <<: *trigger_base
302
- VALIDMAX: 255
303
- FIELDNAM: TOF Mid Pulse 2 Min Samples
304
- CATDESC: Minimum number of samples for pulse 2 for TOF Mid single and double pulse triggering.
305
- LABLAXIS: Samples Number
306
- UNITS: "" # "samples" in idex_packet_parser...?
313
+ CATDESC: Trigger time, subseconds field
314
+ FIELDNAM: Trigger time
315
+ VALIDMAX: *max_uint16
316
+ LABLAXIS: Trigger time
307
317
 
308
- tof_mid_trigger_num_max_2:
318
+ idx__txhdrsp01:
309
319
  <<: *trigger_base
310
- VALIDMAX: 255
311
- FIELDNAM: TOF Mid Pulse 2 Max Samples
312
- CATDESC: Maximum number of samples for pulse 2 for TOF Mid single and double pulse triggering.
313
- LABLAXIS: Samples Number
314
- UNITS: "" # "samples" in idex_packet_parser...?
320
+ CATDESC: Spare for alignment
321
+ FIELDNAM: Spare 1
322
+ VALIDMAX: 1
323
+ LABLAXIS: Spare 1
315
324
 
316
- low_sample_coincidence_mode_blocks:
325
+ idx__txhdrtrigoffset:
317
326
  <<: *trigger_base
327
+ CATDESC: Trigger offset
328
+ FIELDNAM: Trigger offset
318
329
  VALIDMAX: 7
319
- FIELDNAM: LS Coincidence Mode Blocks
320
- CATDESC: Number of blocks coincidence window is enabled after low sample trigger.
321
- LABLAXIS: Blocks Number
322
- UNITS: "" # "blocks" in idex_packet_parser...?
330
+ LABLAXIS: Trigger offset
323
331
 
324
- low_sample_trigger_polarity:
332
+ idx__txhdrsp02:
325
333
  <<: *trigger_base
334
+ CATDESC: Spare for alignment
335
+ FIELDNAM: Spare 2
326
336
  VALIDMAX: 1
327
- FIELDNAM: LS Trigger Polarity
328
- CATDESC: The trigger polarity for low sample (0 = normal, 1 = inverted)
329
- LABLAXIS: Polarity
330
- UNITS: ""
337
+ LABLAXIS: Spare 2
331
338
 
332
- low_sample_trigger_level:
339
+ idx__txhdrtrigid:
333
340
  <<: *trigger_base
334
- VALIDMAX: 4095
335
- FIELDNAM: LS Trigger Level
336
- CATDESC: Trigger level for the low sample
337
- LABLAXIS: Level
338
- UNITS: ""
341
+ CATDESC: Identifies which channel(s) caused this event to be captured (multiple concurrent triggers are possible)
342
+ FIELDNAM: Trigger ID
343
+ VALIDMAX: 1024
344
+ LABLAXIS: Trigger ID
339
345
 
340
- low_sample_trigger_num_min:
346
+ idx__txhdrevtnum:
341
347
  <<: *trigger_base
342
- VALIDMAX: 255
343
- FIELDNAM: LS Trigger Min Num Samples
344
- CATDESC: The minimum number of samples above/below the trigger level for triggering the low sample.
345
- LABLAXIS: Samples Number
346
- UNITS: "" # "samples" in idex_packet_parser...?
348
+ CATDESC: Event number, an incrementing counter to uniquely identify one event in dataset
349
+ FIELDNAM: Event Number
350
+ VALIDMAX: *max_uint16
351
+ LABLAXIS: Event Number
347
352
 
348
- low_sample_trigger_mode:
353
+ idx__txhdrblocks:
349
354
  <<: *trigger_base
350
- VALIDMAX: 1
351
- FIELDNAM: LS Trigger Mode Enabled
352
- CATDESC: Low sample trigger mode (0=disabled, 1=enabled)
353
- LABLAXIS: Mode
354
- UNITS: ""
355
+ CATDESC: Defines size of pre/post trigger blocks
356
+ FIELDNAM: Trigger block sizes
357
+ LABLAXIS: Trigger block sizes
355
358
 
356
- tof_low_trigger_mode:
359
+ idx__txhdrhgtrigctrl1:
357
360
  <<: *trigger_base
358
- VALIDMAX: 1
359
- FIELDNAM: TOF Low Trigger Mode Enabled
360
- CATDESC: TOF Low trigger mode (0=disabled, 1=enabled)
361
- LABLAXIS: Mode
362
- UNITS: ""
361
+ CATDESC: Settings for High Gain TOF ADC triggering, part 1
362
+ FIELDNAM: High gain TOF trigger settings
363
+ LABLAXIS: Trigger settings
364
+
365
+ idx__txhdrhgtrigctrl2:
366
+ <<: *trigger_base
367
+ CATDESC: Settings for High Gain TOF ADC triggering, part 2
368
+ FIELDNAM: High gain TOF trigger settings continued
369
+ LABLAXIS: Trigger settings
370
+
371
+ idx__txhdrlgtrigctrl1:
372
+ <<: *trigger_base
373
+ CATDESC: Settings for Low Gain TOF ADC triggering, part 1
374
+ FIELDNAM: Low gain TOF trigger settings
375
+ LABLAXIS: Trigger settings
363
376
 
364
- tof_mid_trigger_mode:
377
+ idx__txhdrlgtrigctrl2:
365
378
  <<: *trigger_base
379
+ CATDESC: Settings for Low Gain TOF ADC triggering, part 2
380
+ FIELDNAM: Low gain TOF trigger settings continued
381
+ LABLAXIS: Trigger settings
382
+
383
+ idx__txhdrmgtrigctrl1:
384
+ <<: *trigger_base
385
+ CATDESC: Settings for Mid Gain TOF ADC triggering, part 1
386
+ FIELDNAM: Mid gain TOF trigger settings
387
+ LABLAXIS: Trigger settings
388
+
389
+ idx__txhdrmgtrigctrl2:
390
+ <<: *trigger_base
391
+ CATDESC: Settings for Mid Gain TOF ADC triggering, part 2
392
+ FIELDNAM: Mid gain TOF trigger settings continued
393
+ LABLAXIS: Trigger settings
394
+
395
+ idx__txhdrsp03:
396
+ <<: *trigger_base
397
+ CATDESC: Spare for alignment
398
+ FIELDNAM: Spare 3
366
399
  VALIDMAX: 1
367
- FIELDNAM: TOF Mid Trigger Mode Enabled
368
- CATDESC: TOF Mid trigger mode (0=disabled, 1=enabled)
369
- LABLAXIS: Mode
370
- UNITS: ""
400
+ LABLAXIS: Spare 3
401
+
402
+ idx__txhdrlsadc:
403
+ <<: *trigger_base
404
+ CATDESC: Settings for Low Speed (target) ADC triggering
405
+ FIELDNAM: Low Speed ADC triggering
406
+ VALIDMAX: 16777215
407
+ LABLAXIS: ADC Triggering
408
+
409
+ idx__txhdrpolstat:
410
+ <<: *string_base
411
+ CATDESC: HVPS polarity status, "cation" mode (0) or "anion" mode (1)
412
+ FIELDNAM: HVPS polarity status
371
413
 
372
- tof_high_trigger_mode:
414
+ idx__txhdrsp04:
373
415
  <<: *trigger_base
416
+ CATDESC: Spare for alignment
417
+ FIELDNAM: Spare 4
418
+ VALIDMAX: 4194303
419
+ LABLAXIS: Spare 4
420
+
421
+ idx__txhdrpolctrl:
422
+ <<: *string_base
423
+ CATDESC: Reading from HVPS polarity
424
+ FIELDNAM: HVPS polarity reading
425
+
426
+ idx__txhdrcoinena:
427
+ <<: *string_base
428
+ CATDESC: LS coincidence enabled
429
+ FIELDNAM: LS coincidence enabled
430
+
431
+ idx__txhdrlstrigmode:
432
+ <<: *string_base
433
+ CATDESC: Trigger mode for low speed (target) channel
434
+ FIELDNAM: LS trigger mode
435
+
436
+ idx__txhdrmgtrigmode:
437
+ <<: *trigger_base
438
+ CATDESC: Trigger mode for mid-gain TOF channel
439
+ FIELDNAM: MG trigger mode
374
440
  VALIDMAX: 3
375
- FIELDNAM: TOF High Trigger Mode Enabled
376
- CATDESC: TOF High trigger mode (0=disabled, 1=threshold mode, 2=single pulse mode, 3=double pulse mode).
377
- LABLAXIS: Mode
378
- UNITS: ""
441
+ LABLAXIS: Trigger Mode
379
442
 
380
- detector_voltage:
443
+ idx__txhdrlgtrigmode:
381
444
  <<: *trigger_base
382
- VALIDMAX: 4095
383
- FIELDNAM: Detector Voltage
384
- CATDESC: Last measurement in raw dN for processor board signal - "Detector Voltage"
385
- LABLAXIS: Voltage
386
- UNITS: dN
445
+ CATDESC: Trigger mode for low-gain TOF channel
446
+ FIELDNAM: LG trigger mode
447
+ VALIDMAX: 3
448
+ LABLAXIS: Trigger Mode
387
449
 
388
- sensor_voltage:
450
+ idx__txhdrhgtrigmode:
389
451
  <<: *trigger_base
390
- VALIDMAX: 4095
391
- FIELDNAM: Sensor Voltage
392
- CATDESC: Last measurement in raw dN for processor board signal - "Sensor Voltage "
393
- LABLAXIS: Voltage
394
- UNITS: dN
452
+ CATDESC: Trigger mode for high-gain TOF channel
453
+ FIELDNAM: HG trigger mode
454
+ VALIDMAX: 3
455
+ LABLAXIS: Trigger Mode
395
456
 
396
- target_voltage:
457
+ idx__txhdrsp05:
397
458
  <<: *trigger_base
398
- VALIDMAX: 4095
399
- FIELDNAM: Target Voltage
400
- CATDESC: Last measurement in raw dN for processor board signal - "Target Voltage"
401
- LABLAXIS: Voltage
402
- UNITS: dN
459
+ CATDESC: Spare for alignment
460
+ FIELDNAM: Spare 5
461
+ LABLAXIS: Spare 5
403
462
 
404
- reflectron_voltage:
463
+ idx__txhdrsp06:
405
464
  <<: *trigger_base
406
- VALIDMAX: 4095
407
- FIELDNAM: Reflectron Voltage
408
- CATDESC: Last measurement in raw dN for processor board signal - "Reflectron Voltage"
409
- LABLAXIS: Voltage
410
- UNITS: dN
465
+ CATDESC: Spare for alignment
466
+ FIELDNAM: Spare 6
467
+ LABLAXIS: Spare 6
411
468
 
412
- rejection_voltage:
469
+ idx__txhdrsp07:
413
470
  <<: *trigger_base
414
- VALIDMAX: 4095
415
- FIELDNAM: Rejection Voltage
416
- CATDESC: Last measurement in raw dN for processor board signal - "Rejection Voltage"
417
- LABLAXIS: Voltage
418
- UNITS: dN
471
+ CATDESC: Spare for alignment
472
+ FIELDNAM: Spare 7
473
+ LABLAXIS: Spare 7
474
+
475
+ idx__txhdrsp08:
476
+ <<: *trigger_base
477
+ CATDESC: Spare for alignment
478
+ FIELDNAM: Spare 8
479
+ LABLAXIS: Spare 8
480
+
481
+ idx__txhdrtofmax:
482
+ <<: *trigger_base
483
+ CATDESC: Maximum HS ADC readings when first trigger happened
484
+ FIELDNAM: Maximum HS readings
485
+ LABLAXIS: Max HS Reading
486
+
487
+ idx__txhdrtofmin:
488
+ <<: *trigger_base
489
+ CATDESC: Minimum HS ADC readings when first trigger happened
490
+ FIELDNAM: Minimum HS readings
491
+ LABLAXIS: Min HS Reading
492
+
493
+ idx__txhdrls0maxmin:
494
+ <<: *trigger_base
495
+ CATDESC: LS ADC channel 0 min and max when first trigger happened
496
+ FIELDNAM: Maximum and Minimum channel 0 LS readings
497
+ LABLAXIS: LS Channel 0
498
+
499
+ idx__txhdrls1maxmin:
500
+ <<: *trigger_base
501
+ CATDESC: LS ADC channel 1 min and max when first trigger happened
502
+ FIELDNAM: Maximum and Minimum channel 1 LS readings
503
+ LABLAXIS: LS Channel 1
504
+
505
+ idx__txhdrls2maxmin:
506
+ <<: *trigger_base
507
+ CATDESC: LS ADC channel 2 min and max when first trigger happened
508
+ FIELDNAM: Maximum and Minimum channel 2 LS readings
509
+ LABLAXIS: LS Channel 2
510
+
511
+ idx__txhdrfifodelay:
512
+ <<: *trigger_base
513
+ CATDESC: FPGA FIFO delay register when first trigger happened
514
+ FIELDNAM: FPGA FIFO delay register
515
+ LABLAXIS: Delay
516
+
517
+ idx__txhdrsampdelay:
518
+ <<: *trigger_base
519
+ CATDESC: FPGA sample delay register when first trigger happened
520
+ FIELDNAM: FPGA sample register
521
+ LABLAXIS: Delay
522
+
523
+ idx__txhdrtranscnt:
524
+ <<: *trigger_base
525
+ CATDESC: FPGA transition count register when first trigger happened
526
+ FIELDNAM: FPGA transition counts
527
+ LABLAXIS: Counts
528
+
529
+ idx__txhdrprochkch01:
530
+ <<: *trigger_base
531
+ CATDESC: Last measurement in raw DN for Processor Board signal "current on the 1V POL" and "current on the 1.9V POL"
532
+ FIELDNAM: Measurements from channels 0 and 1 from Processor ADC
533
+ LABLAXIS: Processor ACD CH 0 and 1
534
+
535
+ idx__txhdrprochkch23:
536
+ <<: *trigger_base
537
+ CATDESC: Last measurement in raw DN for Processor Board signal "ProcBd Temperature 1" and "ProcBd Temperature 2"
538
+ FIELDNAM: Measurements from channels 2 and 3 from Processor ADC
539
+ LABLAXIS: Processor ACD CH 2 and 3
540
+
541
+ idx__txhdrprochkch45:
542
+ <<: *trigger_base
543
+ CATDESC: Last measurement in raw DN for Processor Board signal "voltage on 1V bus" and "FPGA Temperature"
544
+ FIELDNAM: Measurements from channels 4 and 5 from Processor ADC
545
+ LABLAXIS: Processor ACD CH 4 and 5
546
+
547
+ idx__txhdrprochkch67:
548
+ <<: *trigger_base
549
+ CATDESC: Last measurement in raw DN for Processor Board signal "voltage on 1.9V bus" and "voltage on 3.3V bus"
550
+ FIELDNAM: Measurements from channels 6 and 7 from Processor ADC
551
+ LABLAXIS: Processor ACD CH 6 and 7
552
+
553
+ idx__txhdrhvpshkch01:
554
+ <<: *trigger_base
555
+ CATDESC: Last measurement in raw DN for HVPS Board signal "Detector Voltage" and "Sensor Voltage"
556
+ FIELDNAM: Measurements from channels 0 and 1 from HVPS ADC
557
+ LABLAXIS: HVPS ADC CH 0 and 1
558
+
559
+ idx__txhdrhvpshkch23:
560
+ <<: *trigger_base
561
+ CATDESC: Last measurement in raw DN for HVPS Board signal "Target Voltage" and "Reflectron Voltage"
562
+ FIELDNAM: Measurements from channels 2 and 3 from HVPS ADC
563
+ LABLAXIS: HVPS ADC CH 2 and 3
564
+
565
+ idx__txhdrhvpshkch45:
566
+ <<: *trigger_base
567
+ CATDESC: Last measurement in raw DN for HVPS Board signal "Rejection Voltage" and "current for the HVPS detector"
568
+ FIELDNAM: Measurements from channels 4 and 5 from HVPS ADC
569
+ LABLAXIS: HVPS ADC CH 4 and 5
570
+
571
+ idx__txhdrhvpshkch67:
572
+ <<: *trigger_base
573
+ CATDESC: Last measurement in raw DN for HVPS Board signal "positive current for the HVPS sensor" and "negative current for the HVPS sensor"
574
+ FIELDNAM: Measurements from channels 6 and 7 from HVPS ADC
575
+ LABLAXIS: HVPS ADC CH 6 and 7
576
+
577
+ idx__txhdrlvhk0ch01:
578
+ <<: *trigger_base
579
+ CATDESC: Last measurement in raw DN for LVPS Board signal "voltage of +3.3V reference" and "voltage of +3.3V operational reference"
580
+ FIELDNAM: Measurements from channels 0 and 1 from LVPS ADC
581
+ LABLAXIS: LVPS ADC CH 0 and 1
582
+
583
+ idx__txhdrlvhk0ch23:
584
+ <<: *trigger_base
585
+ CATDESC: Last measurement in raw DN for LVPS Board signal "voltage on -6V bus" and "voltage on +6V bus"
586
+ FIELDNAM: Measurements from channels 2 and 3 from LVPS ADC
587
+ LABLAXIS: LVPS ADC CH 2 and 3
588
+
589
+ idx__txhdrlvhk0ch45:
590
+ <<: *trigger_base
591
+ CATDESC: Last measurement in raw DN for LVPS Board signal "voltage on +16V bus" and "voltage on +3.3V bus"
592
+ FIELDNAM: Measurements from channels 4 and 5 from LVPS ADC
593
+ LABLAXIS: LVPS ADC CH 4 and 5
594
+
595
+ idx__txhdrlvhk0ch67:
596
+ <<: *trigger_base
597
+ CATDESC: Last measurement in raw DN for LVPS Board signal "voltage on -5V bus" and "voltage on +5V bus"
598
+ FIELDNAM: Measurements from channels 6 and 7 from LVPS ADC
599
+ LABLAXIS: LVPS ADC CH 6 and 7
600
+
601
+ idx__txhdrlvhk1ch01:
602
+ <<: *trigger_base
603
+ CATDESC: Last measurement in raw DN for LVPS Board signal "current on +3.3V bus" and "current on 16V bus"
604
+ FIELDNAM: Measurements from channels 6 and 7 from LVPS ADC
605
+ LABLAXIS: LVPS ADC CH 6 and 7
606
+
607
+ idx__txhdrlvhk1ch23:
608
+ <<: *trigger_base
609
+ CATDESC: Last measurement in raw DN for LVPS Board signal "current on +6V bus" and "current on -6V bus"
610
+ FIELDNAM: Measurements from channels 2 and 3 from LVPS ADC
611
+ LABLAXIS: LVPS ADC CH 2 and 3
612
+
613
+ idx__txhdrlvhk1ch45:
614
+ <<: *trigger_base
615
+ CATDESC: Last measurement in raw DN for LVPS Board signal "current on +5V bus" and "current on -5V bus"
616
+ FIELDNAM: Measurements from channels 4 and 5 from LVPS ADC
617
+ LABLAXIS: LVPS ADC CH 4 and 5
618
+
619
+ idx__txhdrlvhk1ch67:
620
+ <<: *trigger_base
621
+ CATDESC: Last measurement in raw DN for LVPS Board signal "current on +2.5V bus" and "current on -2.5V bus"
622
+ FIELDNAM: Measurements from channels 6 and 7 from LVPS ADC
623
+ LABLAXIS: LVPS ADC CH 6 and 7
624
+
625
+ idx__txhdrlvhk2ch01:
626
+ <<: *trigger_base
627
+ CATDESC: Last measurement in raw DN for LVPS Board signal "primary target temperature" and "redundant target temperature"
628
+ FIELDNAM: Measurements from channels 0 and 1 from LVPS ADC
629
+ LABLAXIS: LVPS ADC CH 0 and 1
630
+
631
+ idx__txhdrlvhk2ch23:
632
+ <<: *trigger_base
633
+ CATDESC: Last measurement in raw DN for LVPS Board signal "temperature of Decon-Actuator Board (DAB)" and "temperature of LVPS board"
634
+ FIELDNAM: Measurements from channels 2 and 3 from LVPS ADC
635
+ LABLAXIS: LVPS ADC CH 2 and 3
636
+
637
+ idx__txhdrlvhk2ch45:
638
+ <<: *trigger_base
639
+ CATDESC: Last measurement in raw DN for LVPS Board signal "temperature of HVPS board (in EBox)" and "voltage on +2.5V bus"
640
+ FIELDNAM: Measurements from channels 4 and 5 from LVPS ADC
641
+ LABLAXIS: LVPS ADC CH 4 and 5
642
+
643
+ idx__txhdrlvhk2ch67:
644
+ <<: *trigger_base
645
+ CATDESC: Last measurement in raw DN for LVPS Board signal "voltage on -2.5V bus" and "Spare"
646
+ FIELDNAM: Measurements from channels 6 and 7 from LVPS ADC
647
+ LABLAXIS: LVPS ADC CH 6 and 7
648
+
649
+ idx__txhdrsp09:
650
+ <<: *trigger_base
651
+ CATDESC: Spare for alignment
652
+ FIELDNAM: Spare 9
653
+ LABLAXIS: Spare 9
654
+
655
+ idx__txhdrsp10:
656
+ <<: *trigger_base
657
+ CATDESC: Spare for alignment
658
+ FIELDNAM: Spare 10
659
+ LABLAXIS: Spare 10
660
+
661
+ idx__txhdrfswaidcopy:
662
+ <<: *trigger_base
663
+ CATDESC: Another copy of the AID
664
+ FIELDNAM: AID
665
+ LABLAXIS: AID
666
+
667
+ idx__txhdrfswbincopy:
668
+ <<: *trigger_base
669
+ CATDESC: Another copy of the filter/bin
670
+ FIELDNAM: Filter/Bin
671
+ LABLAXIS: Filter/Bin
672
+
673
+ idx__txhdrfswmajor:
674
+ <<: *trigger_base
675
+ CATDESC: Major version number for FSW
676
+ FIELDNAM: Major version
677
+ VALIDMAX: *max_uint8
678
+ LABLAXIS: Major Version
679
+
680
+ idx__txhdrfswminor:
681
+ <<: *trigger_base
682
+ CATDESC: Minor version number for FSW
683
+ FIELDNAM: Minor version
684
+ VALIDMAX: *max_uint8
685
+ LABLAXIS: Minor Version
686
+
687
+ idx__txhdrfswpatch:
688
+ <<: *trigger_base
689
+ CATDESC: Patch version number for FSW
690
+ FIELDNAM: Patch version
691
+ VALIDMAX: *max_uint16
692
+ LABLAXIS: Patch Version
693
+
694
+ idx__txhdrfswhvstat:
695
+ <<: *trigger_base
696
+ CATDESC: HVPS polarity setting and status
697
+ FIELDNAM: HVPS polarity setting and status
698
+ LABLAXIS: HVPS Polarity
699
+
700
+ idx__txhdrfswmem0:
701
+ <<: *trigger_base
702
+ CATDESC: Read from address specified in param table
703
+ FIELDNAM: Event Number
704
+ LABLAXIS: Event Number
705
+
706
+ idx__txhdrfswmem1:
707
+ <<: *trigger_base
708
+ CATDESC: Read from address specified in param table
709
+
710
+ idx__txhdrfswpt0:
711
+ <<: *trigger_base
712
+ CATDESC: Value copied from param table # TODO: get more detailed description
713
+
714
+ idx__txhdrfswpt1:
715
+ <<: *trigger_base
716
+ CATDESC: Value copied from param table # TODO: get more detailed description
717
+
718
+ idx__txhdrfswpt2:
719
+ <<: *trigger_base
720
+ CATDESC: Value copied from param table # TODO: get more detailed description
721
+
722
+ idx__txhdrfswpt3:
723
+ <<: *trigger_base
724
+ CATDESC: Value copied from param table # TODO: get a more detailed description
725
+
726
+ idx__txhdrfswpt4:
727
+ <<: *trigger_base
728
+ CATDESC: Value copied from param table # TODO: get a more detailed description
729
+
730
+ idx__txhdrfswpt5:
731
+ <<: *trigger_base
732
+ CATDESC: Value copied from param table # TODO: get a more detailed description
733
+
734
+ idx__txhdrfswpt6:
735
+ <<: *trigger_base
736
+ CATDESC: Value copied from param table # TODO: get a more detailed description
737
+
738
+ idx__txhdrfswpt7:
739
+ <<: *trigger_base
740
+ CATDESC: Value copied from param table # TODO: get a more detailed description
741
+
742
+ idx__txhdrfswpt8:
743
+ <<: *trigger_base
744
+ CATDESC: Value copied from param table # TODO: get a more detailed description
745
+
746
+ idx__txhdrfswpt9:
747
+ <<: *trigger_base
748
+ CATDESC: Value copied from param table # TODO: get a more detailed description
749
+
750
+ idx__txhdrfpgaver:
751
+ <<: *trigger_base
752
+ CATDESC: Version number of the FPGA version as date code
753
+ FIELDNAM: FPGA version number
754
+ LABLAXIS: Version
755
+
756
+ idx__syncsci0pkt:
757
+ <<: *trigger_base
758
+ CATDESC: Synchronization marker
759
+ FIELDNAM: Synchronization marker
760
+ VALIDMAX: *max_uint16
761
+ LABLAXIS: Synchronization Marker
419
762
 
420
- detector_current:
763
+ idx__crcsci0pkt:
421
764
  <<: *trigger_base
422
- VALIDMAX: 4095
423
- FIELDNAM: Detector Current
424
- CATDESC: Last measurement in raw dN for processor board signal - "Detector Current "
425
- LABLAXIS: Current
426
- UNITS: dN
765
+ CATDESC: CRC CCITT-16
766
+ FIELDNAM: CRC CCITT-16
767
+ VALIDMAX: *max_uint16
768
+ LABLAXIS: CRC CCITT-16