imap-processing 0.17.0__py3-none-any.whl → 0.19.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 (141) hide show
  1. imap_processing/_version.py +2 -2
  2. imap_processing/ancillary/ancillary_dataset_combiner.py +161 -1
  3. imap_processing/ccsds/excel_to_xtce.py +12 -0
  4. imap_processing/cdf/config/imap_codice_global_cdf_attrs.yaml +6 -6
  5. imap_processing/cdf/config/imap_codice_l1a_variable_attrs.yaml +312 -274
  6. imap_processing/cdf/config/imap_codice_l1b_variable_attrs.yaml +39 -28
  7. imap_processing/cdf/config/imap_codice_l2_variable_attrs.yaml +1048 -183
  8. imap_processing/cdf/config/imap_constant_attrs.yaml +4 -2
  9. imap_processing/cdf/config/imap_glows_l1b_variable_attrs.yaml +12 -0
  10. imap_processing/cdf/config/imap_hi_global_cdf_attrs.yaml +5 -0
  11. imap_processing/cdf/config/imap_hit_global_cdf_attrs.yaml +10 -4
  12. imap_processing/cdf/config/imap_hit_l1a_variable_attrs.yaml +163 -100
  13. imap_processing/cdf/config/imap_hit_l2_variable_attrs.yaml +4 -4
  14. imap_processing/cdf/config/imap_ialirt_l1_variable_attrs.yaml +97 -54
  15. imap_processing/cdf/config/imap_idex_l2a_variable_attrs.yaml +33 -4
  16. imap_processing/cdf/config/imap_idex_l2b_variable_attrs.yaml +44 -44
  17. imap_processing/cdf/config/imap_idex_l2c_variable_attrs.yaml +77 -61
  18. imap_processing/cdf/config/imap_lo_global_cdf_attrs.yaml +30 -0
  19. imap_processing/cdf/config/imap_lo_l1a_variable_attrs.yaml +4 -15
  20. imap_processing/cdf/config/imap_lo_l1c_variable_attrs.yaml +189 -98
  21. imap_processing/cdf/config/imap_mag_global_cdf_attrs.yaml +99 -2
  22. imap_processing/cdf/config/imap_mag_l1c_variable_attrs.yaml +24 -1
  23. imap_processing/cdf/config/imap_ultra_global_cdf_attrs.yaml +60 -0
  24. imap_processing/cdf/config/imap_ultra_l1b_variable_attrs.yaml +99 -11
  25. imap_processing/cdf/config/imap_ultra_l1c_variable_attrs.yaml +50 -7
  26. imap_processing/cli.py +121 -44
  27. imap_processing/codice/codice_l1a.py +165 -77
  28. imap_processing/codice/codice_l1b.py +1 -1
  29. imap_processing/codice/codice_l2.py +118 -19
  30. imap_processing/codice/constants.py +1217 -1089
  31. imap_processing/decom.py +1 -4
  32. imap_processing/ena_maps/ena_maps.py +32 -25
  33. imap_processing/ena_maps/utils/naming.py +8 -2
  34. imap_processing/glows/ancillary/imap_glows_exclusions-by-instr-team_20250923_v002.dat +10 -0
  35. imap_processing/glows/ancillary/imap_glows_map-of-excluded-regions_20250923_v002.dat +393 -0
  36. imap_processing/glows/ancillary/imap_glows_map-of-uv-sources_20250923_v002.dat +593 -0
  37. imap_processing/glows/ancillary/imap_glows_pipeline_settings_20250923_v002.json +54 -0
  38. imap_processing/glows/ancillary/imap_glows_suspected-transients_20250923_v002.dat +10 -0
  39. imap_processing/glows/l1b/glows_l1b.py +99 -9
  40. imap_processing/glows/l1b/glows_l1b_data.py +350 -38
  41. imap_processing/glows/l2/glows_l2.py +11 -0
  42. imap_processing/hi/hi_l1a.py +124 -3
  43. imap_processing/hi/hi_l1b.py +154 -71
  44. imap_processing/hi/hi_l2.py +84 -51
  45. imap_processing/hi/utils.py +153 -8
  46. imap_processing/hit/l0/constants.py +3 -0
  47. imap_processing/hit/l0/decom_hit.py +5 -8
  48. imap_processing/hit/l1a/hit_l1a.py +375 -45
  49. imap_processing/hit/l1b/constants.py +5 -0
  50. imap_processing/hit/l1b/hit_l1b.py +61 -131
  51. imap_processing/hit/l2/constants.py +1 -1
  52. imap_processing/hit/l2/hit_l2.py +10 -11
  53. imap_processing/ialirt/calculate_ingest.py +219 -0
  54. imap_processing/ialirt/constants.py +32 -1
  55. imap_processing/ialirt/generate_coverage.py +201 -0
  56. imap_processing/ialirt/l0/ialirt_spice.py +5 -2
  57. imap_processing/ialirt/l0/parse_mag.py +337 -29
  58. imap_processing/ialirt/l0/process_hit.py +5 -3
  59. imap_processing/ialirt/l0/process_swapi.py +41 -25
  60. imap_processing/ialirt/l0/process_swe.py +23 -7
  61. imap_processing/ialirt/process_ephemeris.py +70 -14
  62. imap_processing/ialirt/utils/constants.py +22 -16
  63. imap_processing/ialirt/utils/create_xarray.py +42 -19
  64. imap_processing/idex/idex_constants.py +1 -5
  65. imap_processing/idex/idex_l0.py +2 -2
  66. imap_processing/idex/idex_l1a.py +2 -3
  67. imap_processing/idex/idex_l1b.py +2 -3
  68. imap_processing/idex/idex_l2a.py +130 -4
  69. imap_processing/idex/idex_l2b.py +313 -119
  70. imap_processing/idex/idex_utils.py +1 -3
  71. imap_processing/lo/l0/lo_apid.py +1 -0
  72. imap_processing/lo/l0/lo_science.py +25 -24
  73. imap_processing/lo/l1a/lo_l1a.py +44 -0
  74. imap_processing/lo/l1b/lo_l1b.py +3 -3
  75. imap_processing/lo/l1c/lo_l1c.py +116 -50
  76. imap_processing/lo/l2/lo_l2.py +29 -29
  77. imap_processing/lo/lo_ancillary.py +55 -0
  78. imap_processing/lo/packet_definitions/lo_xtce.xml +5359 -106
  79. imap_processing/mag/constants.py +1 -0
  80. imap_processing/mag/l1a/mag_l1a.py +1 -0
  81. imap_processing/mag/l1a/mag_l1a_data.py +26 -0
  82. imap_processing/mag/l1b/mag_l1b.py +3 -2
  83. imap_processing/mag/l1c/interpolation_methods.py +14 -15
  84. imap_processing/mag/l1c/mag_l1c.py +23 -6
  85. imap_processing/mag/l1d/__init__.py +0 -0
  86. imap_processing/mag/l1d/mag_l1d.py +176 -0
  87. imap_processing/mag/l1d/mag_l1d_data.py +725 -0
  88. imap_processing/mag/l2/__init__.py +0 -0
  89. imap_processing/mag/l2/mag_l2.py +25 -20
  90. imap_processing/mag/l2/mag_l2_data.py +199 -130
  91. imap_processing/quality_flags.py +28 -2
  92. imap_processing/spice/geometry.py +101 -36
  93. imap_processing/spice/pointing_frame.py +1 -7
  94. imap_processing/spice/repoint.py +29 -2
  95. imap_processing/spice/spin.py +32 -8
  96. imap_processing/spice/time.py +60 -19
  97. imap_processing/swapi/l1/swapi_l1.py +10 -4
  98. imap_processing/swapi/l2/swapi_l2.py +66 -24
  99. imap_processing/swapi/swapi_utils.py +1 -1
  100. imap_processing/swe/l1b/swe_l1b.py +3 -6
  101. imap_processing/ultra/constants.py +28 -3
  102. imap_processing/ultra/l0/decom_tools.py +15 -8
  103. imap_processing/ultra/l0/decom_ultra.py +35 -11
  104. imap_processing/ultra/l0/ultra_utils.py +102 -12
  105. imap_processing/ultra/l1a/ultra_l1a.py +26 -6
  106. imap_processing/ultra/l1b/cullingmask.py +6 -3
  107. imap_processing/ultra/l1b/de.py +122 -26
  108. imap_processing/ultra/l1b/extendedspin.py +29 -2
  109. imap_processing/ultra/l1b/lookup_utils.py +424 -50
  110. imap_processing/ultra/l1b/quality_flag_filters.py +23 -0
  111. imap_processing/ultra/l1b/ultra_l1b_culling.py +356 -5
  112. imap_processing/ultra/l1b/ultra_l1b_extended.py +534 -90
  113. imap_processing/ultra/l1c/helio_pset.py +127 -7
  114. imap_processing/ultra/l1c/l1c_lookup_utils.py +256 -0
  115. imap_processing/ultra/l1c/spacecraft_pset.py +90 -15
  116. imap_processing/ultra/l1c/ultra_l1c.py +6 -0
  117. imap_processing/ultra/l1c/ultra_l1c_culling.py +85 -0
  118. imap_processing/ultra/l1c/ultra_l1c_pset_bins.py +446 -341
  119. imap_processing/ultra/l2/ultra_l2.py +0 -1
  120. imap_processing/ultra/utils/ultra_l1_utils.py +40 -3
  121. imap_processing/utils.py +3 -4
  122. {imap_processing-0.17.0.dist-info → imap_processing-0.19.0.dist-info}/METADATA +3 -3
  123. {imap_processing-0.17.0.dist-info → imap_processing-0.19.0.dist-info}/RECORD +126 -126
  124. imap_processing/idex/idex_l2c.py +0 -250
  125. imap_processing/spice/kernels.py +0 -187
  126. imap_processing/ultra/lookup_tables/Angular_Profiles_FM45_LeftSlit.csv +0 -526
  127. imap_processing/ultra/lookup_tables/Angular_Profiles_FM45_RightSlit.csv +0 -526
  128. imap_processing/ultra/lookup_tables/Angular_Profiles_FM90_LeftSlit.csv +0 -526
  129. imap_processing/ultra/lookup_tables/Angular_Profiles_FM90_RightSlit.csv +0 -524
  130. imap_processing/ultra/lookup_tables/EgyNorm.mem.csv +0 -32769
  131. imap_processing/ultra/lookup_tables/FM45_Startup1_ULTRA_IMGPARAMS_20240719.csv +0 -2
  132. imap_processing/ultra/lookup_tables/FM90_Startup1_ULTRA_IMGPARAMS_20240719.csv +0 -2
  133. imap_processing/ultra/lookup_tables/dps_grid45_compressed.cdf +0 -0
  134. imap_processing/ultra/lookup_tables/ultra45_back-pos-luts.csv +0 -4097
  135. imap_processing/ultra/lookup_tables/ultra45_tdc_norm.csv +0 -2050
  136. imap_processing/ultra/lookup_tables/ultra90_back-pos-luts.csv +0 -4097
  137. imap_processing/ultra/lookup_tables/ultra90_tdc_norm.csv +0 -2050
  138. imap_processing/ultra/lookup_tables/yadjust.csv +0 -257
  139. {imap_processing-0.17.0.dist-info → imap_processing-0.19.0.dist-info}/LICENSE +0 -0
  140. {imap_processing-0.17.0.dist-info → imap_processing-0.19.0.dist-info}/WHEEL +0 -0
  141. {imap_processing-0.17.0.dist-info → imap_processing-0.19.0.dist-info}/entry_points.txt +0 -0
@@ -1,58 +1,449 @@
1
1
  # <=== Useful Variables ===>
2
2
  int_fillval: &int_fillval -9223372036854775808
3
+ uint8_fillval: &uint8_fillval 255
4
+ uint16_fillval: &uint16_fillval 65535
5
+ uint32_fillval: &uint32_fillval 4294967295
6
+ real_fillval: &real_fillval -1.0e+31
7
+
3
8
  min_int: &min_int -9223372036854775808
9
+ min_epoch: &min_epoch -315575942816000000
10
+
4
11
  max_int: &max_int 9223372036854775807
12
+ max_uint8: &max_uint8 255
13
+ max_uint16: &max_uint16 65535
14
+ max_uint24: &max_uint24 8388607
15
+ max_uint32: &max_uint32 4294967295
16
+ max_epoch: &max_epoch 3155630469184000000
17
+
18
+ # TODO: Complete SPASE. 'Other' used temporarily.
19
+ # TODO: Update FORMAT to use fortran format
20
+ # TODO: Review VALIDMIN with CoDICE (VALIDMIN: 0.05000000074505806 ??)
21
+ # TODO: Update direct events attributes - products have new var names
22
+
5
23
 
6
24
  # <=== Defaults ===>
7
25
  default_attrs: &default
8
- DEPEND_0: epoch
9
- DISPLAY_TYPE: no_plot
10
- FIELDNAM: " "
11
- FILLVAL: *int_fillval
12
- FORMAT: I12
13
- SCALETYP: linear
14
- UNITS: dN
15
- VALIDMIN: *min_int
16
- VALIDMAX: *max_int
17
- VAR_TYPE: data
26
+ VAR_TYPE: data
27
+ DEPEND_0: epoch
28
+ DISPLAY_TYPE: no_plot
29
+ FIELDNAM: " "
30
+ FILLVAL: *int_fillval
31
+ FORMAT: I12
32
+ SCALETYP: linear
33
+ UNITS: ' '
34
+ VALIDMIN: *min_int
35
+ VALIDMAX: *max_int
36
+ DICT_KEY: SPASE>Support>SupportQuantity:Other
37
+
38
+ direct_events_attrs: &direct_events_default
39
+ <<: *default
40
+ DISPLAY_TYPE: time_series
41
+ FILLVAL: *uint8_fillval
42
+ FORMAT: I5
43
+ VALIDMIN: 0
44
+ VALIDMAX: 10000
45
+
46
+ lo_ialirt_attrs: &lo_ialirt_default
47
+ <<: *default
48
+ DISPLAY_TYPE: time_series
49
+ FILLVAL: *real_fillval
50
+ FORMAT: '%lf'
51
+ LABLAXIS: ratio
52
+ UNITS: ' '
53
+ VALIDMAX: 1.0e+31
54
+ VALIDMIN: 0.0
55
+
56
+ lo_species_attrs: &lo_species_default
57
+ <<: *default
58
+ DEPEND_1: energy_table
59
+ DEPEND_2: spin_sector_index
60
+ LABL_PTR_1: energy_table_label
61
+ LABL_PTR_2: spin_sector_index_label
62
+ DISPLAY_TYPE: spectrogram
63
+ FORMAT: '%f'
64
+ SCALETYP: log
65
+ UNITS: particles / cm2 s sr keV/q
66
+ FILLVAL: *real_fillval
67
+ VALIDMAX: 10000000000.0
68
+ VALIDMIN: 1.000000013351432e-10
69
+ DICT_KEY: SPASE>Particle>ParticleType:Ion,ParticleQuantity:NumberFlux,Qualifier:Differential
70
+
71
+ lo_angular_attrs: &lo_angular_default
72
+ <<: *default
73
+ DEPEND_1: energy_table
74
+ DEPEND_2: elevation_angle
75
+ DEPEND_3: spin_angle
76
+ LABL_PTR_1: energy_table_label
77
+ LABL_PTR_2: elevation_angle_label
78
+ LABL_PTR_3: spin_angle_label
79
+ DISPLAY_TYPE: spectrogram
80
+ FORMAT: '%f'
81
+ SCALETYP: log
82
+ UNITS: particles / cm2 s sr keV/q
83
+ FILLVAL: *real_fillval
84
+ VALIDMAX: 10000000000.0
85
+ VALIDMIN: 1.000000013351432e-10
86
+ DICT_KEY: SPASE>Particle>ParticleType:Ion,ParticleQuantity:NumberFlux,Qualifier:Differential
87
+
88
+ hi_omni_attrs: &hi_omni_default
89
+ <<: *default
90
+ DISPLAY_TYPE: spectrogram
91
+ FORMAT: '%f'
92
+ LABLAXIS: Diff. Intensity
93
+ SCALETYP: linear
94
+ UNITS: '# / cm2 s sr MeV/nuc'
95
+ FILLVAL: *real_fillval
96
+ VALIDMAX: 16777216.0
97
+ VALIDMIN: 0.0
98
+ DICT_KEY: SPASE>Particle>ParticleType:Ion,ParticleQuantity:NumberFlux,Qualifier:Differential
99
+
100
+ hi_sectored_attrs: &hi_sectored_attrs_default
101
+ <<: *default
102
+ DISPLAY_TYPE: spectrogram
103
+ DEPEND_2: elevation_angle
104
+ DEPEND_3: spin_sector_index
105
+ LABL_PTR_2: elevation_angle_label
106
+ LABL_PTR_3: spin_sector_index_label
107
+ FILLVAL: *uint32_fillval
108
+ FORMAT: '%f'
109
+ UNITS: '# / cm2 s sr MeV/nuc'
110
+ VALIDMAX: 16777216
111
+ VALIDMIN: 0
112
+ DICT_KEY: SPASE>Particle>ParticleType:Ion,ParticleQuantity:NumberFlux,Qualifier:Differential
113
+
114
+ energy_attrs: &energy_default
115
+ VAR_TYPE: support_data
116
+ CATDESC: Geometric mean energy per nucleon
117
+ FIELDNAM: Energy Table
118
+ LABLAXIS: Energy
119
+ SCALETYP: log
120
+ UNITS: MeV/nuc
121
+ FORMAT: '%f'
122
+ FILLVAL: *real_fillval
123
+ VALIDMAX: 200.0
124
+ VALIDMIN: 0.05000000074505806
125
+ DICT_KEY: SPASE>Particle>ParticleType:Ion,ParticleQuantity:EnergyPerCharge,Qualifier:Characteristic
126
+
127
+ energy_delta_attrs: &energy_delta_default
128
+ <<: *energy_default
129
+ DICT_KEY: SPASE>Particle>ParticleType:Ion,ParticleQuantity:EnergyPerCharge,Qualifier:Uncertainty
130
+
131
+ spin_angles_attrs: &spin_angles_default
132
+ VAR_TYPE: support_data
133
+ CATDESC: Spin Angle
134
+ FIELDNAM: Spin Angle
135
+ SCALETYP: linear
136
+ UNITS: degrees
137
+ FILLVAL: *real_fillval
138
+ VALIDMAX: 360.0
139
+ VALIDMIN: 0.0
140
+ FORMAT: '%f'
141
+ DICT_KEY: SPASE>Particle>ParticleType:Ion,ParticleQuantity:ArrivalDirection,Qualifer:DirectionAngle.AzimuthAngle
142
+
143
+ spin_sector_index_attrs: &spin_sector_index_default
144
+ VAR_TYPE: support_data
145
+ DISPLAY_TYPE: no_plot
146
+ CATDESC: Spin Sector Index
147
+ FIELDNAM: Spin Sector Index
148
+ FORMAT: '%d'
149
+ LABLAXIS: Spin Sector Index
150
+ SCALETYP: linear
151
+ UNITS: ' '
152
+ FILLVAL: *uint8_fillval
153
+ VALIDMAX: 1
154
+ VALIDMIN: 0
155
+ DICT_KEY: SPASE>Support>SupportQuantity:Other
156
+
18
157
 
19
158
  # <=== Coordinates ===>
20
159
  event_num:
21
- CATDESC: Event Number
22
- FIELDNAM: Event Number
23
- FILLVAL: 65535
24
- FORMAT: I5
25
- LABLAXIS: Event Number
26
- SCALETYP: linear
27
- UNITS: " "
28
- VALIDMIN: 0
29
- VALIDMAX: 10000
30
- VAR_TYPE: support_data
31
- DICT_KEY: SPASE>Support>SupportQuantity:Other
160
+ CATDESC: Event Number
161
+ FIELDNAM: Event Number
162
+ FILLVAL: *uint16_fillval
163
+ FORMAT: I5
164
+ LABLAXIS: Event Number
165
+ SCALETYP: linear
166
+ UNITS: ' '
167
+ VALIDMIN: 0
168
+ VALIDMAX: 10000
169
+ VAR_TYPE: support_data
170
+ DICT_KEY: SPASE>Support>SupportQuantity:Other
171
+
172
+ epoch_delta_minus:
173
+ CATDESC: Time from acquisition start to acquisition center
174
+ FIELDNAM: epoch delta minus
175
+ FILLVAL: *int_fillval
176
+ FORMAT: I18
177
+ LABLAXIS: Epoch Delta Minus
178
+ SCALETYP: linear
179
+ UNITS: ns
180
+ VALIDMIN: *min_int
181
+ VALIDMAX: *max_int
182
+ VAR_TYPE: support_data
183
+ DICT_KEY: SPASE>Support>SupportQuantity:Temporal,Qualifier:Uncertainty
184
+
185
+ epoch_delta_plus:
186
+ CATDESC: Time from acquisition center to acquisition end
187
+ FIELDNAM: epoch delta plus
188
+ FILLVAL: *int_fillval
189
+ FORMAT: I18
190
+ LABLAXIS: Epoch Delta Plus
191
+ SCALETYP: linear
192
+ UNITS: ns
193
+ VALIDMIN: *min_int
194
+ VALIDMAX: *max_int
195
+ VAR_TYPE: support_data
196
+ DICT_KEY: SPASE>Support>SupportQuantity:Temporal,Qualifier:Uncertainty
197
+
198
+ elevation_angle:
199
+ CATDESC: Elevation Angle
200
+ FIELDNAM: Elevation Angle
201
+ FORMAT: '%f'
202
+ LABLAXIS: Elevation Angle
203
+ SCALETYP: linear
204
+ UNITS: degrees
205
+ VALIDMAX: 180.0
206
+ VALIDMIN: 0.0
207
+ VAR_TYPE: support_data
208
+
209
+ spin_angle:
210
+ <<: *spin_angles_default
211
+ LABLAXIS: Spin Angle
212
+
213
+ energy_table:
214
+ CATDESC: Energy Table
215
+ FIELDNAM: Energy Table
216
+ FORMAT: '%f'
217
+ LABLAXIS: Energy per charge
218
+ SCALETYP: log
219
+ UNITS: keV/e
220
+ VALIDMAX: 82.0
221
+ VALIDMIN: 0.5
222
+ VAR_TYPE: support_data
223
+
224
+ energy_cno:
225
+ <<: *energy_default
226
+ DELTA_MINUS_VAR: energy_cno_minus
227
+ DELTA_PLUS_VAR: energy_cno_plus
228
+
229
+ energy_fe:
230
+ <<: *energy_default
231
+ DELTA_MINUS_VAR: energy_fe_minus
232
+ DELTA_PLUS_VAR: energy_fe_plus
233
+
234
+ energy_h:
235
+ <<: *energy_default
236
+ DELTA_MINUS_VAR: energy_h_minus
237
+ DELTA_PLUS_VAR: energy_h_plus
238
+
239
+ energy_he3he4:
240
+ <<: *energy_default
241
+ DELTA_MINUS_VAR: energy_he3he4_minus
242
+ DELTA_PLUS_VAR: energy_he3he4_plus
243
+
244
+ energy_c:
245
+ <<: *energy_default
246
+ DELTA_MINUS_VAR: energy_c_minus
247
+ DELTA_PLUS_VAR: energy_c_plus
248
+
249
+ energy_he3:
250
+ <<: *energy_default
251
+ DELTA_MINUS_VAR: energy_he3_minus
252
+ DELTA_PLUS_VAR: energy_he3_plus
253
+
254
+ energy_he4:
255
+ <<: *energy_default
256
+ DELTA_MINUS_VAR: energy_he4_minus
257
+ DELTA_PLUS_VAR: energy_he4_plus
258
+
259
+ energy_junk:
260
+ <<: *energy_default
261
+ DELTA_MINUS_VAR: energy_junk_minus
262
+ DELTA_PLUS_VAR: energy_junk_plus
263
+
264
+ energy_ne_mg_si:
265
+ <<: *energy_default
266
+ DELTA_MINUS_VAR: energy_ne_mg_si_minus
267
+ DELTA_PLUS_VAR: energy_ne_mg_si_plus
268
+
269
+ energy_o:
270
+ <<: *energy_default
271
+ DELTA_MINUS_VAR: energy_o_minus
272
+ DELTA_PLUS_VAR: energy_o_plus
273
+
274
+ energy_uh:
275
+ <<: *energy_default
276
+ DELTA_MINUS_VAR: energy_uh_minus
277
+ DELTA_PLUS_VAR: energy_uh_plus
278
+
279
+ hi-sectored-spin_sector_index:
280
+ <<: *spin_sector_index_default
281
+ VALIDMAX: 12
282
+
283
+ hi-ialirt-spin_sector_index:
284
+ <<: *spin_sector_index_default
285
+ VALIDMAX: 4
286
+
287
+ lo-nsw-species-spin_sector_index:
288
+ <<: *spin_sector_index_default
289
+
290
+ lo-sw-species-spin_sector_index:
291
+ <<: *spin_sector_index_default
292
+
32
293
 
33
294
  # <=== Labels ===>
295
+ #TODO: double check FORMAT for labels
34
296
  event_num_label:
35
- CATDESC: Event Number
36
- DEPEND_1: event_num
37
- FIELDNAM: Event Number
38
- FORMAT: A5
39
- VAR_TYPE: metadata
40
-
41
- # <=== Direct Events Attributes ===>
42
- direct_events_attrs: &direct_events
43
- <<: *default
44
- CATDESC: Fill in at creation
45
- DISPLAY_TYPE: time_series
46
- FIELDNAM: Fill in at creation
47
- FILLVAL: 255
48
- FORMAT: I5
49
- UNITS: unitless
50
- VALIDMIN: 0
51
- VALIDMAX: 10000
52
- DICT_KEY: SPASE>Support>SupportQuantity:Other
53
-
297
+ CATDESC: Event Number
298
+ FIELDNAM: Event Number
299
+ FORMAT: A5
300
+ VAR_TYPE: metadata
301
+
302
+ epoch_delta_minus_label:
303
+ CATDESC: Time from acquisition start to acquisition center
304
+ FIELDNAM: Epoch delta minus
305
+ FORMAT: A18
306
+ VAR_TYPE: metadata
307
+
308
+ epoch_delta_plus_label:
309
+ CATDESC: Time from acquisition center to acquisition end
310
+ FIELDNAM: Epoch delta plus
311
+ FORMAT: A18
312
+ VAR_TYPE: metadata
313
+
314
+ elevation_angle_label:
315
+ CATDESC: Elevation Angle
316
+ FIELDNAM: Elevation Angle
317
+ FORMAT: A6
318
+ VAR_TYPE: metadata
319
+
320
+ spin_angle_label:
321
+ CATDESC: Spin Angle
322
+ FIELDNAM: Spin Angle
323
+ FORMAT: A6
324
+ VAR_TYPE: metadata
325
+
326
+ energy_table_label:
327
+ CATDESC: Energy Table
328
+ FIELDNAM: Energy Table
329
+ FORMAT: A4
330
+ VAR_TYPE: metadata
331
+
332
+ energy_cno_label:
333
+ CATDESC: Energy CNO
334
+ FIELDNAM: Energy CNO
335
+ FORMAT: A6
336
+ VAR_TYPE: metadata
337
+
338
+ energy_fe_label:
339
+ CATDESC: Energy Fe
340
+ FIELDNAM: Energy Fe
341
+ FORMAT: A6
342
+ VAR_TYPE: metadata
343
+
344
+ energy_h_label:
345
+ CATDESC: Energy H
346
+ FIELDNAM: Energy H
347
+ FORMAT: A6
348
+ VAR_TYPE: metadata
349
+
350
+ energy_he3he4_label:
351
+ CATDESC: Energy He3He4
352
+ FIELDNAM: Energy He3He4
353
+ FORMAT: A6
354
+ VAR_TYPE: metadata
355
+
356
+ energy_c_label:
357
+ CATDESC: Energy C
358
+ FIELDNAM: Energy C
359
+ FORMAT: A6
360
+ VAR_TYPE: metadata
361
+
362
+ energy_he3_label:
363
+ CATDESC: Energy He3
364
+ FIELDNAM: Energy He3
365
+ FORMAT: A6
366
+ VAR_TYPE: metadata
367
+
368
+ energy_he4_label:
369
+ CATDESC: Energy He4
370
+ FIELDNAM: Energy He4
371
+ FORMAT: A6
372
+ VAR_TYPE: metadata
373
+
374
+ energy_junk_label:
375
+ CATDESC: Energy Junk
376
+ FIELDNAM: Energy Junk
377
+ FORMAT: A6
378
+ VAR_TYPE: metadata
379
+
380
+ energy_ne_mg_si_label:
381
+ CATDESC: Energy NeMgSi
382
+ FIELDNAM: Energy NeMgSi
383
+ FORMAT: A6
384
+ VAR_TYPE: metadata
385
+
386
+ energy_o_label:
387
+ CATDESC: Energy O
388
+ FIELDNAM: Energy O
389
+ FORMAT: A6
390
+ VAR_TYPE: metadata
391
+
392
+ energy_uh_label:
393
+ CATDESC: Energy UH
394
+ FIELDNAM: Energy UH
395
+ FORMAT: A6
396
+ VAR_TYPE: metadata
397
+
398
+ hi-sectored-spin_sector_index_label:
399
+ CATDESC: Spin Sector Index for Hi-Sectored
400
+ FIELDNAM: Spin Sector Index for Hi-Sectored
401
+ FORMAT: A2
402
+ VAR_TYPE: metadata
403
+
404
+ hi-ialirt-spin_sector_index_label:
405
+ CATDESC: Spin Sector Index for Hi I-ALiRT
406
+ FIELDNAM: Spin Sector Index for Hi I-ALiRT
407
+ FORMAT: A1
408
+ VAR_TYPE: metadata
409
+
410
+ lo-nsw-species-spin_sector_index_label:
411
+ CATDESC: Spin Sector Index for Lo NSW-Species
412
+ FIELDNAM: Spin Sector Index for Lo NSW-Species
413
+ FORMAT: A1
414
+ VAR_TYPE: metadata
415
+
416
+ lo-sw-species-spin_sector_index_label:
417
+ CATDESC: Spin Sector Index for Lo SW-Species
418
+ FIELDNAM: Spin Sector Index for Lo SW-Species
419
+ FORMAT: A1
420
+ VAR_TYPE: metadata
421
+
422
+
423
+ # <=== Dataset Variable Attributes ===>
424
+
425
+ # The following are set in multiple data products
426
+ data_quality:
427
+ <<: *default
428
+ VAR_TYPE: data
429
+ CATDESC: Indicates whether data quality is suspect (1).
430
+ DISPLAY_TYPE: time_series
431
+ FIELDNAM: Data Quality
432
+ FILLVAL: *uint8_fillval
433
+ FORMAT: '%d'
434
+ LABLAXIS: Data Quality
435
+ SCALETYP: linear
436
+ UNITS: ' '
437
+ VALIDMAX: 1
438
+ VALIDMIN: 0
439
+ DICT_KEY: SPASE>Support>SupportQuantity:DataQuality
440
+
441
+ # The following are data product-specific
442
+ # Direct Events Attributes
443
+
444
+ # TODO: update var names to be lowercase and underscores.
54
445
  P0_APD_ID:
55
- <<: *direct_events
446
+ <<: *direct_events_default
56
447
  CATDESC: Priority 0 APD ID
57
448
  DEPEND_1: event_num
58
449
  FIELDNAM: Priority 0 APD ID
@@ -60,16 +451,16 @@ P0_APD_ID:
60
451
  VALIDMAX: 32
61
452
 
62
453
  P0_APDEnergy:
63
- <<: *direct_events
454
+ <<: *direct_events_default
64
455
  CATDESC: Priority 0 APD Energy
65
456
  DEPEND_1: event_num
66
457
  FIELDNAM: Priority 0 APD Energy
67
- FILLVAL: 65535
458
+ FILLVAL: *uint16_fillval
68
459
  LABL_PTR_1: event_num_label
69
460
  VALIDMAX: 512
70
461
 
71
462
  P0_APDGain:
72
- <<: *direct_events
463
+ <<: *direct_events_default
73
464
  CATDESC: Priority 0 APD Gain
74
465
  DEPEND_1: event_num
75
466
  FIELDNAM: Priority 0 APD Gain
@@ -77,7 +468,7 @@ P0_APDGain:
77
468
  VALIDMAX: 1
78
469
 
79
470
  P0_DataQuality:
80
- <<: *direct_events
471
+ <<: *direct_events_default
81
472
  CATDESC: Priority 0 Data Quality
82
473
  FIELDNAM: Priority 0 Data Quality
83
474
  LABLAXIS: " "
@@ -85,7 +476,7 @@ P0_DataQuality:
85
476
  DICT_KEY: SPASE>Support>SupportQuantity:DataQuality
86
477
 
87
478
  P0_EnergyStep:
88
- <<: *direct_events
479
+ <<: *direct_events_default
89
480
  CATDESC: Priority 0 Energy Step
90
481
  DEPEND_1: event_num
91
482
  FIELDNAM: Priority 0 Energy Step
@@ -93,7 +484,7 @@ P0_EnergyStep:
93
484
  VALIDMAX: 128
94
485
 
95
486
  P0_ERGE:
96
- <<: *direct_events
487
+ <<: *direct_events_default
97
488
  CATDESC: Priority 0 Energy Range
98
489
  DEPEND_1: event_num
99
490
  FIELDNAM: Priority 0 Energy Range
@@ -101,7 +492,7 @@ P0_ERGE:
101
492
  VALIDMAX: 4
102
493
 
103
494
  P0_MultiFlag:
104
- <<: *direct_events
495
+ <<: *direct_events_default
105
496
  CATDESC: Priority 0 Multi Flag
106
497
  DEPEND_1: event_num
107
498
  FIELDNAM: Priority 0 Multi Flag
@@ -109,14 +500,14 @@ P0_MultiFlag:
109
500
  VALIDMAX: 1
110
501
 
111
502
  P0_NumEvents:
112
- <<: *direct_events
503
+ <<: *direct_events_default
113
504
  CATDESC: Priority 0 Number of Events
114
505
  FIELDNAM: Priority 0 Number of Events
115
- FILLVAL: 65535
506
+ FILLVAL: *uint16_fillval
116
507
  LABLAXIS: " "
117
508
 
118
509
  P0_PHAType:
119
- <<: *direct_events
510
+ <<: *direct_events_default
120
511
  CATDESC: Priority 0 PHA Type
121
512
  DEPEND_1: event_num
122
513
  FIELDNAM: Priority 0 PHA Type
@@ -124,7 +515,7 @@ P0_PHAType:
124
515
  VALIDMAX: 4
125
516
 
126
517
  P0_Position:
127
- <<: *direct_events
518
+ <<: *direct_events_default
128
519
  CATDESC: Priority 0 Position
129
520
  DEPEND_1: event_num
130
521
  FIELDNAM: Priority 0 Position
@@ -132,7 +523,7 @@ P0_Position:
132
523
  VALIDMAX: 32
133
524
 
134
525
  P0_SpinAngle:
135
- <<: *direct_events
526
+ <<: *direct_events_default
136
527
  CATDESC: Priority 0 Spin Angle
137
528
  DEPEND_1: event_num
138
529
  FIELDNAM: Priority 0 Spin Angle
@@ -140,7 +531,7 @@ P0_SpinAngle:
140
531
  VALIDMAX: 128
141
532
 
142
533
  P0_SpinNumber:
143
- <<: *direct_events
534
+ <<: *direct_events_default
144
535
  CATDESC: Priority 0 Spin Number
145
536
  DEPEND_1: event_num
146
537
  FIELDNAM: Priority 0 Spin Number
@@ -148,7 +539,7 @@ P0_SpinNumber:
148
539
  VALIDMAX: 32
149
540
 
150
541
  P0_SSD_ID:
151
- <<: *direct_events
542
+ <<: *direct_events_default
152
543
  CATDESC: Priority 0 SSD ID or Azimuth Angle
153
544
  DEPEND_1: event_num
154
545
  FIELDNAM: Priority 0 SSD ID or Azimuth Angle
@@ -156,7 +547,7 @@ P0_SSD_ID:
156
547
  VALIDMAX: 32
157
548
 
158
549
  P0_SSDEnergy:
159
- <<: *direct_events
550
+ <<: *direct_events_default
160
551
  CATDESC: Priority 0 APD Energy
161
552
  DEPEND_1: event_num
162
553
  FIELDNAM: Priority 0 APD Energy
@@ -164,16 +555,16 @@ P0_SSDEnergy:
164
555
  VALIDMAX: 2048
165
556
 
166
557
  P0_TOF:
167
- <<: *direct_events
558
+ <<: *direct_events_default
168
559
  CATDESC: Priority 0 Time of Flight
169
560
  DEPEND_1: event_num
170
561
  FIELDNAM: Priority 0 Time of Flight
171
- FILLVAL: 65535
562
+ FILLVAL: *uint16_fillval
172
563
  LABL_PTR_1: event_num_label
173
564
  VALIDMAX: 1024
174
565
 
175
566
  P0_Type:
176
- <<: *direct_events
567
+ <<: *direct_events_default
177
568
  CATDESC: Priority 0 Type
178
569
  DEPEND_1: event_num
179
570
  FIELDNAM: Priority 0 Type
@@ -181,7 +572,7 @@ P0_Type:
181
572
  VALIDMAX: 3
182
573
 
183
574
  P1_APD_ID:
184
- <<: *direct_events
575
+ <<: *direct_events_default
185
576
  CATDESC: Priority 1 APD ID
186
577
  DEPEND_1: event_num
187
578
  FIELDNAM: Priority 1 APD ID
@@ -189,16 +580,16 @@ P1_APD_ID:
189
580
  VALIDMAX: 32
190
581
 
191
582
  P1_APDEnergy:
192
- <<: *direct_events
583
+ <<: *direct_events_default
193
584
  CATDESC: Priority 1 APD Energy
194
585
  DEPEND_1: event_num
195
586
  FIELDNAM: Priority 1 APD Energy
196
- FILLVAL: 65535
587
+ FILLVAL: *uint16_fillval
197
588
  LABL_PTR_1: event_num_label
198
589
  VALIDMAX: 512
199
590
 
200
591
  P1_APDGain:
201
- <<: *direct_events
592
+ <<: *direct_events_default
202
593
  CATDESC: Priority 1 APD Gain
203
594
  DEPEND_1: event_num
204
595
  FIELDNAM: Priority 1 APD Gain
@@ -206,7 +597,7 @@ P1_APDGain:
206
597
  VALIDMAX: 1
207
598
 
208
599
  P1_DataQuality:
209
- <<: *direct_events
600
+ <<: *direct_events_default
210
601
  CATDESC: Priority 1 Data Quality
211
602
  FIELDNAM: Priority 1 Data Quality
212
603
  LABLAXIS: " "
@@ -214,7 +605,7 @@ P1_DataQuality:
214
605
  DICT_KEY: SPASE>Support>SupportQuantity:DataQuality
215
606
 
216
607
  P1_EnergyStep:
217
- <<: *direct_events
608
+ <<: *direct_events_default
218
609
  CATDESC: Priority 1 Energy Step
219
610
  DEPEND_1: event_num
220
611
  FIELDNAM: Priority 1 Energy Step
@@ -222,7 +613,7 @@ P1_EnergyStep:
222
613
  VALIDMAX: 128
223
614
 
224
615
  P1_ERGE:
225
- <<: *direct_events
616
+ <<: *direct_events_default
226
617
  CATDESC: Priority 1 Energy Range
227
618
  DEPEND_1: event_num
228
619
  FIELDNAM: Priority 1 Energy Range
@@ -230,7 +621,7 @@ P1_ERGE:
230
621
  VALIDMAX: 4
231
622
 
232
623
  P1_MultiFlag:
233
- <<: *direct_events
624
+ <<: *direct_events_default
234
625
  CATDESC: Priority 1 Multi Flag
235
626
  DEPEND_1: event_num
236
627
  FIELDNAM: Priority 1 Multi Flag
@@ -238,14 +629,14 @@ P1_MultiFlag:
238
629
  VALIDMAX: 1
239
630
 
240
631
  P1_NumEvents:
241
- <<: *direct_events
632
+ <<: *direct_events_default
242
633
  CATDESC: Priority 1 Number of Events
243
634
  FIELDNAM: Priority 1 Number of Events
244
- FILLVAL: 65535
635
+ FILLVAL: *uint16_fillval
245
636
  LABLAXIS: " "
246
637
 
247
638
  P1_PHAType:
248
- <<: *direct_events
639
+ <<: *direct_events_default
249
640
  CATDESC: Priority 1 PHA Type
250
641
  DEPEND_1: event_num
251
642
  FIELDNAM: Priority 1 PHA Type
@@ -253,7 +644,7 @@ P1_PHAType:
253
644
  VALIDMAX: 4
254
645
 
255
646
  P1_Position:
256
- <<: *direct_events
647
+ <<: *direct_events_default
257
648
  CATDESC: Priority 1 Position
258
649
  DEPEND_1: event_num
259
650
  FIELDNAM: Priority 1 Position
@@ -261,7 +652,7 @@ P1_Position:
261
652
  VALIDMAX: 32
262
653
 
263
654
  P1_SpinAngle:
264
- <<: *direct_events
655
+ <<: *direct_events_default
265
656
  CATDESC: Priority 1 Spin Angle
266
657
  DEPEND_1: event_num
267
658
  FIELDNAM: Priority 1 Spin Angle
@@ -269,7 +660,7 @@ P1_SpinAngle:
269
660
  VALIDMAX: 128
270
661
 
271
662
  P1_SpinNumber:
272
- <<: *direct_events
663
+ <<: *direct_events_default
273
664
  CATDESC: Priority 1 Spin Number
274
665
  DEPEND_1: event_num
275
666
  FIELDNAM: Priority 1 Spin Number
@@ -277,7 +668,7 @@ P1_SpinNumber:
277
668
  VALIDMAX: 32
278
669
 
279
670
  P1_SSD_ID:
280
- <<: *direct_events
671
+ <<: *direct_events_default
281
672
  CATDESC: Priority 1 SSD ID or Azimuth Angle
282
673
  DEPEND_1: event_num
283
674
  FIELDNAM: Priority 1 SSD ID or Azimuth Angle
@@ -285,7 +676,7 @@ P1_SSD_ID:
285
676
  VALIDMAX: 32
286
677
 
287
678
  P1_SSDEnergy:
288
- <<: *direct_events
679
+ <<: *direct_events_default
289
680
  CATDESC: Priority 1 APD Energy
290
681
  DEPEND_1: event_num
291
682
  FIELDNAM: Priority 1 APD Energy
@@ -293,16 +684,16 @@ P1_SSDEnergy:
293
684
  VALIDMAX: 2048
294
685
 
295
686
  P1_TOF:
296
- <<: *direct_events
687
+ <<: *direct_events_default
297
688
  CATDESC: Priority 1 Time of Flight
298
689
  DEPEND_1: event_num
299
690
  FIELDNAM: Priority 1 Time of Flight
300
- FILLVAL: 65535
691
+ FILLVAL: *uint16_fillval
301
692
  LABL_PTR_1: event_num_label
302
693
  VALIDMAX: 1024
303
694
 
304
695
  P1_Type:
305
- <<: *direct_events
696
+ <<: *direct_events_default
306
697
  CATDESC: Priority 1 Type
307
698
  DEPEND_1: event_num
308
699
  FIELDNAM: Priority 1 Type
@@ -310,7 +701,7 @@ P1_Type:
310
701
  VALIDMAX: 3
311
702
 
312
703
  P2_APD_ID:
313
- <<: *direct_events
704
+ <<: *direct_events_default
314
705
  CATDESC: Priority 2 APD ID
315
706
  DEPEND_1: event_num
316
707
  FIELDNAM: Priority 2 APD ID
@@ -318,16 +709,16 @@ P2_APD_ID:
318
709
  VALIDMAX: 32
319
710
 
320
711
  P2_APDEnergy:
321
- <<: *direct_events
712
+ <<: *direct_events_default
322
713
  CATDESC: Priority 2 APD Energy
323
714
  DEPEND_1: event_num
324
715
  FIELDNAM: Priority 2 APD Energy
325
- FILLVAL: 65535
716
+ FILLVAL: *uint16_fillval
326
717
  LABL_PTR_1: event_num_label
327
718
  VALIDMAX: 512
328
719
 
329
720
  P2_APDGain:
330
- <<: *direct_events
721
+ <<: *direct_events_default
331
722
  CATDESC: Priority 2 APD Gain
332
723
  DEPEND_1: event_num
333
724
  FIELDNAM: Priority 2 APD Gain
@@ -335,7 +726,7 @@ P2_APDGain:
335
726
  VALIDMAX: 1
336
727
 
337
728
  P2_DataQuality:
338
- <<: *direct_events
729
+ <<: *direct_events_default
339
730
  CATDESC: Priority 2 Data Quality
340
731
  FIELDNAM: Priority 2 Data Quality
341
732
  LABLAXIS: " "
@@ -343,7 +734,7 @@ P2_DataQuality:
343
734
  DICT_KEY: SPASE>Support>SupportQuantity:DataQuality
344
735
 
345
736
  P2_EnergyStep:
346
- <<: *direct_events
737
+ <<: *direct_events_default
347
738
  CATDESC: Priority 2 Energy Step
348
739
  DEPEND_1: event_num
349
740
  FIELDNAM: Priority 2 Energy Step
@@ -351,7 +742,7 @@ P2_EnergyStep:
351
742
  VALIDMAX: 128
352
743
 
353
744
  P2_ERGE:
354
- <<: *direct_events
745
+ <<: *direct_events_default
355
746
  CATDESC: Priority 2 Energy Range
356
747
  DEPEND_1: event_num
357
748
  FIELDNAM: Priority 2 Energy Range
@@ -359,7 +750,7 @@ P2_ERGE:
359
750
  VALIDMAX: 4
360
751
 
361
752
  P2_MultiFlag:
362
- <<: *direct_events
753
+ <<: *direct_events_default
363
754
  CATDESC: Priority 2 Multi Flag
364
755
  DEPEND_1: event_num
365
756
  FIELDNAM: Priority 2 Multi Flag
@@ -367,14 +758,14 @@ P2_MultiFlag:
367
758
  VALIDMAX: 1
368
759
 
369
760
  P2_NumEvents:
370
- <<: *direct_events
761
+ <<: *direct_events_default
371
762
  CATDESC: Priority 2 Number of Events
372
763
  FIELDNAM: Priority 2 Number of Events
373
- FILLVAL: 65535
764
+ FILLVAL: *uint16_fillval
374
765
  LABLAXIS: " "
375
766
 
376
767
  P2_PHAType:
377
- <<: *direct_events
768
+ <<: *direct_events_default
378
769
  CATDESC: Priority 2 PHA Type
379
770
  DEPEND_1: event_num
380
771
  FIELDNAM: Priority 2 PHA Type
@@ -382,7 +773,7 @@ P2_PHAType:
382
773
  VALIDMAX: 4
383
774
 
384
775
  P2_Position:
385
- <<: *direct_events
776
+ <<: *direct_events_default
386
777
  CATDESC: Priority 2 Position
387
778
  DEPEND_1: event_num
388
779
  FIELDNAM: Priority 2 Position
@@ -390,7 +781,7 @@ P2_Position:
390
781
  VALIDMAX: 32
391
782
 
392
783
  P2_SpinAngle:
393
- <<: *direct_events
784
+ <<: *direct_events_default
394
785
  CATDESC: Priority 2 Spin Angle
395
786
  DEPEND_1: event_num
396
787
  FIELDNAM: Priority 2 Spin Angle
@@ -398,7 +789,7 @@ P2_SpinAngle:
398
789
  VALIDMAX: 128
399
790
 
400
791
  P2_SpinNumber:
401
- <<: *direct_events
792
+ <<: *direct_events_default
402
793
  CATDESC: Priority 2 Spin Number
403
794
  DEPEND_1: event_num
404
795
  FIELDNAM: Priority 2 Spin Number
@@ -406,7 +797,7 @@ P2_SpinNumber:
406
797
  VALIDMAX: 32
407
798
 
408
799
  P2_SSD_ID:
409
- <<: *direct_events
800
+ <<: *direct_events_default
410
801
  CATDESC: Priority 2 SSD ID or Azimuth Angle
411
802
  DEPEND_1: event_num
412
803
  FIELDNAM: Priority 2 SSD ID or Azimuth Angle
@@ -414,7 +805,7 @@ P2_SSD_ID:
414
805
  VALIDMAX: 32
415
806
 
416
807
  P2_SSDEnergy:
417
- <<: *direct_events
808
+ <<: *direct_events_default
418
809
  CATDESC: Priority 2 APD Energy
419
810
  DEPEND_1: event_num
420
811
  FIELDNAM: Priority 2 APD Energy
@@ -422,16 +813,16 @@ P2_SSDEnergy:
422
813
  VALIDMAX: 2048
423
814
 
424
815
  P2_TOF:
425
- <<: *direct_events
816
+ <<: *direct_events_default
426
817
  CATDESC: Priority 2 Time of Flight
427
818
  DEPEND_1: event_num
428
819
  FIELDNAM: Priority 2 Time of Flight
429
- FILLVAL: 65535
820
+ FILLVAL: *uint16_fillval
430
821
  LABL_PTR_1: event_num_label
431
822
  VALIDMAX: 1024
432
823
 
433
824
  P2_Type:
434
- <<: *direct_events
825
+ <<: *direct_events_default
435
826
  CATDESC: Priority 2 Type
436
827
  DEPEND_1: event_num
437
828
  FIELDNAM: Priority 2 Type
@@ -439,7 +830,7 @@ P2_Type:
439
830
  VALIDMAX: 3
440
831
 
441
832
  P3_APD_ID:
442
- <<: *direct_events
833
+ <<: *direct_events_default
443
834
  CATDESC: Priority 3 APD ID
444
835
  DEPEND_1: event_num
445
836
  FIELDNAM: Priority 3 APD ID
@@ -447,16 +838,16 @@ P3_APD_ID:
447
838
  VALIDMAX: 32
448
839
 
449
840
  P3_APDEnergy:
450
- <<: *direct_events
841
+ <<: *direct_events_default
451
842
  CATDESC: Priority 3 APD Energy
452
843
  DEPEND_1: event_num
453
844
  FIELDNAM: Priority 3 APD Energy
454
- FILLVAL: 65535
845
+ FILLVAL: *uint16_fillval
455
846
  LABL_PTR_1: event_num_label
456
847
  VALIDMAX: 512
457
848
 
458
849
  P3_APDGain:
459
- <<: *direct_events
850
+ <<: *direct_events_default
460
851
  CATDESC: Priority 3 APD Gain
461
852
  DEPEND_1: event_num
462
853
  FIELDNAM: Priority 3 APD Gain
@@ -464,7 +855,7 @@ P3_APDGain:
464
855
  VALIDMAX: 1
465
856
 
466
857
  P3_DataQuality:
467
- <<: *direct_events
858
+ <<: *direct_events_default
468
859
  CATDESC: Priority 3 Data Quality
469
860
  FIELDNAM: Priority 3 Data Quality
470
861
  LABLAXIS: " "
@@ -472,7 +863,7 @@ P3_DataQuality:
472
863
  DICT_KEY: SPASE>Support>SupportQuantity:DataQuality
473
864
 
474
865
  P3_EnergyStep:
475
- <<: *direct_events
866
+ <<: *direct_events_default
476
867
  CATDESC: Priority 3 Energy Step
477
868
  DEPEND_1: event_num
478
869
  FIELDNAM: Priority 3 Energy Step
@@ -480,7 +871,7 @@ P3_EnergyStep:
480
871
  VALIDMAX: 128
481
872
 
482
873
  P3_ERGE:
483
- <<: *direct_events
874
+ <<: *direct_events_default
484
875
  CATDESC: Priority 3 Energy Range
485
876
  DEPEND_1: event_num
486
877
  FIELDNAM: Priority 3 Energy Range
@@ -488,7 +879,7 @@ P3_ERGE:
488
879
  VALIDMAX: 4
489
880
 
490
881
  P3_MultiFlag:
491
- <<: *direct_events
882
+ <<: *direct_events_default
492
883
  CATDESC: Priority 3 Multi Flag
493
884
  DEPEND_1: event_num
494
885
  FIELDNAM: Priority 3 Multi Flag
@@ -496,14 +887,14 @@ P3_MultiFlag:
496
887
  VALIDMAX: 1
497
888
 
498
889
  P3_NumEvents:
499
- <<: *direct_events
890
+ <<: *direct_events_default
500
891
  CATDESC: Priority 3 Number of Events
501
892
  FIELDNAM: Priority 3 Number of Events
502
- FILLVAL: 65535
893
+ FILLVAL: *uint16_fillval
503
894
  LABLAXIS: " "
504
895
 
505
896
  P3_PHAType:
506
- <<: *direct_events
897
+ <<: *direct_events_default
507
898
  CATDESC: Priority 3 PHA Type
508
899
  DEPEND_1: event_num
509
900
  FIELDNAM: Priority 3 PHA Type
@@ -511,7 +902,7 @@ P3_PHAType:
511
902
  VALIDMAX: 4
512
903
 
513
904
  P3_Position:
514
- <<: *direct_events
905
+ <<: *direct_events_default
515
906
  CATDESC: Priority 3 Position
516
907
  DEPEND_1: event_num
517
908
  FIELDNAM: Priority 3 Position
@@ -519,7 +910,7 @@ P3_Position:
519
910
  VALIDMAX: 32
520
911
 
521
912
  P3_SpinAngle:
522
- <<: *direct_events
913
+ <<: *direct_events_default
523
914
  CATDESC: Priority 3 Spin Angle
524
915
  DEPEND_1: event_num
525
916
  FIELDNAM: Priority 3 Spin Angle
@@ -527,7 +918,7 @@ P3_SpinAngle:
527
918
  VALIDMAX: 128
528
919
 
529
920
  P3_SpinNumber:
530
- <<: *direct_events
921
+ <<: *direct_events_default
531
922
  CATDESC: Priority 3 Spin Number
532
923
  DEPEND_1: event_num
533
924
  FIELDNAM: Priority 3 Spin Number
@@ -535,7 +926,7 @@ P3_SpinNumber:
535
926
  VALIDMAX: 32
536
927
 
537
928
  P3_SSD_ID:
538
- <<: *direct_events
929
+ <<: *direct_events_default
539
930
  CATDESC: Priority 3 SSD ID or Azimuth Angle
540
931
  DEPEND_1: event_num
541
932
  FIELDNAM: Priority 3 SSD ID or Azimuth Angle
@@ -543,7 +934,7 @@ P3_SSD_ID:
543
934
  VALIDMAX: 32
544
935
 
545
936
  P3_SSDEnergy:
546
- <<: *direct_events
937
+ <<: *direct_events_default
547
938
  CATDESC: Priority 3 APD Energy
548
939
  DEPEND_1: event_num
549
940
  FIELDNAM: Priority 3 APD Energy
@@ -551,16 +942,16 @@ P3_SSDEnergy:
551
942
  VALIDMAX: 2048
552
943
 
553
944
  P3_TOF:
554
- <<: *direct_events
945
+ <<: *direct_events_default
555
946
  CATDESC: Priority 3 Time of Flight
556
947
  DEPEND_1: event_num
557
948
  FIELDNAM: Priority 3 Time of Flight
558
- FILLVAL: 65535
949
+ FILLVAL: *uint16_fillval
559
950
  LABL_PTR_1: event_num_label
560
951
  VALIDMAX: 1024
561
952
 
562
953
  P3_Type:
563
- <<: *direct_events
954
+ <<: *direct_events_default
564
955
  CATDESC: Priority 3 Type
565
956
  DEPEND_1: event_num
566
957
  FIELDNAM: Priority 3 Type
@@ -568,7 +959,7 @@ P3_Type:
568
959
  VALIDMAX: 3
569
960
 
570
961
  P4_APD_ID:
571
- <<: *direct_events
962
+ <<: *direct_events_default
572
963
  CATDESC: Priority 4 APD ID
573
964
  DEPEND_1: event_num
574
965
  FIELDNAM: Priority 4 APD ID
@@ -576,16 +967,16 @@ P4_APD_ID:
576
967
  VALIDMAX: 32
577
968
 
578
969
  P4_APDEnergy:
579
- <<: *direct_events
970
+ <<: *direct_events_default
580
971
  CATDESC: Priority 4 APD Energy
581
972
  DEPEND_1: event_num
582
973
  FIELDNAM: Priority 4 APD Energy
583
- FILLVAL: 65535
974
+ FILLVAL: *uint16_fillval
584
975
  LABL_PTR_1: event_num_label
585
976
  VALIDMAX: 512
586
977
 
587
978
  P4_APDGain:
588
- <<: *direct_events
979
+ <<: *direct_events_default
589
980
  CATDESC: Priority 4 APD Gain
590
981
  DEPEND_1: event_num
591
982
  FIELDNAM: Priority 4 APD Gain
@@ -593,7 +984,7 @@ P4_APDGain:
593
984
  VALIDMAX: 1
594
985
 
595
986
  P4_DataQuality:
596
- <<: *direct_events
987
+ <<: *direct_events_default
597
988
  CATDESC: Priority 4 Data Quality
598
989
  FIELDNAM: Priority 4 Data Quality
599
990
  LABLAXIS: " "
@@ -601,7 +992,7 @@ P4_DataQuality:
601
992
  DICT_KEY: SPASE>Support>SupportQuantity:DataQuality
602
993
 
603
994
  P4_EnergyStep:
604
- <<: *direct_events
995
+ <<: *direct_events_default
605
996
  CATDESC: Priority 4 Energy Step
606
997
  DEPEND_1: event_num
607
998
  FIELDNAM: Priority 4 Energy Step
@@ -609,7 +1000,7 @@ P4_EnergyStep:
609
1000
  VALIDMAX: 128
610
1001
 
611
1002
  P4_ERGE:
612
- <<: *direct_events
1003
+ <<: *direct_events_default
613
1004
  CATDESC: Priority 4 Energy Range
614
1005
  DEPEND_1: event_num
615
1006
  FIELDNAM: Priority 4 Energy Range
@@ -617,7 +1008,7 @@ P4_ERGE:
617
1008
  VALIDMAX: 4
618
1009
 
619
1010
  P4_MultiFlag:
620
- <<: *direct_events
1011
+ <<: *direct_events_default
621
1012
  CATDESC: Priority 4 Multi Flag
622
1013
  DEPEND_1: event_num
623
1014
  FIELDNAM: Priority 4 Multi Flag
@@ -625,14 +1016,14 @@ P4_MultiFlag:
625
1016
  VALIDMAX: 1
626
1017
 
627
1018
  P4_NumEvents:
628
- <<: *direct_events
1019
+ <<: *direct_events_default
629
1020
  CATDESC: Priority 4 Number of Events
630
1021
  FIELDNAM: Priority 4 Number of Events
631
- FILLVAL: 65535
1022
+ FILLVAL: *uint16_fillval
632
1023
  LABLAXIS: " "
633
1024
 
634
1025
  P4_PHAType:
635
- <<: *direct_events
1026
+ <<: *direct_events_default
636
1027
  CATDESC: Priority 4 PHA Type
637
1028
  DEPEND_1: event_num
638
1029
  FIELDNAM: Priority 4 PHA Type
@@ -640,7 +1031,7 @@ P4_PHAType:
640
1031
  VALIDMAX: 4
641
1032
 
642
1033
  P4_Position:
643
- <<: *direct_events
1034
+ <<: *direct_events_default
644
1035
  CATDESC: Priority 4 Position
645
1036
  DEPEND_1: event_num
646
1037
  FIELDNAM: Priority 4 Position
@@ -648,7 +1039,7 @@ P4_Position:
648
1039
  VALIDMAX: 32
649
1040
 
650
1041
  P4_SpinAngle:
651
- <<: *direct_events
1042
+ <<: *direct_events_default
652
1043
  CATDESC: Priority 4 Spin Angle
653
1044
  DEPEND_1: event_num
654
1045
  FIELDNAM: Priority 4 Spin Angle
@@ -656,7 +1047,7 @@ P4_SpinAngle:
656
1047
  VALIDMAX: 128
657
1048
 
658
1049
  P4_SpinNumber:
659
- <<: *direct_events
1050
+ <<: *direct_events_default
660
1051
  CATDESC: Priority 4 Spin Number
661
1052
  DEPEND_1: event_num
662
1053
  FIELDNAM: Priority 4 Spin Number
@@ -664,7 +1055,7 @@ P4_SpinNumber:
664
1055
  VALIDMAX: 32
665
1056
 
666
1057
  P4_SSD_ID:
667
- <<: *direct_events
1058
+ <<: *direct_events_default
668
1059
  CATDESC: Priority 4 SSD ID or Azimuth Angle
669
1060
  DEPEND_1: event_num
670
1061
  FIELDNAM: Priority 4 SSD ID or Azimuth Angle
@@ -672,7 +1063,7 @@ P4_SSD_ID:
672
1063
  VALIDMAX: 32
673
1064
 
674
1065
  P4_SSDEnergy:
675
- <<: *direct_events
1066
+ <<: *direct_events_default
676
1067
  CATDESC: Priority 4 APD Energy
677
1068
  DEPEND_1: event_num
678
1069
  FIELDNAM: Priority 4 APD Energy
@@ -680,16 +1071,16 @@ P4_SSDEnergy:
680
1071
  VALIDMAX: 2048
681
1072
 
682
1073
  P4_TOF:
683
- <<: *direct_events
1074
+ <<: *direct_events_default
684
1075
  CATDESC: Priority 4 Time of Flight
685
1076
  DEPEND_1: event_num
686
1077
  FIELDNAM: Priority 4 Time of Flight
687
- FILLVAL: 65535
1078
+ FILLVAL: *uint16_fillval
688
1079
  LABL_PTR_1: event_num_label
689
1080
  VALIDMAX: 1024
690
1081
 
691
1082
  P4_Type:
692
- <<: *direct_events
1083
+ <<: *direct_events_default
693
1084
  CATDESC: Priority 4 Type
694
1085
  DEPEND_1: event_num
695
1086
  FIELDNAM: Priority 4 Type
@@ -697,7 +1088,7 @@ P4_Type:
697
1088
  VALIDMAX: 3
698
1089
 
699
1090
  P5_APD_ID:
700
- <<: *direct_events
1091
+ <<: *direct_events_default
701
1092
  CATDESC: Priority 5 APD ID
702
1093
  DEPEND_1: event_num
703
1094
  FIELDNAM: Priority 5 APD ID
@@ -705,16 +1096,16 @@ P5_APD_ID:
705
1096
  VALIDMAX: 32
706
1097
 
707
1098
  P5_APDEnergy:
708
- <<: *direct_events
1099
+ <<: *direct_events_default
709
1100
  CATDESC: Priority 5 APD Energy
710
1101
  DEPEND_1: event_num
711
1102
  FIELDNAM: Priority 5 APD Energy
712
- FILLVAL: 65535
1103
+ FILLVAL: *uint16_fillval
713
1104
  LABL_PTR_1: event_num_label
714
1105
  VALIDMAX: 512
715
1106
 
716
1107
  P5_APDGain:
717
- <<: *direct_events
1108
+ <<: *direct_events_default
718
1109
  CATDESC: Priority 5 APD Gain
719
1110
  DEPEND_1: event_num
720
1111
  FIELDNAM: Priority 5 APD Gain
@@ -722,7 +1113,7 @@ P5_APDGain:
722
1113
  VALIDMAX: 1
723
1114
 
724
1115
  P5_DataQuality:
725
- <<: *direct_events
1116
+ <<: *direct_events_default
726
1117
  CATDESC: Priority 5 Data Quality
727
1118
  FIELDNAM: Priority 5 Data Quality
728
1119
  LABLAXIS: " "
@@ -730,7 +1121,7 @@ P5_DataQuality:
730
1121
  DICT_KEY: SPASE>Support>SupportQuantity:DataQuality
731
1122
 
732
1123
  P5_EnergyStep:
733
- <<: *direct_events
1124
+ <<: *direct_events_default
734
1125
  CATDESC: Priority 5 Energy Step
735
1126
  DEPEND_1: event_num
736
1127
  FIELDNAM: Priority 5 Energy Step
@@ -738,7 +1129,7 @@ P5_EnergyStep:
738
1129
  VALIDMAX: 128
739
1130
 
740
1131
  P5_ERGE:
741
- <<: *direct_events
1132
+ <<: *direct_events_default
742
1133
  CATDESC: Priority 5 Energy Range
743
1134
  DEPEND_1: event_num
744
1135
  FIELDNAM: Priority 5 Energy Range
@@ -746,7 +1137,7 @@ P5_ERGE:
746
1137
  VALIDMAX: 4
747
1138
 
748
1139
  P5_MultiFlag:
749
- <<: *direct_events
1140
+ <<: *direct_events_default
750
1141
  CATDESC: Priority 5 Multi Flag
751
1142
  DEPEND_1: event_num
752
1143
  FIELDNAM: Priority 5 Multi Flag
@@ -754,14 +1145,14 @@ P5_MultiFlag:
754
1145
  VALIDMAX: 1
755
1146
 
756
1147
  P5_NumEvents:
757
- <<: *direct_events
1148
+ <<: *direct_events_default
758
1149
  CATDESC: Priority 5 Number of Events
759
1150
  FIELDNAM: Priority 5 Number of Events
760
- FILLVAL: 65535
1151
+ FILLVAL: *uint16_fillval
761
1152
  LABLAXIS: " "
762
1153
 
763
1154
  P5_PHAType:
764
- <<: *direct_events
1155
+ <<: *direct_events_default
765
1156
  CATDESC: Priority 5 PHA Type
766
1157
  DEPEND_1: event_num
767
1158
  FIELDNAM: Priority 5 PHA Type
@@ -769,7 +1160,7 @@ P5_PHAType:
769
1160
  VALIDMAX: 4
770
1161
 
771
1162
  P5_Position:
772
- <<: *direct_events
1163
+ <<: *direct_events_default
773
1164
  CATDESC: Priority 5 Position
774
1165
  DEPEND_1: event_num
775
1166
  FIELDNAM: Priority 5 Position
@@ -777,7 +1168,7 @@ P5_Position:
777
1168
  VALIDMAX: 32
778
1169
 
779
1170
  P5_SpinAngle:
780
- <<: *direct_events
1171
+ <<: *direct_events_default
781
1172
  CATDESC: Priority 5 Spin Angle
782
1173
  DEPEND_1: event_num
783
1174
  FIELDNAM: Priority 5 Spin Angle
@@ -785,7 +1176,7 @@ P5_SpinAngle:
785
1176
  VALIDMAX: 128
786
1177
 
787
1178
  P5_SpinNumber:
788
- <<: *direct_events
1179
+ <<: *direct_events_default
789
1180
  CATDESC: Priority 5 Spin Number
790
1181
  DEPEND_1: event_num
791
1182
  FIELDNAM: Priority 5 Spin Number
@@ -793,7 +1184,7 @@ P5_SpinNumber:
793
1184
  VALIDMAX: 32
794
1185
 
795
1186
  P5_SSD_ID:
796
- <<: *direct_events
1187
+ <<: *direct_events_default
797
1188
  CATDESC: Priority 5 SSD ID or Azimuth Angle
798
1189
  DEPEND_1: event_num
799
1190
  FIELDNAM: Priority 5 SSD ID or Azimuth Angle
@@ -801,7 +1192,7 @@ P5_SSD_ID:
801
1192
  VALIDMAX: 32
802
1193
 
803
1194
  P5_SSDEnergy:
804
- <<: *direct_events
1195
+ <<: *direct_events_default
805
1196
  CATDESC: Priority 5 APD Energy
806
1197
  DEPEND_1: event_num
807
1198
  FIELDNAM: Priority 5 APD Energy
@@ -809,16 +1200,16 @@ P5_SSDEnergy:
809
1200
  VALIDMAX: 2048
810
1201
 
811
1202
  P5_TOF:
812
- <<: *direct_events
1203
+ <<: *direct_events_default
813
1204
  CATDESC: Priority 5 Time of Flight
814
1205
  DEPEND_1: event_num
815
1206
  FIELDNAM: Priority 5 Time of Flight
816
- FILLVAL: 65535
1207
+ FILLVAL: *uint16_fillval
817
1208
  LABL_PTR_1: event_num_label
818
1209
  VALIDMAX: 1024
819
1210
 
820
1211
  P5_Type:
821
- <<: *direct_events
1212
+ <<: *direct_events_default
822
1213
  CATDESC: Priority 5 Type
823
1214
  DEPEND_1: event_num
824
1215
  FIELDNAM: Priority 5 Type
@@ -826,7 +1217,7 @@ P5_Type:
826
1217
  VALIDMAX: 3
827
1218
 
828
1219
  P6_APD_ID:
829
- <<: *direct_events
1220
+ <<: *direct_events_default
830
1221
  CATDESC: Priority 6 APD ID
831
1222
  DEPEND_1: event_num
832
1223
  FIELDNAM: Priority 6 APD ID
@@ -834,16 +1225,16 @@ P6_APD_ID:
834
1225
  VALIDMAX: 32
835
1226
 
836
1227
  P6_APDEnergy:
837
- <<: *direct_events
1228
+ <<: *direct_events_default
838
1229
  CATDESC: Priority 6 APD Energy
839
1230
  DEPEND_1: event_num
840
1231
  FIELDNAM: Priority 6 APD Energy
841
- FILLVAL: 65535
1232
+ FILLVAL: *uint16_fillval
842
1233
  LABL_PTR_1: event_num_label
843
1234
  VALIDMAX: 512
844
1235
 
845
1236
  P6_APDGain:
846
- <<: *direct_events
1237
+ <<: *direct_events_default
847
1238
  CATDESC: Priority 6 APD Gain
848
1239
  DEPEND_1: event_num
849
1240
  FIELDNAM: Priority 6 APD Gain
@@ -851,7 +1242,7 @@ P6_APDGain:
851
1242
  VALIDMAX: 1
852
1243
 
853
1244
  P6_DataQuality:
854
- <<: *direct_events
1245
+ <<: *direct_events_default
855
1246
  CATDESC: Priority 6 Data Quality
856
1247
  FIELDNAM: Priority 6 Data Quality
857
1248
  LABLAXIS: " "
@@ -859,7 +1250,7 @@ P6_DataQuality:
859
1250
  DICT_KEY: SPASE>Support>SupportQuantity:DataQuality
860
1251
 
861
1252
  P6_EnergyStep:
862
- <<: *direct_events
1253
+ <<: *direct_events_default
863
1254
  CATDESC: Priority 6 Energy Step
864
1255
  DEPEND_1: event_num
865
1256
  FIELDNAM: Priority 6 Energy Step
@@ -867,7 +1258,7 @@ P6_EnergyStep:
867
1258
  VALIDMAX: 128
868
1259
 
869
1260
  P6_MultiFlag:
870
- <<: *direct_events
1261
+ <<: *direct_events_default
871
1262
  CATDESC: Priority 6 Multi Flag
872
1263
  DEPEND_1: event_num
873
1264
  FIELDNAM: Priority 6 Multi Flag
@@ -875,14 +1266,14 @@ P6_MultiFlag:
875
1266
  VALIDMAX: 1
876
1267
 
877
1268
  P6_NumEvents:
878
- <<: *direct_events
1269
+ <<: *direct_events_default
879
1270
  CATDESC: Priority 6 Number of Events
880
1271
  FIELDNAM: Priority 6 Number of Events
881
- FILLVAL: 65535
1272
+ FILLVAL: *uint16_fillval
882
1273
  LABLAXIS: " "
883
1274
 
884
1275
  P6_PHAType:
885
- <<: *direct_events
1276
+ <<: *direct_events_default
886
1277
  CATDESC: Priority 6 PHA Type
887
1278
  DEPEND_1: event_num
888
1279
  FIELDNAM: Priority 6 PHA Type
@@ -890,7 +1281,7 @@ P6_PHAType:
890
1281
  VALIDMAX: 4
891
1282
 
892
1283
  P6_Position:
893
- <<: *direct_events
1284
+ <<: *direct_events_default
894
1285
  CATDESC: Priority 6 Position
895
1286
  DEPEND_1: event_num
896
1287
  FIELDNAM: Priority 6 Position
@@ -898,7 +1289,7 @@ P6_Position:
898
1289
  VALIDMAX: 32
899
1290
 
900
1291
  P6_SpinAngle:
901
- <<: *direct_events
1292
+ <<: *direct_events_default
902
1293
  CATDESC: Priority 6 Spin Angle
903
1294
  DEPEND_1: event_num
904
1295
  FIELDNAM: Priority 6 Spin Angle
@@ -906,16 +1297,16 @@ P6_SpinAngle:
906
1297
  VALIDMAX: 128
907
1298
 
908
1299
  P6_TOF:
909
- <<: *direct_events
1300
+ <<: *direct_events_default
910
1301
  CATDESC: Priority 6 Time of Flight
911
1302
  DEPEND_1: event_num
912
1303
  FIELDNAM: Priority 6 Time of Flight
913
- FILLVAL: 65535
1304
+ FILLVAL: *uint16_fillval
914
1305
  LABL_PTR_1: event_num_label
915
1306
  VALIDMAX: 1024
916
1307
 
917
1308
  P7_APD_ID:
918
- <<: *direct_events
1309
+ <<: *direct_events_default
919
1310
  CATDESC: Priority 7 APD ID
920
1311
  DEPEND_1: event_num
921
1312
  FIELDNAM: Priority 7 APD ID
@@ -923,16 +1314,16 @@ P7_APD_ID:
923
1314
  VALIDMAX: 32
924
1315
 
925
1316
  P7_APDEnergy:
926
- <<: *direct_events
1317
+ <<: *direct_events_default
927
1318
  CATDESC: Priority 7 APD Energy
928
1319
  DEPEND_1: event_num
929
1320
  FIELDNAM: Priority 7 APD Energy
930
- FILLVAL: 65535
1321
+ FILLVAL: *uint16_fillval
931
1322
  LABL_PTR_1: event_num_label
932
1323
  VALIDMAX: 512
933
1324
 
934
1325
  P7_APDGain:
935
- <<: *direct_events
1326
+ <<: *direct_events_default
936
1327
  CATDESC: Priority 7 APD Gain
937
1328
  DEPEND_1: event_num
938
1329
  FIELDNAM: Priority 7 APD Gain
@@ -940,7 +1331,7 @@ P7_APDGain:
940
1331
  VALIDMAX: 1
941
1332
 
942
1333
  P7_DataQuality:
943
- <<: *direct_events
1334
+ <<: *direct_events_default
944
1335
  CATDESC: Priority 7 Data Quality
945
1336
  FIELDNAM: Priority 7 Data Quality
946
1337
  LABLAXIS: " "
@@ -948,7 +1339,7 @@ P7_DataQuality:
948
1339
  DICT_KEY: SPASE>Support>SupportQuantity:DataQuality
949
1340
 
950
1341
  P7_EnergyStep:
951
- <<: *direct_events
1342
+ <<: *direct_events_default
952
1343
  CATDESC: Priority 7 Energy Step
953
1344
  DEPEND_1: event_num
954
1345
  FIELDNAM: Priority 7 Energy Step
@@ -956,7 +1347,7 @@ P7_EnergyStep:
956
1347
  VALIDMAX: 128
957
1348
 
958
1349
  P7_MultiFlag:
959
- <<: *direct_events
1350
+ <<: *direct_events_default
960
1351
  CATDESC: Priority 7 Multi Flag
961
1352
  DEPEND_1: event_num
962
1353
  FIELDNAM: Priority 7 Multi Flag
@@ -964,14 +1355,14 @@ P7_MultiFlag:
964
1355
  VALIDMAX: 1
965
1356
 
966
1357
  P7_NumEvents:
967
- <<: *direct_events
1358
+ <<: *direct_events_default
968
1359
  CATDESC: Priority 7 Number of Events
969
1360
  FIELDNAM: Priority 7 Number of Events
970
- FILLVAL: 65535
1361
+ FILLVAL: *uint16_fillval
971
1362
  LABLAXIS: " "
972
1363
 
973
1364
  P7_PHAType:
974
- <<: *direct_events
1365
+ <<: *direct_events_default
975
1366
  CATDESC: Priority 7 PHA Type
976
1367
  DEPEND_1: event_num
977
1368
  FIELDNAM: Priority 7 PHA Type
@@ -979,7 +1370,7 @@ P7_PHAType:
979
1370
  VALIDMAX: 4
980
1371
 
981
1372
  P7_Position:
982
- <<: *direct_events
1373
+ <<: *direct_events_default
983
1374
  CATDESC: Priority 7 Position
984
1375
  DEPEND_1: event_num
985
1376
  FIELDNAM: Priority 7 Position
@@ -987,7 +1378,7 @@ P7_Position:
987
1378
  VALIDMAX: 32
988
1379
 
989
1380
  P7_SpinAngle:
990
- <<: *direct_events
1381
+ <<: *direct_events_default
991
1382
  CATDESC: Priority 7 Spin Angle
992
1383
  DEPEND_1: event_num
993
1384
  FIELDNAM: Priority 7 Spin Angle
@@ -995,10 +1386,484 @@ P7_SpinAngle:
995
1386
  VALIDMAX: 128
996
1387
 
997
1388
  P7_TOF:
998
- <<: *direct_events
1389
+ <<: *direct_events_default
999
1390
  CATDESC: Priority 7 Time of Flight
1000
1391
  DEPEND_1: event_num
1001
1392
  FIELDNAM: Priority 7 Time of Flight
1002
- FILLVAL: 65535
1393
+ FILLVAL: *uint16_fillval
1003
1394
  LABL_PTR_1: event_num_label
1004
- VALIDMAX: 1024
1395
+ VALIDMAX: 1024
1396
+
1397
+
1398
+ # lo-sw-species Attributes
1399
+ lo-sw-species-cnoplus:
1400
+ <<: *lo_species_default
1401
+ CATDESC: Counts - Sunward - CNO+ Pick Up Ions (PUI)
1402
+ FIELDNAM: Counts - SW - CNO+ (PUI)
1403
+
1404
+ lo-sw-species-cplus4:
1405
+ <<: *lo_species_default
1406
+ CATDESC: Counts - Sunward - C+4
1407
+ FIELDNAM: Counts - SW - C+4
1408
+
1409
+ lo-sw-species-cplus5:
1410
+ <<: *lo_species_default
1411
+ CATDESC: Counts - Sunward - C+5
1412
+ FIELDNAM: Counts - SW - C+5
1413
+
1414
+ lo-sw-species-cplus6:
1415
+ <<: *lo_species_default
1416
+ CATDESC: Counts - Sunward - C+6
1417
+ FIELDNAM: Counts - SW - C+6
1418
+
1419
+ lo-sw-species-fe_hiq:
1420
+ <<: *lo_species_default
1421
+ CATDESC: Counts - Sunward - Fe highQ
1422
+ FIELDNAM: Counts - SW - Fe highQ
1423
+
1424
+ lo-sw-species-fe_loq:
1425
+ <<: *lo_species_default
1426
+ CATDESC: Counts - Sunward - Fe lowQ
1427
+ FIELDNAM: Counts - SW - Fe lowQ
1428
+
1429
+ lo-sw-species-heplus:
1430
+ <<: *lo_species_default
1431
+ CATDESC: Counts - Sunward - He+ (PUI)
1432
+ FIELDNAM: Counts - SW - He+ (PUI)
1433
+
1434
+ lo-sw-species-heplusplus:
1435
+ <<: *lo_species_default
1436
+ CATDESC: Counts - Sunward - He++
1437
+ FIELDNAM: Counts - SW - He++
1438
+
1439
+ lo-sw-species-hplus:
1440
+ <<: *lo_species_default
1441
+ CATDESC: Counts - Sunward - H+
1442
+ FIELDNAM: Counts - SW - H+
1443
+
1444
+ lo-sw-species-mg:
1445
+ <<: *lo_species_default
1446
+ CATDESC: Counts - Sunward - Mg
1447
+ FIELDNAM: Counts - SW - Mg
1448
+
1449
+ lo-sw-species-ne:
1450
+ <<: *lo_species_default
1451
+ CATDESC: Counts - Sunward - Ne
1452
+ FIELDNAM: Counts - SW - Ne
1453
+
1454
+ lo-sw-species-oplus5:
1455
+ <<: *lo_species_default
1456
+ CATDESC: Counts - Sunward - O+5
1457
+ FIELDNAM: Counts - SW - O+5
1458
+
1459
+ lo-sw-species-oplus6:
1460
+ <<: *lo_species_default
1461
+ CATDESC: Counts - Sunward - O+6
1462
+ FIELDNAM: Counts - SW - O+6
1463
+
1464
+ lo-sw-species-oplus7:
1465
+ <<: *lo_species_default
1466
+ CATDESC: Counts - Sunward - O+7
1467
+ FIELDNAM: Counts - SW - O+7
1468
+
1469
+ lo-sw-species-oplus8:
1470
+ <<: *lo_species_default
1471
+ CATDESC: Counts - Sunward - O+8
1472
+ FIELDNAM: Counts - SW - O+8
1473
+
1474
+ lo-sw-species-si:
1475
+ <<: *lo_species_default
1476
+ CATDESC: Counts - Sunward - Si
1477
+ FIELDNAM: Counts - SW - Si
1478
+
1479
+ # lo-sw-angular Attributes
1480
+ lo-sw-angular-fe_loq:
1481
+ <<: *lo_angular_default
1482
+ CATDESC: Counts - Sunward - Fe lowQ
1483
+ FIELDNAM: Sunward Facing Counts - SW - Fe lowQ
1484
+
1485
+ lo-sw-angular-heplusplus:
1486
+ <<: *lo_angular_default
1487
+ CATDESC: Counts - Sunward - He++
1488
+ FIELDNAM: Sunward Facing Counts - SW - He++
1489
+
1490
+ lo-sw-angular-hplus:
1491
+ <<: *lo_angular_default
1492
+ CATDESC: Counts - Sunward - H+
1493
+ FIELDNAM: Sunward Facing Counts - SW - H+
1494
+
1495
+ lo-sw-angular-oplus6:
1496
+ <<: *lo_angular_default
1497
+ CATDESC: Counts - Sunward - O+6
1498
+ FIELDNAM: Sunward Facing Counts - SW - O+6
1499
+
1500
+ # lo-nsw-species Attributes
1501
+ lo-nsw-species-c:
1502
+ <<: *lo_species_default
1503
+ CATDESC: Counts - Non-Sunward - C
1504
+ FIELDNAM: Counts - NSW - C
1505
+
1506
+ lo-nsw-species-cnoplus:
1507
+ <<: *lo_species_default
1508
+ CATDESC: Counts - Non-Sunward - CNO+
1509
+ FIELDNAM: Counts - NSW - CNO+
1510
+
1511
+ lo-nsw-species-fe:
1512
+ <<: *lo_species_default
1513
+ CATDESC: Counts - Non-Sunward - Fe
1514
+ FIELDNAM: Counts - NSW - Fe
1515
+
1516
+ lo-nsw-species-heplus:
1517
+ <<: *lo_species_default
1518
+ CATDESC: Counts - Non-Sunward - He+
1519
+ FIELDNAM: Counts - NSW - He+
1520
+
1521
+ lo-nsw-species-heplusplus:
1522
+ <<: *lo_species_default
1523
+ CATDESC: Counts - Non-Sunward - He++
1524
+ FIELDNAM: Counts - NSW - He++
1525
+
1526
+ lo-nsw-species-hplus:
1527
+ <<: *lo_species_default
1528
+ CATDESC: Counts - Non-Sunward - H+
1529
+ FIELDNAM: Counts - NSW - H+
1530
+
1531
+ lo-nsw-species-ne_si_mg:
1532
+ <<: *lo_species_default
1533
+ CATDESC: Counts - Non-Sunward - Ne_Si_Mg
1534
+ FIELDNAM: Counts - NSW - Ne_Si_Mg
1535
+
1536
+ lo-nsw-species-o:
1537
+ <<: *lo_species_default
1538
+ CATDESC: Counts - Non-Sunward - O
1539
+ FIELDNAM: Counts - NSW - O
1540
+
1541
+ # lo-nsw-angular Attributes
1542
+ lo-nsw-angular-heplusplus:
1543
+ CATDESC: Counts - Non-Sunward - He++
1544
+ FIELDNAM: Non-Sunward Facing Counts - NSW - He++
1545
+
1546
+ # lo-ialirt Attributes
1547
+ lo-ialirt-c_over_o_abundance_ratio:
1548
+ <<: *lo_ialirt_default
1549
+ CATDESC: Elemental Abundance Ratio - C/O
1550
+ FIELDNAM: C/O
1551
+
1552
+ lo-ialirt-c_plus_6_over_c_plus_5_ratio:
1553
+ <<: *lo_ialirt_default
1554
+ CATDESC: Charge State Ratio - C+6/C+5
1555
+ FIELDNAM: C+6/C+5
1556
+
1557
+ lo-ialirt-fe_low_over_fe_high_ratio:
1558
+ <<: *lo_ialirt_default
1559
+ CATDESC: Charge State Ratio - Fe(low)/Fe(high)
1560
+ FIELDNAM: Fe(low)/Fe(high)
1561
+
1562
+ lo-ialirt-fe_over_o_abundance_ratio:
1563
+ <<: *lo_ialirt_default
1564
+ CATDESC: Elemental Abundance Ratio - Fe/O
1565
+ FIELDNAM: Fe/O
1566
+
1567
+ lo-ialirt-mg_over_o_abundance_ratio:
1568
+ <<: *lo_ialirt_default
1569
+ CATDESC: Elemental Abundance Ratio - Mg/O
1570
+ FIELDNAM: Mg/O
1571
+
1572
+ lo-ialirt-o_plus_7_over_o_plus_6_ratio:
1573
+ <<: *lo_ialirt_default
1574
+ CATDESC: Charge State Ratio - O+7/O+6
1575
+ FIELDNAM: O+7/O+6
1576
+
1577
+ # hi-ialirt Attributes
1578
+ hi-ialirt-energy_h_minus:
1579
+ <<: *energy_delta_default
1580
+ CATDESC: Energy Table Minus value
1581
+ FIELDNAM: energy delta minus
1582
+ DEPEND_1: energy_h
1583
+
1584
+ hi-ialirt-energy_h_plus:
1585
+ <<: *energy_delta_default
1586
+ CATDESC: Energy Table Plus value
1587
+ FIELDNAM: energy delta plus
1588
+ DEPEND_1: energy_h
1589
+
1590
+ hi-ialirt-h:
1591
+ <<: *default
1592
+ CATDESC: h (x2 spacing)
1593
+ FIELDNAM: h Diff. Intensity
1594
+ DEPEND_1: energy_h
1595
+ DEPEND_2: ssd_index
1596
+ DEPEND_3: spin_sector_index
1597
+ LABL_PTR_1: energy_h_label
1598
+ LABL_PTR_2: ssd_index_label
1599
+ LABL_PTR_3: spin_sector_index_label
1600
+ DISPLAY_TYPE: spectrogram
1601
+ FILLVAL: 4294967294
1602
+ UNITS: '# / cm2 s sr MeV/nuc'
1603
+ VALIDMAX: 16777216
1604
+ VALIDMIN: 0
1605
+
1606
+ hi-ialirt-spin_angles:
1607
+ <<: *spin_angles_default
1608
+ DEPEND_1: spin_sector_index
1609
+ DEPEND_2: elevation_angle
1610
+ LABL_PTR_1: spin_sector_index_label
1611
+ LABL_PTR_2: elevation_angle_label
1612
+
1613
+ # hi-omni Attributes
1614
+ hi-omni-energy_c_minus:
1615
+ <<: *energy_delta_default
1616
+ CATDESC: Energy Table Minus value
1617
+ FIELDNAM: energy delta minus
1618
+ DEPEND_1: energy_c
1619
+
1620
+ hi-omni-energy_c_plus:
1621
+ <<: *energy_delta_default
1622
+ CATDESC: Energy Table Plus value
1623
+ FIELDNAM: energy delta plus
1624
+ DEPEND_1: energy_c
1625
+
1626
+ hi-omni-energy_fe_minus:
1627
+ <<: *energy_delta_default
1628
+ CATDESC: Energy Table Minus value
1629
+ FIELDNAM: energy delta minus
1630
+ DEPEND_1: energy_fe
1631
+
1632
+ hi-omni-energy_fe_plus:
1633
+ <<: *energy_delta_default
1634
+ CATDESC: Energy Table Plus value
1635
+ FIELDNAM: energy delta plus
1636
+ DEPEND_1: energy_fe
1637
+
1638
+ hi-omni-energy_h_minus:
1639
+ <<: *energy_delta_default
1640
+ CATDESC: Energy Table Minus value
1641
+ FIELDNAM: energy delta minus
1642
+ DEPEND_1: energy_h
1643
+
1644
+ hi-omni-energy_h_plus:
1645
+ <<: *energy_delta_default
1646
+ CATDESC: Energy Table Plus value
1647
+ FIELDNAM: energy delta plus
1648
+ DEPEND_1: energy_h
1649
+
1650
+ hi-omni-energy_he3_minus:
1651
+ <<: *energy_delta_default
1652
+ CATDESC: Energy Table Minus value
1653
+ FIELDNAM: energy delta minus
1654
+ DEPEND_1: energy_he3
1655
+
1656
+ hi-omni-energy_he3_plus:
1657
+ <<: *energy_delta_default
1658
+ CATDESC: Energy Table Plus value
1659
+ FIELDNAM: energy delta plus
1660
+ DEPEND_1: energy_he3
1661
+
1662
+ hi-omni-energy_he4_minus:
1663
+ <<: *energy_delta_default
1664
+ CATDESC: Energy Table Minus value
1665
+ FIELDNAM: energy delta minus
1666
+ DEPEND_1: energy_he4
1667
+
1668
+ hi-omni-energy_he4_plus:
1669
+ <<: *energy_delta_default
1670
+ CATDESC: Energy Table Plus value
1671
+ FIELDNAM: energy delta plus
1672
+ DEPEND_1: energy_he4
1673
+
1674
+ hi-omni-energy_junk_minus:
1675
+ <<: *energy_delta_default
1676
+ CATDESC: Energy Table Minus value
1677
+ FIELDNAM: energy delta minus
1678
+ DEPEND_1: energy_junk
1679
+
1680
+ hi-omni-energy_junk_plus:
1681
+ <<: *energy_delta_default
1682
+ CATDESC: Energy Table Plus value
1683
+ FIELDNAM: energy delta plus
1684
+ DEPEND_1: energy_junk
1685
+
1686
+ hi-omni-energy_ne_mg_si_minus:
1687
+ <<: *energy_delta_default
1688
+ CATDESC: Energy Table Minus value
1689
+ FIELDNAM: energy delta minus
1690
+ DEPEND_1: energy_ne_mg_si
1691
+
1692
+ hi-omni-energy_ne_mg_si_plus:
1693
+ <<: *energy_delta_default
1694
+ CATDESC: Energy Table Plus value
1695
+ FIELDNAM: energy delta plus
1696
+ DEPEND_1: energy_ne_mg_si
1697
+
1698
+ hi-omni-energy_o_minus:
1699
+ <<: *energy_delta_default
1700
+ CATDESC: Energy Table Minus value
1701
+ FIELDNAM: energy delta minus
1702
+ DEPEND_1: energy_o
1703
+
1704
+ hi-omni-energy_o_plus:
1705
+ <<: *energy_delta_default
1706
+ CATDESC: Energy Table Plus value
1707
+ FIELDNAM: energy delta plus
1708
+ DEPEND_1: energy_o
1709
+
1710
+ hi-omni-energy_uh_minus:
1711
+ <<: *energy_delta_default
1712
+ CATDESC: Energy Table Minus value
1713
+ FIELDNAM: energy delta minus
1714
+ DEPEND_1: energy_uh
1715
+
1716
+ hi-omni-energy_uh_plus:
1717
+ <<: *energy_delta_default
1718
+ CATDESC: Energy Table Plus value
1719
+ FIELDNAM: energy delta plus
1720
+ DEPEND_1: energy_uh
1721
+
1722
+ hi-omni-c:
1723
+ <<: *hi_omni_default
1724
+ CATDESC: c (Root 2 spacing)
1725
+ FIELDNAM: c
1726
+ DEPEND_1: energy_c
1727
+ LABL_PTR_1: energy_c_label
1728
+
1729
+ hi-omni-fe:
1730
+ <<: *hi_omni_default
1731
+ CATDESC: fe (Root 2 spacing)
1732
+ FIELDNAM: fe
1733
+ DEPEND_1: energy_fe
1734
+ LABL_PTR_1: energy_fe_label
1735
+
1736
+ hi-omni-h:
1737
+ <<: *hi_omni_default
1738
+ CATDESC: h (Root 2 spacing)
1739
+ FIELDNAM: h
1740
+ DEPEND_1: energy_h
1741
+ LABL_PTR_1: energy_h_label
1742
+
1743
+ hi-omni-he3:
1744
+ <<: *hi_omni_default
1745
+ CATDESC: he3 (Root 2 spacing)
1746
+ FIELDNAM: he3
1747
+ DEPEND_1: energy_he3
1748
+ LABL_PTR_1: energy_he3_label
1749
+
1750
+
1751
+ hi-omni-he4:
1752
+ <<: *hi_omni_default
1753
+ CATDESC: he4 (Root 2 spacing)
1754
+ FIELDNAM: he4
1755
+ DEPEND_1: energy_he4
1756
+ LABL_PTR_1: energy_he4_label
1757
+
1758
+ hi-omni-junk:
1759
+ <<: *hi_omni_default
1760
+ CATDESC: junk (Root 2 spacing)
1761
+ FIELDNAM: junk
1762
+ DEPEND_1: energy_junk
1763
+ LABL_PTR_1: energy_junk_label
1764
+
1765
+ hi-omni-ne_mg_si:
1766
+ <<: *hi_omni_default
1767
+ CATDESC: ne-mg-si (Root 2 spacing)
1768
+ FIELDNAM: ne-mg-si
1769
+ DEPEND_1: energy_ne_mg_si
1770
+ LABL_PTR_1: energy_ne_mg_si_label
1771
+
1772
+ hi-omni-o:
1773
+ <<: *hi_omni_default
1774
+ CATDESC: o (Root 2 spacing)
1775
+ FIELDNAM: o
1776
+ DEPEND_1: energy_o
1777
+ LABL_PTR_1: energy_o_label
1778
+
1779
+ hi-omni-uh:
1780
+ <<: *hi_omni_default
1781
+ CATDESC: uh (Root 2 spacing)
1782
+ FIELDNAM: uh
1783
+ DEPEND_1: energy_uh
1784
+ LABL_PTR_1: energy_uh_label
1785
+
1786
+ # hi-sectored Attributes
1787
+ hi-sectored-cno:
1788
+ <<: *hi_sectored_attrs_default
1789
+ CATDESC: cno (x2 spacing)
1790
+ FIELDNAM: cno
1791
+ DEPEND_1: energy_cno
1792
+ LABL_PTR_1: energy_cno_label
1793
+
1794
+ hi-sectored-fe:
1795
+ <<: *hi_sectored_attrs_default
1796
+ CATDESC: fe (x2 spacing)
1797
+ FIELDNAM: fe
1798
+ DEPEND_1: energy_fe
1799
+ LABL_PTR_1: energy_fe_label
1800
+
1801
+ hi-sectored-h:
1802
+ <<: *hi_sectored_attrs_default
1803
+ CATDESC: h (x2 spacing)
1804
+ FIELDNAM: h
1805
+ DEPEND_1: energy_h
1806
+ LABL_PTR_1: energy_h_label
1807
+
1808
+ hi-sectored-he3he4:
1809
+ <<: *hi_sectored_attrs_default
1810
+ CATDESC: he3he4 (x2 spacing)
1811
+ FIELDNAM: he3he4
1812
+ DEPEND_1: energy_he3he4
1813
+ LABL_PTR_1: energy_he3he4_label
1814
+
1815
+ hi-sectored-energy_cno_minus:
1816
+ <<: *energy_delta_default
1817
+ CATDESC: Energy Table Minus value
1818
+ FIELDNAM: energy delta minus
1819
+ DEPEND_1: energy_cno
1820
+
1821
+ hi-sectored-energy_cno_plus:
1822
+ <<: *energy_delta_default
1823
+ CATDESC: Energy Table Plus value
1824
+ FIELDNAM: energy delta plus
1825
+ DEPEND_1: energy_cno
1826
+
1827
+ hi-sectored-energy_fe_minus:
1828
+ <<: *energy_delta_default
1829
+ CATDESC: Energy Table Minus value
1830
+ FIELDNAM: energy delta minus
1831
+ DEPEND_1: energy_fe
1832
+
1833
+ hi-sectored-energy_fe_plus:
1834
+ <<: *energy_delta_default
1835
+ CATDESC: Energy Table Plus value
1836
+ FIELDNAM: energy delta plus
1837
+ DEPEND_1: energy_fe
1838
+
1839
+ hi-sectored-energy_h_minus:
1840
+ <<: *energy_delta_default
1841
+ CATDESC: Energy Table Minus value
1842
+ FIELDNAM: energy delta minus
1843
+ DEPEND_1: energy_h
1844
+
1845
+ hi-sectored-energy_h_plus:
1846
+ <<: *energy_delta_default
1847
+ CATDESC: Energy Table Plus value
1848
+ FIELDNAM: energy delta plus
1849
+ DEPEND_1: energy_h
1850
+
1851
+ hi-sectored-energy_he3he4_minus:
1852
+ <<: *energy_delta_default
1853
+ CATDESC: Energy Table Minus value
1854
+ FIELDNAM: energy delta minus
1855
+ DEPEND_1: energy_he3he4
1856
+
1857
+ hi-sectored-energy_he3he4_plus:
1858
+ <<: *energy_delta_default
1859
+ CATDESC: Energy Table Plus value
1860
+ FIELDNAM: energy delta plus
1861
+ DEPEND_1: energy_he3he4
1862
+
1863
+ hi-sectored-spin_angles:
1864
+ <<: *spin_angles_default
1865
+ DEPEND_1: spin_sector_index
1866
+ DEPEND_2: elevation_angle
1867
+ LABL_PTR_1: spin_sector_index_label
1868
+ LABL_PTR_2: elevation_angle_label
1869
+