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,3 +1,5 @@
1
+ # TODO: Add DEPEND_1 to energy delta variables (energy_h_minus, energy_h_plus, etc.)
2
+
1
3
  # <=== Useful Variables ===>
2
4
  int_fillval: &int_fillval -9223372036854775808
3
5
  uint8_fillval: &uint8_fillval 255
@@ -294,6 +296,17 @@ energy_table:
294
296
  VALIDMAX: 14100.0
295
297
  VAR_TYPE: support_data
296
298
 
299
+ k_factor:
300
+ CATDESC: K Factor constant that is used to convert voltages to energies
301
+ FIELDNAM: K Factor
302
+ FORMAT: F5.2
303
+ LABLAXIS: K Factor
304
+ SCALETYP: linear
305
+ UNITS: " "
306
+ VALIDMIN: 1.0
307
+ VALIDMAX: 100.0
308
+ VAR_TYPE: support_data
309
+
297
310
  nso_half_spin:
298
311
  <<: *default
299
312
  CATDESC: When No Scan Operation (NSO) was activated
@@ -370,97 +383,97 @@ sw_bias_gain_mode:
370
383
 
371
384
  # The following are data product-specific
372
385
  # hi-counters-aggregated
373
- hi-counters-aggregated-DCR:
386
+ hi-counters-aggregated-dcr:
374
387
  <<: *events
375
388
  CATDESC: Event B - Double Coincidence Rate (DCR)
376
389
  FIELDNAM: DCRs
377
390
  LABLAXIS: "events"
378
391
 
379
- hi-counters-aggregated-STO:
392
+ hi-counters-aggregated-sto:
380
393
  <<: *events
381
394
  CATDESC: Event C - Start Only (STO)
382
395
  FIELDNAM: Start Only
383
396
  LABLAXIS: "events"
384
397
 
385
- hi-counters-aggregated-SPO:
398
+ hi-counters-aggregated-spo:
386
399
  <<: *events
387
400
  CATDESC: Event D - Stop Only (SPO)
388
401
  FIELDNAM: Stop Only
389
402
  LABLAXIS: "events"
390
403
 
391
- hi-counters-aggregated-Reserved1:
404
+ hi-counters-aggregated-reserved1:
392
405
  <<: *events
393
406
  CATDESC: Reserved 1
394
407
  FIELDNAM: Reserved 1
395
408
  LABLAXIS: "events"
396
409
 
397
- hi-counters-aggregated-MST:
410
+ hi-counters-aggregated-mst:
398
411
  <<: *events
399
412
  CATDESC: Event H - Multi Start (MST)
400
413
  FIELDNAM: Multi Start
401
414
  LABLAXIS: "events"
402
415
 
403
- hi-counters-aggregated-Reserved2:
416
+ hi-counters-aggregated-reserved2:
404
417
  <<: *events
405
418
  CATDESC: Reserved 2
406
419
  FIELDNAM: Reserved 2
407
420
  LABLAXIS: "events"
408
421
 
409
- hi-counters-aggregated-Reserved3:
422
+ hi-counters-aggregated-reserved3:
410
423
  <<: *events
411
424
  CATDESC: Reserved 3
412
425
  FIELDNAM: Reserved 3
413
426
  LABLAXIS: "events"
414
427
 
415
- hi-counters-aggregated-Reserved4:
428
+ hi-counters-aggregated-reserved4:
416
429
  <<: *events
417
430
  CATDESC: Reserved 4
418
431
  FIELDNAM: Reserved 4
419
432
  LABLAXIS: "events"
420
433
 
421
- hi-counters-aggregated-Reserved5:
434
+ hi-counters-aggregated-reserved5:
422
435
  <<: *events
423
436
  CATDESC: Reserved 5
424
437
  FIELDNAM: Reserved 5
425
438
  LABLAXIS: "events"
426
439
 
427
- hi-counters-aggregated-LowTOFCutoff:
440
+ hi-counters-aggregated-low_tof_cutoff:
428
441
  <<: *events
429
442
  CATDESC: Low TOF Cutoff
430
443
  FIELDNAM: Low TOF Cutoff
431
444
  LABLAXIS: "events"
432
445
 
433
- hi-counters-aggregated-Reserved6:
446
+ hi-counters-aggregated-reserved6:
434
447
  <<: *events
435
448
  CATDESC: Reserved 6
436
449
  FIELDNAM: Reserved 6
437
450
  LABLAXIS: "events"
438
451
 
439
- hi-counters-aggregated-Reserved7:
452
+ hi-counters-aggregated-reserved7:
440
453
  <<: *events
441
454
  CATDESC: Reserved 7
442
455
  FIELDNAM: Reserved 7
443
456
  LABLAXIS: "events"
444
457
 
445
- hi-counters-aggregated-ASIC1FlagInvalid:
458
+ hi-counters-aggregated-asic1_flag_invalid:
446
459
  <<: *events
447
460
  CATDESC: ASIC 1 Flag Invalid Count
448
461
  FIELDNAM: ASIC 1 Flag Invalid
449
462
  LABLAXIS: "events"
450
463
 
451
- hi-counters-aggregated-ASIC2FlagInvalid:
464
+ hi-counters-aggregated-asic2_flag_invalid:
452
465
  <<: *events
453
466
  CATDESC: ASIC 2 Flag Invalid Count
454
467
  FIELDNAM: ASIC 2 Flag Invalid
455
468
  LABLAXIS: "events"
456
469
 
457
- hi-counters-aggregated-ASIC1ChannelInvalid:
470
+ hi-counters-aggregated-asic1_channel_invalid:
458
471
  <<: *events
459
472
  CATDESC: ASIC 1 Channel Invalid Count
460
473
  FIELDNAM: ASIC 1 Channel Invalid
461
474
  LABLAXIS: "events"
462
475
 
463
- hi-counters-aggregated-ASIC2ChannelInvalid:
476
+ hi-counters-aggregated-asic2_channel_invalid:
464
477
  <<: *events
465
478
  CATDESC: ASIC 2 Channel Invalid Count
466
479
  FIELDNAM: ASIC 2 Channel Invalid
@@ -503,13 +516,18 @@ hi-ialirt-h:
503
516
  hi-ialirt-energy_h:
504
517
  <<: *hi_energies_default
505
518
  CATDESC: Energy Table for h
506
- DELTA_MINUS_VAR: energy_h_delta
507
- DELTA_PLUS_VAR: energy_h_delta
519
+ DELTA_MINUS_VAR: energy_h_minus
520
+ DELTA_PLUS_VAR: energy_h_plus
521
+
522
+ hi-ialirt-energy_h_minus:
523
+ <<: *hi_energies_default
524
+ CATDESC: Energy Table Minus Value for h
525
+ FIELDNAM: Energy Delta Minus
508
526
 
509
- hi-ialirt-energy_h_delta:
527
+ hi-ialirt-energy_h_plus:
510
528
  <<: *hi_energies_default
511
- CATDESC: Delta of energies for h
512
- FIELDNAM: Delta Energy
529
+ CATDESC: Energy Table Plus Value for h
530
+ FIELDNAM: Energy Delta Plus
513
531
 
514
532
  # hi-omni
515
533
  hi-omni-h:
@@ -522,13 +540,18 @@ hi-omni-h:
522
540
  hi-omni-energy_h:
523
541
  <<: *hi_energies_default
524
542
  CATDESC: Energy Table for h
525
- DELTA_MINUS_VAR: energy_h_delta
526
- DELTA_PLUS_VAR: energy_h_delta
543
+ DELTA_MINUS_VAR: energy_h_minus
544
+ DELTA_PLUS_VAR: energy_h_plus
527
545
 
528
- hi-omni-energy_h_delta:
546
+ hi-omni-energy_h_minus:
529
547
  <<: *hi_energies_default
530
- CATDESC: Delta of energies for h
531
- FIELDNAM: Delta Energy
548
+ CATDESC: Energy Table Minus Value for h
549
+ FIELDNAM: Energy Delta Minus
550
+
551
+ hi-omni-energy_h_plus:
552
+ <<: *hi_energies_default
553
+ CATDESC: Energy Table Plus Value for h
554
+ FIELDNAM: Energy Delta Plus
532
555
 
533
556
  hi-omni-he3:
534
557
  <<: *counters
@@ -540,13 +563,18 @@ hi-omni-he3:
540
563
  hi-omni-energy_he3:
541
564
  <<: *hi_energies_default
542
565
  CATDESC: Energy Table for he3
543
- DELTA_MINUS_VAR: energy_he3_delta
544
- DELTA_PLUS_VAR: energy_he3_delta
566
+ DELTA_MINUS_VAR: energy_he3_minus
567
+ DELTA_PLUS_VAR: energy_he3_plus
568
+
569
+ hi-omni-energy_he3_minus:
570
+ <<: *hi_energies_default
571
+ CATDESC: Energy Table Minus Value for he3
572
+ FIELDNAM: Energy Delta Minus
545
573
 
546
- hi-omni-energy_he3_delta:
574
+ hi-omni-energy_he3_plus:
547
575
  <<: *hi_energies_default
548
- CATDESC: Delta of energies for he3
549
- FIELDNAM: Delta Energy
576
+ CATDESC: Energy Table Plus Value for he3
577
+ FIELDNAM: Energy Delta Plus
550
578
 
551
579
  hi-omni-he4:
552
580
  <<: *counters
@@ -558,13 +586,18 @@ hi-omni-he4:
558
586
  hi-omni-energy_he4:
559
587
  <<: *hi_energies_default
560
588
  CATDESC: Energy Table for he4
561
- DELTA_MINUS_VAR: energy_he4_delta
562
- DELTA_PLUS_VAR: energy_he4_delta
589
+ DELTA_MINUS_VAR: energy_he4_minus
590
+ DELTA_PLUS_VAR: energy_he4_plus
563
591
 
564
- hi-omni-energy_he4_delta:
592
+ hi-omni-energy_he4_minus:
565
593
  <<: *hi_energies_default
566
- CATDESC: Delta of energies for he4
567
- FIELDNAM: Delta Energy
594
+ CATDESC: Energy Table Minus Value for he4
595
+ FIELDNAM: Energy Delta Minus
596
+
597
+ hi-omni-energy_he4_plus:
598
+ <<: *hi_energies_default
599
+ CATDESC: Energy Table Plus Value for he4
600
+ FIELDNAM: Energy Delta Plus
568
601
 
569
602
  hi-omni-c:
570
603
  <<: *counters
@@ -576,13 +609,18 @@ hi-omni-c:
576
609
  hi-omni-energy_c:
577
610
  <<: *hi_energies_default
578
611
  CATDESC: Energy Table for c
579
- DELTA_MINUS_VAR: energy_c_delta
580
- DELTA_PLUS_VAR: energy_c_delta
612
+ DELTA_MINUS_VAR: energy_c_minus
613
+ DELTA_PLUS_VAR: energy_c_plus
614
+
615
+ hi-omni-energy_c_minus:
616
+ <<: *hi_energies_default
617
+ CATDESC: Energy Table Minus Value for c
618
+ FIELDNAM: Energy Delta Minus
581
619
 
582
- hi-omni-energy_c_delta:
620
+ hi-omni-energy_c_plus:
583
621
  <<: *hi_energies_default
584
- CATDESC: Delta of energies for c
585
- FIELDNAM: Delta Energy
622
+ CATDESC: Energy Table Plus Value for c
623
+ FIELDNAM: Energy Delta Plus
586
624
 
587
625
  hi-omni-o:
588
626
  <<: *counters
@@ -594,13 +632,18 @@ hi-omni-o:
594
632
  hi-omni-energy_o:
595
633
  <<: *hi_energies_default
596
634
  CATDESC: Energy Table for o
597
- DELTA_MINUS_VAR: energy_o_delta
598
- DELTA_PLUS_VAR: energy_o_delta
635
+ DELTA_MINUS_VAR: energy_o_minus
636
+ DELTA_PLUS_VAR: energy_o_plus
599
637
 
600
- hi-omni-energy_o_delta:
638
+ hi-omni-energy_o_minus:
601
639
  <<: *hi_energies_default
602
- CATDESC: Delta of energies for o
603
- FIELDNAM: Delta Energy
640
+ CATDESC: Energy Table Minus Value for o
641
+ FIELDNAM: Energy Delta Minus
642
+
643
+ hi-omni-energy_o_plus:
644
+ <<: *hi_energies_default
645
+ CATDESC: Energy Table Plus Value for o
646
+ FIELDNAM: Energy Delta Plus
604
647
 
605
648
  hi-omni-ne_mg_si:
606
649
  <<: *counters
@@ -612,13 +655,18 @@ hi-omni-ne_mg_si:
612
655
  hi-omni-energy_ne_mg_si:
613
656
  <<: *hi_energies_default
614
657
  CATDESC: Energy Table for ne_mg_si
615
- DELTA_MINUS_VAR: energy_ne_mg_si_delta
616
- DELTA_PLUS_VAR: energy_ne_mg_si_delta
658
+ DELTA_MINUS_VAR: energy_ne_mg_si_minus
659
+ DELTA_PLUS_VAR: energy_ne_mg_si_plus
660
+
661
+ hi-omni-energy_ne_mg_si_minus:
662
+ <<: *hi_energies_default
663
+ CATDESC: Energy Table Minus Value for ne_mg_si
664
+ FIELDNAM: Energy Delta Minus
617
665
 
618
- hi-omni-energy_ne_mg_si_delta:
666
+ hi-omni-energy_ne_mg_si_plus:
619
667
  <<: *hi_energies_default
620
- CATDESC: Delta of energies for ne_mg_si
621
- FIELDNAM: Delta Energy
668
+ CATDESC: Energy Table Plus Value for ne_mg_si
669
+ FIELDNAM: Energy Delta Plus
622
670
 
623
671
  hi-omni-fe:
624
672
  <<: *counters
@@ -630,13 +678,18 @@ hi-omni-fe:
630
678
  hi-omni-energy_fe:
631
679
  <<: *hi_energies_default
632
680
  CATDESC: Energy Table for fe
633
- DELTA_MINUS_VAR: energy_fe_delta
634
- DELTA_PLUS_VAR: energy_fe_delta
681
+ DELTA_MINUS_VAR: energy_fe_minus
682
+ DELTA_PLUS_VAR: energy_fe_plus
635
683
 
636
- hi-omni-energy_fe_delta:
684
+ hi-omni-energy_fe_minus:
637
685
  <<: *hi_energies_default
638
- CATDESC: Delta of energies for fe
639
- FIELDNAM: Delta Energy
686
+ CATDESC: Energy Table Minus Value for fe
687
+ FIELDNAM: Energy Delta Minus
688
+
689
+ hi-omni-energy_fe_plus:
690
+ <<: *hi_energies_default
691
+ CATDESC: Energy Table Plus Value for fe
692
+ FIELDNAM: Energy Delta Plus
640
693
 
641
694
  hi-omni-uh:
642
695
  <<: *counters
@@ -648,13 +701,18 @@ hi-omni-uh:
648
701
  hi-omni-energy_uh:
649
702
  <<: *hi_energies_default
650
703
  CATDESC: Energy Table for uh
651
- DELTA_MINUS_VAR: energy_uh_delta
652
- DELTA_PLUS_VAR: energy_uh_delta
704
+ DELTA_MINUS_VAR: energy_uh_minus
705
+ DELTA_PLUS_VAR: energy_uh_plus
706
+
707
+ hi-omni-energy_uh_minus:
708
+ <<: *hi_energies_default
709
+ CATDESC: Energy Table Minus Value for uh
710
+ FIELDNAM: Energy Delta Minus
653
711
 
654
- hi-omni-energy_uh_delta:
712
+ hi-omni-energy_uh_plus:
655
713
  <<: *hi_energies_default
656
- CATDESC: Delta of energies for uh
657
- FIELDNAM: Delta Energy
714
+ CATDESC: Energy Table Plus Value for uh
715
+ FIELDNAM: Energy Delta Plus
658
716
 
659
717
  hi-omni-junk:
660
718
  <<: *counters
@@ -666,13 +724,18 @@ hi-omni-junk:
666
724
  hi-omni-energy_junk:
667
725
  <<: *hi_energies_default
668
726
  CATDESC: Energy Table for junk
669
- DELTA_MINUS_VAR: energy_junk_delta
670
- DELTA_PLUS_VAR: energy_junk_delta
727
+ DELTA_MINUS_VAR: energy_junk_minus
728
+ DELTA_PLUS_VAR: energy_junk_plus
671
729
 
672
- hi-omni-energy_junk_delta:
730
+ hi-omni-energy_junk_minus:
673
731
  <<: *hi_energies_default
674
- CATDESC: Delta of energies for junk
675
- FIELDNAM: Delta Energy
732
+ CATDESC: Energy Table Minus Value for junk
733
+ FIELDNAM: Energy Delta Minus
734
+
735
+ hi-omni-energy_junk_plus:
736
+ <<: *hi_energies_default
737
+ CATDESC: Energy Table Plus Value for junk
738
+ FIELDNAM: Energy Delta Plus
676
739
 
677
740
  # hi-priority
678
741
  hi-priority-Priority0:
@@ -720,13 +783,18 @@ hi-sectored-h:
720
783
  hi-sectored-energy_h:
721
784
  <<: *hi_energies_default
722
785
  CATDESC: Energy Table for H
723
- DELTA_MINUS_VAR: energy_h_delta
724
- DELTA_PLUS_VAR: energy_h_delta
786
+ DELTA_MINUS_VAR: energy_h_minus
787
+ DELTA_PLUS_VAR: energy_h_plus
788
+
789
+ hi-sectored-energy_h_minus:
790
+ <<: *hi_energies_default
791
+ CATDESC: Energy Table Minus Value for h
792
+ FIELDNAM: Energy Delta Minus
725
793
 
726
- hi-sectored-energy_h_delta:
794
+ hi-sectored-energy_h_plus:
727
795
  <<: *hi_energies_default
728
- CATDESC: Delta of energies for H
729
- FIELDNAM: Delta Energy
796
+ CATDESC: Energy Table Plus Value for h
797
+ FIELDNAM: Energy Delta Plus
730
798
 
731
799
  hi-sectored-he3he4:
732
800
  <<: *counters
@@ -742,13 +810,18 @@ hi-sectored-he3he4:
742
810
  hi-sectored-energy_he3he4:
743
811
  <<: *hi_energies_default
744
812
  CATDESC: Energy Table for He3He4
745
- DELTA_MINUS_VAR: energy_he3he4_delta
746
- DELTA_PLUS_VAR: energy_he3he4_delta
813
+ DELTA_MINUS_VAR: energy_he3he4_minus
814
+ DELTA_PLUS_VAR: energy_he3he4_plus
747
815
 
748
- hi-sectored-energy_he3he4_delta:
816
+ hi-sectored-energy_he3he4_minus:
749
817
  <<: *hi_energies_default
750
- CATDESC: Delta of energies for He3He4
751
- FIELDNAM: Delta Energy
818
+ CATDESC: Energy Table Minus Value for he3he4
819
+ FIELDNAM: Energy Delta Minus
820
+
821
+ hi-sectored-energy_he3he3_plus:
822
+ <<: *hi_energies_default
823
+ CATDESC: Energy Table Plus Value for he3he3
824
+ FIELDNAM: Energy Delta Plus
752
825
 
753
826
  hi-sectored-cno:
754
827
  <<: *counters
@@ -764,13 +837,18 @@ hi-sectored-cno:
764
837
  hi-sectored-energy_cno:
765
838
  <<: *hi_energies_default
766
839
  CATDESC: Energy Table for CNO
767
- DELTA_MINUS_VAR: energy_cno_delta
768
- DELTA_PLUS_VAR: energy_cno_delta
840
+ DELTA_MINUS_VAR: energy_cno_minus
841
+ DELTA_PLUS_VAR: energy_cno_plus
842
+
843
+ hi-sectored-energy_cno_minus:
844
+ <<: *hi_energies_default
845
+ CATDESC: Energy Table Minus Value for cno
846
+ FIELDNAM: Energy Delta Minus
769
847
 
770
- hi-sectored-energy_cno_delta:
848
+ hi-sectored-energy_cno_plus:
771
849
  <<: *hi_energies_default
772
- CATDESC: Delta of energies for CNO
773
- FIELDNAM: Delta Energy
850
+ CATDESC: Energy Table Plus Value for cno
851
+ FIELDNAM: Energy Delta Plus
774
852
 
775
853
  hi-sectored-fe:
776
854
  <<: *counters
@@ -786,16 +864,21 @@ hi-sectored-fe:
786
864
  hi-sectored-energy_fe:
787
865
  <<: *hi_energies_default
788
866
  CATDESC: Energy Table for Fe
789
- DELTA_MINUS_VAR: energy_fe_delta
790
- DELTA_PLUS_VAR: energy_fe_delta
867
+ DELTA_MINUS_VAR: energy_fe_minus
868
+ DELTA_PLUS_VAR: energy_fe_plus
791
869
 
792
- hi-sectored-energy_fe_delta:
870
+ hi-sectored-energy_fe_minus:
793
871
  <<: *hi_energies_default
794
- CATDESC: Delta of energies for Fe
795
- FIELDNAM: Delta Energy
872
+ CATDESC: Energy Table Minus Value for fe
873
+ FIELDNAM: Energy Delta Minus
874
+
875
+ hi-sectored-energy_fe_plus:
876
+ <<: *hi_energies_default
877
+ CATDESC: Energy Table Plus Value for fe
878
+ FIELDNAM: Energy Delta Plus
796
879
 
797
880
  # lo-counters-aggregated
798
- lo-counters-aggregated-TCR:
881
+ lo-counters-aggregated-tcr:
799
882
  <<: *events
800
883
  CATDESC: Triple Coincidence Rate
801
884
  FIELDNAM: Event A - Triple Coincidence Rate
@@ -804,7 +887,7 @@ lo-counters-aggregated-TCR:
804
887
  LABL_PTR_1: spin_sector_pairs_label
805
888
  LABL_PTR_2: esa_step_label
806
889
 
807
- lo-counters-aggregated-DCR:
890
+ lo-counters-aggregated-dcr:
808
891
  <<: *events
809
892
  CATDESC: Double Coincidence Rate
810
893
  FIELDNAM: Event B - Double Coincidence Rate
@@ -813,7 +896,7 @@ lo-counters-aggregated-DCR:
813
896
  LABL_PTR_1: spin_sector_pairs_label
814
897
  LABL_PTR_2: esa_step_label
815
898
 
816
- lo-counters-aggregated-TOFPlusAPD:
899
+ lo-counters-aggregated-tof_plus_apd:
817
900
  <<: *events
818
901
  CATDESC: TOF + APD
819
902
  FIELDNAM: Event C - TOF + APD
@@ -822,7 +905,7 @@ lo-counters-aggregated-TOFPlusAPD:
822
905
  LABL_PTR_1: spin_sector_pairs_label
823
906
  LABL_PTR_2: esa_step_label
824
907
 
825
- lo-counters-aggregated-TOFOnly:
908
+ lo-counters-aggregated-tof_only:
826
909
  <<: *events
827
910
  CATDESC: TOF Only
828
911
  FIELDNAM: Event D - TOF Only
@@ -831,7 +914,7 @@ lo-counters-aggregated-TOFOnly:
831
914
  LABL_PTR_1: spin_sector_pairs_label
832
915
  LABL_PTR_2: esa_step_label
833
916
 
834
- lo-counters-aggregated-PositionPlusAPD:
917
+ lo-counters-aggregated-position_plus_apd:
835
918
  <<: *events
836
919
  CATDESC: Position + APD
837
920
  FIELDNAM: Event E - Position + APD
@@ -840,7 +923,7 @@ lo-counters-aggregated-PositionPlusAPD:
840
923
  LABL_PTR_1: spin_sector_pairs_label
841
924
  LABL_PTR_2: esa_step_label
842
925
 
843
- lo-counters-aggregated-PositionOnly:
926
+ lo-counters-aggregated-position_only:
844
927
  <<: *events
845
928
  CATDESC: Position Only
846
929
  FIELDNAM: Event F - Position Only
@@ -849,7 +932,7 @@ lo-counters-aggregated-PositionOnly:
849
932
  LABL_PTR_1: spin_sector_pairs_label
850
933
  LABL_PTR_2: esa_step_label
851
934
 
852
- lo-counters-aggregated-STAorSTBPlusAPD:
935
+ lo-counters-aggregated-sta_or_stb_plus_apd:
853
936
  <<: *events
854
937
  CATDESC: STA or STB + APD
855
938
  FIELDNAM: Event G - STA or STB + APD
@@ -858,7 +941,7 @@ lo-counters-aggregated-STAorSTBPlusAPD:
858
941
  LABL_PTR_1: spin_sector_pairs_label
859
942
  LABL_PTR_2: esa_step_label
860
943
 
861
- lo-counters-aggregated-STAorSTBOnly:
944
+ lo-counters-aggregated-sta_or_stb_only:
862
945
  <<: *events
863
946
  CATDESC: STA or STB Only
864
947
  FIELDNAM: Event H - STA or STB Only
@@ -867,7 +950,7 @@ lo-counters-aggregated-STAorSTBOnly:
867
950
  LABL_PTR_1: spin_sector_pairs_label
868
951
  LABL_PTR_2: esa_step_label
869
952
 
870
- lo-counters-aggregated-Reserved1:
953
+ lo-counters-aggregated-reserved1:
871
954
  <<: *events
872
955
  CATDESC: Reserved
873
956
  FIELDNAM: Reserved 1
@@ -876,7 +959,7 @@ lo-counters-aggregated-Reserved1:
876
959
  LABL_PTR_1: spin_sector_pairs_label
877
960
  LABL_PTR_2: esa_step_label
878
961
 
879
- lo-counters-aggregated-Reserved2:
962
+ lo-counters-aggregated-reserved2:
880
963
  <<: *events
881
964
  CATDESC: Reserved
882
965
  FIELDNAM: Reserved 2
@@ -885,7 +968,7 @@ lo-counters-aggregated-Reserved2:
885
968
  LABL_PTR_1: spin_sector_pairs_label
886
969
  LABL_PTR_2: esa_step_label
887
970
 
888
- lo-counters-aggregated-SPOnly:
971
+ lo-counters-aggregated-sp_only:
889
972
  <<: *events
890
973
  CATDESC: SP Only
891
974
  FIELDNAM: Event K - SP Only
@@ -894,7 +977,7 @@ lo-counters-aggregated-SPOnly:
894
977
  LABL_PTR_1: spin_sector_pairs_label
895
978
  LABL_PTR_2: esa_step_label
896
979
 
897
- lo-counters-aggregated-APDOnly:
980
+ lo-counters-aggregated-apd_only:
898
981
  <<: *events
899
982
  CATDESC: APD Only
900
983
  FIELDNAM: Event L - APD Only
@@ -903,7 +986,7 @@ lo-counters-aggregated-APDOnly:
903
986
  LABL_PTR_1: spin_sector_pairs_label
904
987
  LABL_PTR_2: esa_step_label
905
988
 
906
- lo-counters-aggregated-LowTOFCutoff:
989
+ lo-counters-aggregated-low_tof_cutoff:
907
990
  <<: *events
908
991
  CATDESC: Low TOF Cutoff
909
992
  FIELDNAM: Low TOF Cutoff
@@ -912,7 +995,7 @@ lo-counters-aggregated-LowTOFCutoff:
912
995
  LABL_PTR_1: spin_sector_pairs_label
913
996
  LABL_PTR_2: esa_step_label
914
997
 
915
- lo-counters-aggregated-STA:
998
+ lo-counters-aggregated-sta:
916
999
  <<: *events
917
1000
  CATDESC: Start A
918
1001
  FIELDNAM: Singles - Start-A (STA)
@@ -921,7 +1004,7 @@ lo-counters-aggregated-STA:
921
1004
  LABL_PTR_1: spin_sector_pairs_label
922
1005
  LABL_PTR_2: esa_step_label
923
1006
 
924
- lo-counters-aggregated-STB:
1007
+ lo-counters-aggregated-stb:
925
1008
  <<: *events
926
1009
  CATDESC: Start B
927
1010
  FIELDNAM: Singles - Start-B (STB)
@@ -930,7 +1013,7 @@ lo-counters-aggregated-STB:
930
1013
  LABL_PTR_1: spin_sector_pairs_label
931
1014
  LABL_PTR_2: esa_step_label
932
1015
 
933
- lo-counters-aggregated-SP:
1016
+ lo-counters-aggregated-sp:
934
1017
  <<: *events
935
1018
  CATDESC: Stop
936
1019
  FIELDNAM: Singles - Stop (SP)
@@ -939,7 +1022,7 @@ lo-counters-aggregated-SP:
939
1022
  LABL_PTR_1: spin_sector_pairs_label
940
1023
  LABL_PTR_2: esa_step_label
941
1024
 
942
- lo-counters-aggregated-TotalPositionCount:
1025
+ lo-counters-aggregated-total_position_count:
943
1026
  <<: *events
944
1027
  CATDESC: Total Position Count
945
1028
  FIELDNAM: Singles - Total Position Count
@@ -948,7 +1031,7 @@ lo-counters-aggregated-TotalPositionCount:
948
1031
  LABL_PTR_1: spin_sector_pairs_label
949
1032
  LABL_PTR_2: esa_step_label
950
1033
 
951
- lo-counters-aggregated-InvalidPositionCount:
1034
+ lo-counters-aggregated-invalid_position_count:
952
1035
  <<: *events
953
1036
  CATDESC: Invalid Position Count
954
1037
  FIELDNAM: Singles - Invalid Position Count
@@ -957,7 +1040,7 @@ lo-counters-aggregated-InvalidPositionCount:
957
1040
  LABL_PTR_1: spin_sector_pairs_label
958
1041
  LABL_PTR_2: esa_step_label
959
1042
 
960
- lo-counters-aggregated-ASIC1FlagInvalid:
1043
+ lo-counters-aggregated-asic1_flag_invalid:
961
1044
  <<: *events
962
1045
  CATDESC: ASIC 1 Flag Invalid
963
1046
  FIELDNAM: ASIC 1 Flag Invalid Count
@@ -966,7 +1049,7 @@ lo-counters-aggregated-ASIC1FlagInvalid:
966
1049
  LABL_PTR_1: spin_sector_pairs_label
967
1050
  LABL_PTR_2: esa_step_label
968
1051
 
969
- lo-counters-aggregated-ASIC2FlagInvalid:
1052
+ lo-counters-aggregated-asic2_flag_invalid:
970
1053
  <<: *events
971
1054
  CATDESC: ASIC 2 Flag Invalid
972
1055
  FIELDNAM: ASIC 2 Flag Invalid Count
@@ -975,7 +1058,7 @@ lo-counters-aggregated-ASIC2FlagInvalid:
975
1058
  LABL_PTR_1: spin_sector_pairs_label
976
1059
  LABL_PTR_2: esa_step_label
977
1060
 
978
- lo-counters-aggregated-ASIC1ChannelInvalid:
1061
+ lo-counters-aggregated-asic1_channel_invalid:
979
1062
  <<: *events
980
1063
  CATDESC: ASIC 1 Channel Invalid
981
1064
  FIELDNAM: ASIC 1 Channel Invalid Count
@@ -984,7 +1067,7 @@ lo-counters-aggregated-ASIC1ChannelInvalid:
984
1067
  LABL_PTR_1: spin_sector_pairs_label
985
1068
  LABL_PTR_2: esa_step_label
986
1069
 
987
- lo-counters-aggregated-ASIC2ChannelInvalid:
1070
+ lo-counters-aggregated-asic2_channel_invalid:
988
1071
  <<: *events
989
1072
  CATDESC: ASIC 2 Channel Invalid
990
1073
  FIELDNAM: ASIC 2 Channel Invalid Count
@@ -993,7 +1076,7 @@ lo-counters-aggregated-ASIC2ChannelInvalid:
993
1076
  LABL_PTR_1: spin_sector_pairs_label
994
1077
  LABL_PTR_2: esa_step_label
995
1078
 
996
- lo-counters-aggregated-TEC4TimeoutTOFNoPos:
1079
+ lo-counters-aggregated-tec4_timeout_tof_no_pos:
997
1080
  <<: *events
998
1081
  CATDESC: TEC-4 Timeout TOF no Position
999
1082
  FIELDNAM: TEC-4 Timeout Count; TOF, No Position
@@ -1002,7 +1085,7 @@ lo-counters-aggregated-TEC4TimeoutTOFNoPos:
1002
1085
  LABL_PTR_1: spin_sector_pairs_label
1003
1086
  LABL_PTR_2: esa_step_label
1004
1087
 
1005
- lo-counters-aggregated-TEC4TimeoutPosNoTOF:
1088
+ lo-counters-aggregated-tec4_timeout_pos_no_tof:
1006
1089
  <<: *events
1007
1090
  CATDESC: TEC-4 Timeout Position no TOF
1008
1091
  FIELDNAM: TEC-4 Timeout Count; Position, No TOF
@@ -1011,7 +1094,7 @@ lo-counters-aggregated-TEC4TimeoutPosNoTOF:
1011
1094
  LABL_PTR_1: spin_sector_pairs_label
1012
1095
  LABL_PTR_2: esa_step_label
1013
1096
 
1014
- lo-counters-aggregated-TEC4TimeoutNoPosTOF:
1097
+ lo-counters-aggregated-tec4_timeout_no_pos_tof:
1015
1098
  <<: *events
1016
1099
  CATDESC: TEC-4 Timeout No Position or TOF
1017
1100
  FIELDNAM: TEC-4 Timeout Count; No Position or TOF
@@ -1020,7 +1103,7 @@ lo-counters-aggregated-TEC4TimeoutNoPosTOF:
1020
1103
  LABL_PTR_1: spin_sector_pairs_label
1021
1104
  LABL_PTR_2: esa_step_label
1022
1105
 
1023
- lo-counters-aggregated-TEC5TimeoutTOFNoPos:
1106
+ lo-counters-aggregated-tec5_timeout_tof_no_pos:
1024
1107
  <<: *events
1025
1108
  CATDESC: TEC-5 Timeout TOF no Position
1026
1109
  FIELDNAM: TEC-5 Timeout Count; TOF, No Position
@@ -1029,7 +1112,7 @@ lo-counters-aggregated-TEC5TimeoutTOFNoPos:
1029
1112
  LABL_PTR_1: spin_sector_pairs_label
1030
1113
  LABL_PTR_2: esa_step_label
1031
1114
 
1032
- lo-counters-aggregated-TEC5TimeoutPosNoTOF:
1115
+ lo-counters-aggregated-tec5_timeout_pos_no_tof:
1033
1116
  <<: *events
1034
1117
  CATDESC: TEC-5 Timeout Position no TOF
1035
1118
  FIELDNAM: TEC-5 Timeout Count; Position, No TOF
@@ -1038,7 +1121,7 @@ lo-counters-aggregated-TEC5TimeoutPosNoTOF:
1038
1121
  LABL_PTR_1: spin_sector_pairs_label
1039
1122
  LABL_PTR_2: esa_step_label
1040
1123
 
1041
- lo-counters-aggregated-TEC5TimeoutNoPosTOF:
1124
+ lo-counters-aggregated-tec5_timeout_no_pos_tof:
1042
1125
  <<: *events
1043
1126
  CATDESC: TEC-5 Timeout No Position or TOF
1044
1127
  FIELDNAM: TEC-5 Timeout Count; No Position or TOF
@@ -1489,7 +1572,10 @@ lo-ialirt-fe_hiq:
1489
1572
  VALIDMAX: *max_uint24
1490
1573
 
1491
1574
  # <=== Direct Events Attributes ===>
1492
- P0_APD_ID:
1575
+ # TODO: The lo-direct-events product defines "gain" with different values
1576
+ # than what is found in hi-direct-events. Come up with a way to
1577
+ # distinguish these in the code.
1578
+ p0_apd_id:
1493
1579
  <<: *direct_events
1494
1580
  CATDESC: Priority 0 APD ID
1495
1581
  DEPEND_1: event_num
@@ -1497,7 +1583,7 @@ P0_APD_ID:
1497
1583
  LABL_PTR_1: event_num_label
1498
1584
  VALIDMAX: 32
1499
1585
 
1500
- P0_APDEnergy:
1586
+ p0_apd_energy:
1501
1587
  <<: *direct_events
1502
1588
  CATDESC: Priority 0 APD Energy
1503
1589
  DEPEND_1: event_num
@@ -1506,7 +1592,7 @@ P0_APDEnergy:
1506
1592
  LABL_PTR_1: event_num_label
1507
1593
  VALIDMAX: 512
1508
1594
 
1509
- P0_APDGain:
1595
+ p0_gain:
1510
1596
  <<: *direct_events
1511
1597
  CATDESC: Priority 0 APD Gain
1512
1598
  DEPEND_1: event_num
@@ -1514,14 +1600,14 @@ P0_APDGain:
1514
1600
  LABL_PTR_1: event_num_label
1515
1601
  VALIDMAX: 1
1516
1602
 
1517
- P0_DataQuality:
1603
+ p0_data_quality:
1518
1604
  <<: *direct_events
1519
1605
  CATDESC: Priority 0 Data Quality
1520
1606
  FIELDNAM: Priority 0 Data Quality
1521
1607
  LABLAXIS: " "
1522
1608
  VALIDMAX: 1
1523
1609
 
1524
- P0_EnergyStep:
1610
+ p0_energy_step:
1525
1611
  <<: *direct_events
1526
1612
  CATDESC: Priority 0 Energy Step
1527
1613
  DEPEND_1: event_num
@@ -1529,15 +1615,7 @@ P0_EnergyStep:
1529
1615
  LABL_PTR_1: event_num_label
1530
1616
  VALIDMAX: 128
1531
1617
 
1532
- P0_ERGE:
1533
- <<: *direct_events
1534
- CATDESC: Priority 0 Energy Range
1535
- DEPEND_1: event_num
1536
- FIELDNAM: Priority 0 Energy Range
1537
- LABL_PTR_1: event_num_label
1538
- VALIDMAX: 4
1539
-
1540
- P0_MultiFlag:
1618
+ p0_multi_flag:
1541
1619
  <<: *direct_events
1542
1620
  CATDESC: Priority 0 Multi Flag
1543
1621
  DEPEND_1: event_num
@@ -1545,14 +1623,14 @@ P0_MultiFlag:
1545
1623
  LABL_PTR_1: event_num_label
1546
1624
  VALIDMAX: 1
1547
1625
 
1548
- P0_NumEvents:
1626
+ p0_num_events:
1549
1627
  <<: *direct_events
1550
1628
  CATDESC: Priority 0 Number of Events
1551
1629
  FIELDNAM: Priority 0 Number of Events
1552
1630
  FILLVAL: 65535
1553
1631
  LABLAXIS: " "
1554
1632
 
1555
- P0_PHAType:
1633
+ p0_type:
1556
1634
  <<: *direct_events
1557
1635
  CATDESC: Priority 0 PHA Type
1558
1636
  DEPEND_1: event_num
@@ -1560,7 +1638,7 @@ P0_PHAType:
1560
1638
  LABL_PTR_1: event_num_label
1561
1639
  VALIDMAX: 4
1562
1640
 
1563
- P0_Position:
1641
+ p0_position:
1564
1642
  <<: *direct_events
1565
1643
  CATDESC: Priority 0 Position
1566
1644
  DEPEND_1: event_num
@@ -1568,7 +1646,7 @@ P0_Position:
1568
1646
  LABL_PTR_1: event_num_label
1569
1647
  VALIDMAX: 32
1570
1648
 
1571
- P0_SpinAngle:
1649
+ p0_spin_sector:
1572
1650
  <<: *direct_events
1573
1651
  CATDESC: Priority 0 Spin Angle
1574
1652
  DEPEND_1: event_num
@@ -1576,7 +1654,7 @@ P0_SpinAngle:
1576
1654
  LABL_PTR_1: event_num_label
1577
1655
  VALIDMAX: 128
1578
1656
 
1579
- P0_SpinNumber:
1657
+ p0_spin_number:
1580
1658
  <<: *direct_events
1581
1659
  CATDESC: Priority 0 Spin Number
1582
1660
  DEPEND_1: event_num
@@ -1584,7 +1662,7 @@ P0_SpinNumber:
1584
1662
  LABL_PTR_1: event_num_label
1585
1663
  VALIDMAX: 32
1586
1664
 
1587
- P0_SSD_ID:
1665
+ p0_ssd_id:
1588
1666
  <<: *direct_events
1589
1667
  CATDESC: Priority 0 SSD ID or Azimuth Angle
1590
1668
  DEPEND_1: event_num
@@ -1592,7 +1670,7 @@ P0_SSD_ID:
1592
1670
  LABL_PTR_1: event_num_label
1593
1671
  VALIDMAX: 32
1594
1672
 
1595
- P0_SSDEnergy:
1673
+ p0_ssd_energy:
1596
1674
  <<: *direct_events
1597
1675
  CATDESC: Priority 0 APD Energy
1598
1676
  DEPEND_1: event_num
@@ -1600,7 +1678,7 @@ P0_SSDEnergy:
1600
1678
  LABL_PTR_1: event_num_label
1601
1679
  VALIDMAX: 2048
1602
1680
 
1603
- P0_TOF:
1681
+ p0_tof:
1604
1682
  <<: *direct_events
1605
1683
  CATDESC: Priority 0 Time of Flight
1606
1684
  DEPEND_1: event_num
@@ -1609,7 +1687,7 @@ P0_TOF:
1609
1687
  LABL_PTR_1: event_num_label
1610
1688
  VALIDMAX: 1024
1611
1689
 
1612
- P0_Type:
1690
+ p0_type:
1613
1691
  <<: *direct_events
1614
1692
  CATDESC: Priority 0 Type
1615
1693
  DEPEND_1: event_num
@@ -1617,7 +1695,7 @@ P0_Type:
1617
1695
  LABL_PTR_1: event_num_label
1618
1696
  VALIDMAX: 3
1619
1697
 
1620
- P1_APD_ID:
1698
+ p1_apd_id:
1621
1699
  <<: *direct_events
1622
1700
  CATDESC: Priority 1 APD ID
1623
1701
  DEPEND_1: event_num
@@ -1625,7 +1703,7 @@ P1_APD_ID:
1625
1703
  LABL_PTR_1: event_num_label
1626
1704
  VALIDMAX: 32
1627
1705
 
1628
- P1_APDEnergy:
1706
+ p1_apd_energy:
1629
1707
  <<: *direct_events
1630
1708
  CATDESC: Priority 1 APD Energy
1631
1709
  DEPEND_1: event_num
@@ -1634,7 +1712,7 @@ P1_APDEnergy:
1634
1712
  LABL_PTR_1: event_num_label
1635
1713
  VALIDMAX: 512
1636
1714
 
1637
- P1_APDGain:
1715
+ p1_gain:
1638
1716
  <<: *direct_events
1639
1717
  CATDESC: Priority 1 APD Gain
1640
1718
  DEPEND_1: event_num
@@ -1642,14 +1720,14 @@ P1_APDGain:
1642
1720
  LABL_PTR_1: event_num_label
1643
1721
  VALIDMAX: 1
1644
1722
 
1645
- P1_DataQuality:
1723
+ p1_data_quality:
1646
1724
  <<: *direct_events
1647
1725
  CATDESC: Priority 1 Data Quality
1648
1726
  FIELDNAM: Priority 1 Data Quality
1649
1727
  LABLAXIS: " "
1650
1728
  VALIDMAX: 1
1651
1729
 
1652
- P1_EnergyStep:
1730
+ p1_energy_step:
1653
1731
  <<: *direct_events
1654
1732
  CATDESC: Priority 1 Energy Step
1655
1733
  DEPEND_1: event_num
@@ -1657,15 +1735,7 @@ P1_EnergyStep:
1657
1735
  LABL_PTR_1: event_num_label
1658
1736
  VALIDMAX: 128
1659
1737
 
1660
- P1_ERGE:
1661
- <<: *direct_events
1662
- CATDESC: Priority 1 Energy Range
1663
- DEPEND_1: event_num
1664
- FIELDNAM: Priority 1 Energy Range
1665
- LABL_PTR_1: event_num_label
1666
- VALIDMAX: 4
1667
-
1668
- P1_MultiFlag:
1738
+ p1_multi_flag:
1669
1739
  <<: *direct_events
1670
1740
  CATDESC: Priority 1 Multi Flag
1671
1741
  DEPEND_1: event_num
@@ -1673,14 +1743,14 @@ P1_MultiFlag:
1673
1743
  LABL_PTR_1: event_num_label
1674
1744
  VALIDMAX: 1
1675
1745
 
1676
- P1_NumEvents:
1746
+ p1_num_events:
1677
1747
  <<: *direct_events
1678
1748
  CATDESC: Priority 1 Number of Events
1679
1749
  FIELDNAM: Priority 1 Number of Events
1680
1750
  FILLVAL: 65535
1681
1751
  LABLAXIS: " "
1682
1752
 
1683
- P1_PHAType:
1753
+ p1_type:
1684
1754
  <<: *direct_events
1685
1755
  CATDESC: Priority 1 PHA Type
1686
1756
  DEPEND_1: event_num
@@ -1688,7 +1758,7 @@ P1_PHAType:
1688
1758
  LABL_PTR_1: event_num_label
1689
1759
  VALIDMAX: 4
1690
1760
 
1691
- P1_Position:
1761
+ p1_position:
1692
1762
  <<: *direct_events
1693
1763
  CATDESC: Priority 1 Position
1694
1764
  DEPEND_1: event_num
@@ -1696,7 +1766,7 @@ P1_Position:
1696
1766
  LABL_PTR_1: event_num_label
1697
1767
  VALIDMAX: 32
1698
1768
 
1699
- P1_SpinAngle:
1769
+ p1_spin_sector:
1700
1770
  <<: *direct_events
1701
1771
  CATDESC: Priority 1 Spin Angle
1702
1772
  DEPEND_1: event_num
@@ -1704,7 +1774,7 @@ P1_SpinAngle:
1704
1774
  LABL_PTR_1: event_num_label
1705
1775
  VALIDMAX: 128
1706
1776
 
1707
- P1_SpinNumber:
1777
+ p1_spin_number:
1708
1778
  <<: *direct_events
1709
1779
  CATDESC: Priority 1 Spin Number
1710
1780
  DEPEND_1: event_num
@@ -1712,7 +1782,7 @@ P1_SpinNumber:
1712
1782
  LABL_PTR_1: event_num_label
1713
1783
  VALIDMAX: 32
1714
1784
 
1715
- P1_SSD_ID:
1785
+ p1_ssd_id:
1716
1786
  <<: *direct_events
1717
1787
  CATDESC: Priority 1 SSD ID or Azimuth Angle
1718
1788
  DEPEND_1: event_num
@@ -1720,7 +1790,7 @@ P1_SSD_ID:
1720
1790
  LABL_PTR_1: event_num_label
1721
1791
  VALIDMAX: 32
1722
1792
 
1723
- P1_SSDEnergy:
1793
+ p1_ssd_energy:
1724
1794
  <<: *direct_events
1725
1795
  CATDESC: Priority 1 APD Energy
1726
1796
  DEPEND_1: event_num
@@ -1728,7 +1798,7 @@ P1_SSDEnergy:
1728
1798
  LABL_PTR_1: event_num_label
1729
1799
  VALIDMAX: 2048
1730
1800
 
1731
- P1_TOF:
1801
+ p1_tof:
1732
1802
  <<: *direct_events
1733
1803
  CATDESC: Priority 1 Time of Flight
1734
1804
  DEPEND_1: event_num
@@ -1737,7 +1807,7 @@ P1_TOF:
1737
1807
  LABL_PTR_1: event_num_label
1738
1808
  VALIDMAX: 1024
1739
1809
 
1740
- P1_Type:
1810
+ p1_Type:
1741
1811
  <<: *direct_events
1742
1812
  CATDESC: Priority 1 Type
1743
1813
  DEPEND_1: event_num
@@ -1745,7 +1815,7 @@ P1_Type:
1745
1815
  LABL_PTR_1: event_num_label
1746
1816
  VALIDMAX: 3
1747
1817
 
1748
- P2_APD_ID:
1818
+ p2_apd_id:
1749
1819
  <<: *direct_events
1750
1820
  CATDESC: Priority 2 APD ID
1751
1821
  DEPEND_1: event_num
@@ -1753,7 +1823,7 @@ P2_APD_ID:
1753
1823
  LABL_PTR_1: event_num_label
1754
1824
  VALIDMAX: 32
1755
1825
 
1756
- P2_APDEnergy:
1826
+ p2_apd_energy:
1757
1827
  <<: *direct_events
1758
1828
  CATDESC: Priority 2 APD Energy
1759
1829
  DEPEND_1: event_num
@@ -1762,7 +1832,7 @@ P2_APDEnergy:
1762
1832
  LABL_PTR_1: event_num_label
1763
1833
  VALIDMAX: 512
1764
1834
 
1765
- P2_APDGain:
1835
+ p2_gain:
1766
1836
  <<: *direct_events
1767
1837
  CATDESC: Priority 2 APD Gain
1768
1838
  DEPEND_1: event_num
@@ -1770,14 +1840,14 @@ P2_APDGain:
1770
1840
  LABL_PTR_1: event_num_label
1771
1841
  VALIDMAX: 1
1772
1842
 
1773
- P2_DataQuality:
1843
+ p2_data_quality:
1774
1844
  <<: *direct_events
1775
1845
  CATDESC: Priority 2 Data Quality
1776
1846
  FIELDNAM: Priority 2 Data Quality
1777
1847
  LABLAXIS: " "
1778
1848
  VALIDMAX: 1
1779
1849
 
1780
- P2_EnergyStep:
1850
+ p2_energy_step:
1781
1851
  <<: *direct_events
1782
1852
  CATDESC: Priority 2 Energy Step
1783
1853
  DEPEND_1: event_num
@@ -1785,15 +1855,7 @@ P2_EnergyStep:
1785
1855
  LABL_PTR_1: event_num_label
1786
1856
  VALIDMAX: 128
1787
1857
 
1788
- P2_ERGE:
1789
- <<: *direct_events
1790
- CATDESC: Priority 2 Energy Range
1791
- DEPEND_1: event_num
1792
- FIELDNAM: Priority 2 Energy Range
1793
- LABL_PTR_1: event_num_label
1794
- VALIDMAX: 4
1795
-
1796
- P2_MultiFlag:
1858
+ p2_multi_flag:
1797
1859
  <<: *direct_events
1798
1860
  CATDESC: Priority 2 Multi Flag
1799
1861
  DEPEND_1: event_num
@@ -1801,14 +1863,14 @@ P2_MultiFlag:
1801
1863
  LABL_PTR_1: event_num_label
1802
1864
  VALIDMAX: 1
1803
1865
 
1804
- P2_NumEvents:
1866
+ p2_num_events:
1805
1867
  <<: *direct_events
1806
1868
  CATDESC: Priority 2 Number of Events
1807
1869
  FIELDNAM: Priority 2 Number of Events
1808
1870
  FILLVAL: 65535
1809
1871
  LABLAXIS: " "
1810
1872
 
1811
- P2_PHAType:
1873
+ p2_type:
1812
1874
  <<: *direct_events
1813
1875
  CATDESC: Priority 2 PHA Type
1814
1876
  DEPEND_1: event_num
@@ -1816,7 +1878,7 @@ P2_PHAType:
1816
1878
  LABL_PTR_1: event_num_label
1817
1879
  VALIDMAX: 4
1818
1880
 
1819
- P2_Position:
1881
+ p2_position:
1820
1882
  <<: *direct_events
1821
1883
  CATDESC: Priority 2 Position
1822
1884
  DEPEND_1: event_num
@@ -1824,7 +1886,7 @@ P2_Position:
1824
1886
  LABL_PTR_1: event_num_label
1825
1887
  VALIDMAX: 32
1826
1888
 
1827
- P2_SpinAngle:
1889
+ p2_spin_sector:
1828
1890
  <<: *direct_events
1829
1891
  CATDESC: Priority 2 Spin Angle
1830
1892
  DEPEND_1: event_num
@@ -1832,7 +1894,7 @@ P2_SpinAngle:
1832
1894
  LABL_PTR_1: event_num_label
1833
1895
  VALIDMAX: 128
1834
1896
 
1835
- P2_SpinNumber:
1897
+ p2_spin_number:
1836
1898
  <<: *direct_events
1837
1899
  CATDESC: Priority 2 Spin Number
1838
1900
  DEPEND_1: event_num
@@ -1840,7 +1902,7 @@ P2_SpinNumber:
1840
1902
  LABL_PTR_1: event_num_label
1841
1903
  VALIDMAX: 32
1842
1904
 
1843
- P2_SSD_ID:
1905
+ p2_ssd_id:
1844
1906
  <<: *direct_events
1845
1907
  CATDESC: Priority 2 SSD ID or Azimuth Angle
1846
1908
  DEPEND_1: event_num
@@ -1848,7 +1910,7 @@ P2_SSD_ID:
1848
1910
  LABL_PTR_1: event_num_label
1849
1911
  VALIDMAX: 32
1850
1912
 
1851
- P2_SSDEnergy:
1913
+ p2_ssd_energy:
1852
1914
  <<: *direct_events
1853
1915
  CATDESC: Priority 2 APD Energy
1854
1916
  DEPEND_1: event_num
@@ -1856,7 +1918,7 @@ P2_SSDEnergy:
1856
1918
  LABL_PTR_1: event_num_label
1857
1919
  VALIDMAX: 2048
1858
1920
 
1859
- P2_TOF:
1921
+ p2_tof:
1860
1922
  <<: *direct_events
1861
1923
  CATDESC: Priority 2 Time of Flight
1862
1924
  DEPEND_1: event_num
@@ -1865,7 +1927,7 @@ P2_TOF:
1865
1927
  LABL_PTR_1: event_num_label
1866
1928
  VALIDMAX: 1024
1867
1929
 
1868
- P2_Type:
1930
+ p2_Type:
1869
1931
  <<: *direct_events
1870
1932
  CATDESC: Priority 2 Type
1871
1933
  DEPEND_1: event_num
@@ -1873,7 +1935,7 @@ P2_Type:
1873
1935
  LABL_PTR_1: event_num_label
1874
1936
  VALIDMAX: 3
1875
1937
 
1876
- P3_APD_ID:
1938
+ p3_apd_id:
1877
1939
  <<: *direct_events
1878
1940
  CATDESC: Priority 3 APD ID
1879
1941
  DEPEND_1: event_num
@@ -1881,7 +1943,7 @@ P3_APD_ID:
1881
1943
  LABL_PTR_1: event_num_label
1882
1944
  VALIDMAX: 32
1883
1945
 
1884
- P3_APDEnergy:
1946
+ p3_apd_energy:
1885
1947
  <<: *direct_events
1886
1948
  CATDESC: Priority 3 APD Energy
1887
1949
  DEPEND_1: event_num
@@ -1890,7 +1952,7 @@ P3_APDEnergy:
1890
1952
  LABL_PTR_1: event_num_label
1891
1953
  VALIDMAX: 512
1892
1954
 
1893
- P3_APDGain:
1955
+ p3_gain:
1894
1956
  <<: *direct_events
1895
1957
  CATDESC: Priority 3 APD Gain
1896
1958
  DEPEND_1: event_num
@@ -1898,14 +1960,14 @@ P3_APDGain:
1898
1960
  LABL_PTR_1: event_num_label
1899
1961
  VALIDMAX: 1
1900
1962
 
1901
- P3_DataQuality:
1963
+ p3_data_quality:
1902
1964
  <<: *direct_events
1903
1965
  CATDESC: Priority 3 Data Quality
1904
1966
  FIELDNAM: Priority 3 Data Quality
1905
1967
  LABLAXIS: " "
1906
1968
  VALIDMAX: 1
1907
1969
 
1908
- P3_EnergyStep:
1970
+ p3_energy_step:
1909
1971
  <<: *direct_events
1910
1972
  CATDESC: Priority 3 Energy Step
1911
1973
  DEPEND_1: event_num
@@ -1913,15 +1975,7 @@ P3_EnergyStep:
1913
1975
  LABL_PTR_1: event_num_label
1914
1976
  VALIDMAX: 128
1915
1977
 
1916
- P3_ERGE:
1917
- <<: *direct_events
1918
- CATDESC: Priority 3 Energy Range
1919
- DEPEND_1: event_num
1920
- FIELDNAM: Priority 3 Energy Range
1921
- LABL_PTR_1: event_num_label
1922
- VALIDMAX: 4
1923
-
1924
- P3_MultiFlag:
1978
+ p3_multi_flag:
1925
1979
  <<: *direct_events
1926
1980
  CATDESC: Priority 3 Multi Flag
1927
1981
  DEPEND_1: event_num
@@ -1929,14 +1983,14 @@ P3_MultiFlag:
1929
1983
  LABL_PTR_1: event_num_label
1930
1984
  VALIDMAX: 1
1931
1985
 
1932
- P3_NumEvents:
1986
+ p3_num_events:
1933
1987
  <<: *direct_events
1934
1988
  CATDESC: Priority 3 Number of Events
1935
1989
  FIELDNAM: Priority 3 Number of Events
1936
1990
  FILLVAL: 65535
1937
1991
  LABLAXIS: " "
1938
1992
 
1939
- P3_PHAType:
1993
+ p3_type:
1940
1994
  <<: *direct_events
1941
1995
  CATDESC: Priority 3 PHA Type
1942
1996
  DEPEND_1: event_num
@@ -1944,7 +1998,7 @@ P3_PHAType:
1944
1998
  LABL_PTR_1: event_num_label
1945
1999
  VALIDMAX: 4
1946
2000
 
1947
- P3_Position:
2001
+ p3_position:
1948
2002
  <<: *direct_events
1949
2003
  CATDESC: Priority 3 Position
1950
2004
  DEPEND_1: event_num
@@ -1952,7 +2006,7 @@ P3_Position:
1952
2006
  LABL_PTR_1: event_num_label
1953
2007
  VALIDMAX: 32
1954
2008
 
1955
- P3_SpinAngle:
2009
+ p3_spin_sector:
1956
2010
  <<: *direct_events
1957
2011
  CATDESC: Priority 3 Spin Angle
1958
2012
  DEPEND_1: event_num
@@ -1960,7 +2014,7 @@ P3_SpinAngle:
1960
2014
  LABL_PTR_1: event_num_label
1961
2015
  VALIDMAX: 128
1962
2016
 
1963
- P3_SpinNumber:
2017
+ p3_spin_number:
1964
2018
  <<: *direct_events
1965
2019
  CATDESC: Priority 3 Spin Number
1966
2020
  DEPEND_1: event_num
@@ -1968,7 +2022,7 @@ P3_SpinNumber:
1968
2022
  LABL_PTR_1: event_num_label
1969
2023
  VALIDMAX: 32
1970
2024
 
1971
- P3_SSD_ID:
2025
+ p3_ssd_id:
1972
2026
  <<: *direct_events
1973
2027
  CATDESC: Priority 3 SSD ID or Azimuth Angle
1974
2028
  DEPEND_1: event_num
@@ -1976,7 +2030,7 @@ P3_SSD_ID:
1976
2030
  LABL_PTR_1: event_num_label
1977
2031
  VALIDMAX: 32
1978
2032
 
1979
- P3_SSDEnergy:
2033
+ p3_ssd_energy:
1980
2034
  <<: *direct_events
1981
2035
  CATDESC: Priority 3 APD Energy
1982
2036
  DEPEND_1: event_num
@@ -1984,7 +2038,7 @@ P3_SSDEnergy:
1984
2038
  LABL_PTR_1: event_num_label
1985
2039
  VALIDMAX: 2048
1986
2040
 
1987
- P3_TOF:
2041
+ p3_tof:
1988
2042
  <<: *direct_events
1989
2043
  CATDESC: Priority 3 Time of Flight
1990
2044
  DEPEND_1: event_num
@@ -1993,7 +2047,7 @@ P3_TOF:
1993
2047
  LABL_PTR_1: event_num_label
1994
2048
  VALIDMAX: 1024
1995
2049
 
1996
- P3_Type:
2050
+ p3_Type:
1997
2051
  <<: *direct_events
1998
2052
  CATDESC: Priority 3 Type
1999
2053
  DEPEND_1: event_num
@@ -2001,7 +2055,7 @@ P3_Type:
2001
2055
  LABL_PTR_1: event_num_label
2002
2056
  VALIDMAX: 3
2003
2057
 
2004
- P4_APD_ID:
2058
+ p4_apd_id:
2005
2059
  <<: *direct_events
2006
2060
  CATDESC: Priority 4 APD ID
2007
2061
  DEPEND_1: event_num
@@ -2009,7 +2063,7 @@ P4_APD_ID:
2009
2063
  LABL_PTR_1: event_num_label
2010
2064
  VALIDMAX: 32
2011
2065
 
2012
- P4_APDEnergy:
2066
+ p4_apd_energy:
2013
2067
  <<: *direct_events
2014
2068
  CATDESC: Priority 4 APD Energy
2015
2069
  DEPEND_1: event_num
@@ -2018,7 +2072,7 @@ P4_APDEnergy:
2018
2072
  LABL_PTR_1: event_num_label
2019
2073
  VALIDMAX: 512
2020
2074
 
2021
- P4_APDGain:
2075
+ p4_gain:
2022
2076
  <<: *direct_events
2023
2077
  CATDESC: Priority 4 APD Gain
2024
2078
  DEPEND_1: event_num
@@ -2026,14 +2080,14 @@ P4_APDGain:
2026
2080
  LABL_PTR_1: event_num_label
2027
2081
  VALIDMAX: 1
2028
2082
 
2029
- P4_DataQuality:
2083
+ p4_data_quality:
2030
2084
  <<: *direct_events
2031
2085
  CATDESC: Priority 4 Data Quality
2032
2086
  FIELDNAM: Priority 4 Data Quality
2033
2087
  LABLAXIS: " "
2034
2088
  VALIDMAX: 1
2035
2089
 
2036
- P4_EnergyStep:
2090
+ p4_energy_step:
2037
2091
  <<: *direct_events
2038
2092
  CATDESC: Priority 4 Energy Step
2039
2093
  DEPEND_1: event_num
@@ -2041,15 +2095,7 @@ P4_EnergyStep:
2041
2095
  LABL_PTR_1: event_num_label
2042
2096
  VALIDMAX: 128
2043
2097
 
2044
- P4_ERGE:
2045
- <<: *direct_events
2046
- CATDESC: Priority 4 Energy Range
2047
- DEPEND_1: event_num
2048
- FIELDNAM: Priority 4 Energy Range
2049
- LABL_PTR_1: event_num_label
2050
- VALIDMAX: 4
2051
-
2052
- P4_MultiFlag:
2098
+ p4_multi_flag:
2053
2099
  <<: *direct_events
2054
2100
  CATDESC: Priority 4 Multi Flag
2055
2101
  DEPEND_1: event_num
@@ -2057,14 +2103,14 @@ P4_MultiFlag:
2057
2103
  LABL_PTR_1: event_num_label
2058
2104
  VALIDMAX: 1
2059
2105
 
2060
- P4_NumEvents:
2106
+ p4_num_events:
2061
2107
  <<: *direct_events
2062
2108
  CATDESC: Priority 4 Number of Events
2063
2109
  FIELDNAM: Priority 4 Number of Events
2064
2110
  FILLVAL: 65535
2065
2111
  LABLAXIS: " "
2066
2112
 
2067
- P4_PHAType:
2113
+ p4_type:
2068
2114
  <<: *direct_events
2069
2115
  CATDESC: Priority 4 PHA Type
2070
2116
  DEPEND_1: event_num
@@ -2072,7 +2118,7 @@ P4_PHAType:
2072
2118
  LABL_PTR_1: event_num_label
2073
2119
  VALIDMAX: 4
2074
2120
 
2075
- P4_Position:
2121
+ p4_position:
2076
2122
  <<: *direct_events
2077
2123
  CATDESC: Priority 4 Position
2078
2124
  DEPEND_1: event_num
@@ -2080,7 +2126,7 @@ P4_Position:
2080
2126
  LABL_PTR_1: event_num_label
2081
2127
  VALIDMAX: 32
2082
2128
 
2083
- P4_SpinAngle:
2129
+ p4_spin_sector:
2084
2130
  <<: *direct_events
2085
2131
  CATDESC: Priority 4 Spin Angle
2086
2132
  DEPEND_1: event_num
@@ -2088,7 +2134,7 @@ P4_SpinAngle:
2088
2134
  LABL_PTR_1: event_num_label
2089
2135
  VALIDMAX: 128
2090
2136
 
2091
- P4_SpinNumber:
2137
+ p4_spin_number:
2092
2138
  <<: *direct_events
2093
2139
  CATDESC: Priority 4 Spin Number
2094
2140
  DEPEND_1: event_num
@@ -2096,7 +2142,7 @@ P4_SpinNumber:
2096
2142
  LABL_PTR_1: event_num_label
2097
2143
  VALIDMAX: 32
2098
2144
 
2099
- P4_SSD_ID:
2145
+ p4_ssd_id:
2100
2146
  <<: *direct_events
2101
2147
  CATDESC: Priority 4 SSD ID or Azimuth Angle
2102
2148
  DEPEND_1: event_num
@@ -2104,7 +2150,7 @@ P4_SSD_ID:
2104
2150
  LABL_PTR_1: event_num_label
2105
2151
  VALIDMAX: 32
2106
2152
 
2107
- P4_SSDEnergy:
2153
+ p4_ssd_energy:
2108
2154
  <<: *direct_events
2109
2155
  CATDESC: Priority 4 APD Energy
2110
2156
  DEPEND_1: event_num
@@ -2112,7 +2158,7 @@ P4_SSDEnergy:
2112
2158
  LABL_PTR_1: event_num_label
2113
2159
  VALIDMAX: 2048
2114
2160
 
2115
- P4_TOF:
2161
+ p4_tof:
2116
2162
  <<: *direct_events
2117
2163
  CATDESC: Priority 4 Time of Flight
2118
2164
  DEPEND_1: event_num
@@ -2121,7 +2167,7 @@ P4_TOF:
2121
2167
  LABL_PTR_1: event_num_label
2122
2168
  VALIDMAX: 1024
2123
2169
 
2124
- P4_Type:
2170
+ p4_Type:
2125
2171
  <<: *direct_events
2126
2172
  CATDESC: Priority 4 Type
2127
2173
  DEPEND_1: event_num
@@ -2129,7 +2175,7 @@ P4_Type:
2129
2175
  LABL_PTR_1: event_num_label
2130
2176
  VALIDMAX: 3
2131
2177
 
2132
- P5_APD_ID:
2178
+ p5_apd_id:
2133
2179
  <<: *direct_events
2134
2180
  CATDESC: Priority 5 APD ID
2135
2181
  DEPEND_1: event_num
@@ -2137,7 +2183,7 @@ P5_APD_ID:
2137
2183
  LABL_PTR_1: event_num_label
2138
2184
  VALIDMAX: 32
2139
2185
 
2140
- P5_APDEnergy:
2186
+ p5_apd_energy:
2141
2187
  <<: *direct_events
2142
2188
  CATDESC: Priority 5 APD Energy
2143
2189
  DEPEND_1: event_num
@@ -2146,7 +2192,7 @@ P5_APDEnergy:
2146
2192
  LABL_PTR_1: event_num_label
2147
2193
  VALIDMAX: 512
2148
2194
 
2149
- P5_APDGain:
2195
+ p5_gain:
2150
2196
  <<: *direct_events
2151
2197
  CATDESC: Priority 5 APD Gain
2152
2198
  DEPEND_1: event_num
@@ -2154,14 +2200,14 @@ P5_APDGain:
2154
2200
  LABL_PTR_1: event_num_label
2155
2201
  VALIDMAX: 1
2156
2202
 
2157
- P5_DataQuality:
2203
+ p5_data_quality:
2158
2204
  <<: *direct_events
2159
2205
  CATDESC: Priority 5 Data Quality
2160
2206
  FIELDNAM: Priority 5 Data Quality
2161
2207
  LABLAXIS: " "
2162
2208
  VALIDMAX: 1
2163
2209
 
2164
- P5_EnergyStep:
2210
+ p5_energy_step:
2165
2211
  <<: *direct_events
2166
2212
  CATDESC: Priority 5 Energy Step
2167
2213
  DEPEND_1: event_num
@@ -2169,15 +2215,7 @@ P5_EnergyStep:
2169
2215
  LABL_PTR_1: event_num_label
2170
2216
  VALIDMAX: 128
2171
2217
 
2172
- P5_ERGE:
2173
- <<: *direct_events
2174
- CATDESC: Priority 5 Energy Range
2175
- DEPEND_1: event_num
2176
- FIELDNAM: Priority 5 Energy Range
2177
- LABL_PTR_1: event_num_label
2178
- VALIDMAX: 4
2179
-
2180
- P5_MultiFlag:
2218
+ p5_multi_flag:
2181
2219
  <<: *direct_events
2182
2220
  CATDESC: Priority 5 Multi Flag
2183
2221
  DEPEND_1: event_num
@@ -2185,14 +2223,14 @@ P5_MultiFlag:
2185
2223
  LABL_PTR_1: event_num_label
2186
2224
  VALIDMAX: 1
2187
2225
 
2188
- P5_NumEvents:
2226
+ p5_num_events:
2189
2227
  <<: *direct_events
2190
2228
  CATDESC: Priority 5 Number of Events
2191
2229
  FIELDNAM: Priority 5 Number of Events
2192
2230
  FILLVAL: 65535
2193
2231
  LABLAXIS: " "
2194
2232
 
2195
- P5_PHAType:
2233
+ p5_type:
2196
2234
  <<: *direct_events
2197
2235
  CATDESC: Priority 5 PHA Type
2198
2236
  DEPEND_1: event_num
@@ -2200,7 +2238,7 @@ P5_PHAType:
2200
2238
  LABL_PTR_1: event_num_label
2201
2239
  VALIDMAX: 4
2202
2240
 
2203
- P5_Position:
2241
+ p5_position:
2204
2242
  <<: *direct_events
2205
2243
  CATDESC: Priority 5 Position
2206
2244
  DEPEND_1: event_num
@@ -2208,7 +2246,7 @@ P5_Position:
2208
2246
  LABL_PTR_1: event_num_label
2209
2247
  VALIDMAX: 32
2210
2248
 
2211
- P5_SpinAngle:
2249
+ p5_spin_sector:
2212
2250
  <<: *direct_events
2213
2251
  CATDESC: Priority 5 Spin Angle
2214
2252
  DEPEND_1: event_num
@@ -2216,7 +2254,7 @@ P5_SpinAngle:
2216
2254
  LABL_PTR_1: event_num_label
2217
2255
  VALIDMAX: 128
2218
2256
 
2219
- P5_SpinNumber:
2257
+ p5_spin_number:
2220
2258
  <<: *direct_events
2221
2259
  CATDESC: Priority 5 Spin Number
2222
2260
  DEPEND_1: event_num
@@ -2224,7 +2262,7 @@ P5_SpinNumber:
2224
2262
  LABL_PTR_1: event_num_label
2225
2263
  VALIDMAX: 32
2226
2264
 
2227
- P5_SSD_ID:
2265
+ p5_ssd_id:
2228
2266
  <<: *direct_events
2229
2267
  CATDESC: Priority 5 SSD ID or Azimuth Angle
2230
2268
  DEPEND_1: event_num
@@ -2232,7 +2270,7 @@ P5_SSD_ID:
2232
2270
  LABL_PTR_1: event_num_label
2233
2271
  VALIDMAX: 32
2234
2272
 
2235
- P5_SSDEnergy:
2273
+ p5_ssd_energy:
2236
2274
  <<: *direct_events
2237
2275
  CATDESC: Priority 5 APD Energy
2238
2276
  DEPEND_1: event_num
@@ -2240,7 +2278,7 @@ P5_SSDEnergy:
2240
2278
  LABL_PTR_1: event_num_label
2241
2279
  VALIDMAX: 2048
2242
2280
 
2243
- P5_TOF:
2281
+ p5_tof:
2244
2282
  <<: *direct_events
2245
2283
  CATDESC: Priority 5 Time of Flight
2246
2284
  DEPEND_1: event_num
@@ -2249,7 +2287,7 @@ P5_TOF:
2249
2287
  LABL_PTR_1: event_num_label
2250
2288
  VALIDMAX: 1024
2251
2289
 
2252
- P5_Type:
2290
+ p5_Type:
2253
2291
  <<: *direct_events
2254
2292
  CATDESC: Priority 5 Type
2255
2293
  DEPEND_1: event_num
@@ -2257,7 +2295,7 @@ P5_Type:
2257
2295
  LABL_PTR_1: event_num_label
2258
2296
  VALIDMAX: 3
2259
2297
 
2260
- P6_APD_ID:
2298
+ p6_apd_id:
2261
2299
  <<: *direct_events
2262
2300
  CATDESC: Priority 6 APD ID
2263
2301
  DEPEND_1: event_num
@@ -2265,7 +2303,7 @@ P6_APD_ID:
2265
2303
  LABL_PTR_1: event_num_label
2266
2304
  VALIDMAX: 32
2267
2305
 
2268
- P6_APDEnergy:
2306
+ p6_apd_energy:
2269
2307
  <<: *direct_events
2270
2308
  CATDESC: Priority 6 APD Energy
2271
2309
  DEPEND_1: event_num
@@ -2274,7 +2312,7 @@ P6_APDEnergy:
2274
2312
  LABL_PTR_1: event_num_label
2275
2313
  VALIDMAX: 512
2276
2314
 
2277
- P6_APDGain:
2315
+ p6_gain:
2278
2316
  <<: *direct_events
2279
2317
  CATDESC: Priority 6 APD Gain
2280
2318
  DEPEND_1: event_num
@@ -2282,14 +2320,14 @@ P6_APDGain:
2282
2320
  LABL_PTR_1: event_num_label
2283
2321
  VALIDMAX: 1
2284
2322
 
2285
- P6_DataQuality:
2323
+ p6_data_quality:
2286
2324
  <<: *direct_events
2287
2325
  CATDESC: Priority 6 Data Quality
2288
2326
  FIELDNAM: Priority 6 Data Quality
2289
2327
  LABLAXIS: " "
2290
2328
  VALIDMAX: 1
2291
2329
 
2292
- P6_EnergyStep:
2330
+ p6_energy_step:
2293
2331
  <<: *direct_events
2294
2332
  CATDESC: Priority 6 Energy Step
2295
2333
  DEPEND_1: event_num
@@ -2297,7 +2335,7 @@ P6_EnergyStep:
2297
2335
  LABL_PTR_1: event_num_label
2298
2336
  VALIDMAX: 128
2299
2337
 
2300
- P6_MultiFlag:
2338
+ p6_multi_flag:
2301
2339
  <<: *direct_events
2302
2340
  CATDESC: Priority 6 Multi Flag
2303
2341
  DEPEND_1: event_num
@@ -2305,14 +2343,14 @@ P6_MultiFlag:
2305
2343
  LABL_PTR_1: event_num_label
2306
2344
  VALIDMAX: 1
2307
2345
 
2308
- P6_NumEvents:
2346
+ p6_num_events:
2309
2347
  <<: *direct_events
2310
2348
  CATDESC: Priority 6 Number of Events
2311
2349
  FIELDNAM: Priority 6 Number of Events
2312
2350
  FILLVAL: 65535
2313
2351
  LABLAXIS: " "
2314
2352
 
2315
- P6_PHAType:
2353
+ p6_type:
2316
2354
  <<: *direct_events
2317
2355
  CATDESC: Priority 6 PHA Type
2318
2356
  DEPEND_1: event_num
@@ -2320,7 +2358,7 @@ P6_PHAType:
2320
2358
  LABL_PTR_1: event_num_label
2321
2359
  VALIDMAX: 4
2322
2360
 
2323
- P6_Position:
2361
+ p6_position:
2324
2362
  <<: *direct_events
2325
2363
  CATDESC: Priority 6 Position
2326
2364
  DEPEND_1: event_num
@@ -2328,7 +2366,7 @@ P6_Position:
2328
2366
  LABL_PTR_1: event_num_label
2329
2367
  VALIDMAX: 32
2330
2368
 
2331
- P6_SpinAngle:
2369
+ p6_spin_sector:
2332
2370
  <<: *direct_events
2333
2371
  CATDESC: Priority 6 Spin Angle
2334
2372
  DEPEND_1: event_num
@@ -2336,7 +2374,7 @@ P6_SpinAngle:
2336
2374
  LABL_PTR_1: event_num_label
2337
2375
  VALIDMAX: 128
2338
2376
 
2339
- P6_TOF:
2377
+ p6_tof:
2340
2378
  <<: *direct_events
2341
2379
  CATDESC: Priority 6 Time of Flight
2342
2380
  DEPEND_1: event_num
@@ -2345,7 +2383,7 @@ P6_TOF:
2345
2383
  LABL_PTR_1: event_num_label
2346
2384
  VALIDMAX: 1024
2347
2385
 
2348
- P7_APD_ID:
2386
+ p7_apd_id:
2349
2387
  <<: *direct_events
2350
2388
  CATDESC: Priority 7 APD ID
2351
2389
  DEPEND_1: event_num
@@ -2353,7 +2391,7 @@ P7_APD_ID:
2353
2391
  LABL_PTR_1: event_num_label
2354
2392
  VALIDMAX: 32
2355
2393
 
2356
- P7_APDEnergy:
2394
+ p7_apd_energy:
2357
2395
  <<: *direct_events
2358
2396
  CATDESC: Priority 7 APD Energy
2359
2397
  DEPEND_1: event_num
@@ -2362,7 +2400,7 @@ P7_APDEnergy:
2362
2400
  LABL_PTR_1: event_num_label
2363
2401
  VALIDMAX: 512
2364
2402
 
2365
- P7_APDGain:
2403
+ p7_gain:
2366
2404
  <<: *direct_events
2367
2405
  CATDESC: Priority 7 APD Gain
2368
2406
  DEPEND_1: event_num
@@ -2370,14 +2408,14 @@ P7_APDGain:
2370
2408
  LABL_PTR_1: event_num_label
2371
2409
  VALIDMAX: 1
2372
2410
 
2373
- P7_DataQuality:
2411
+ p7_data_quality:
2374
2412
  <<: *direct_events
2375
2413
  CATDESC: Priority 7 Data Quality
2376
2414
  FIELDNAM: Priority 7 Data Quality
2377
2415
  LABLAXIS: " "
2378
2416
  VALIDMAX: 1
2379
2417
 
2380
- P7_EnergyStep:
2418
+ p7_energy_step:
2381
2419
  <<: *direct_events
2382
2420
  CATDESC: Priority 7 Energy Step
2383
2421
  DEPEND_1: event_num
@@ -2385,7 +2423,7 @@ P7_EnergyStep:
2385
2423
  LABL_PTR_1: event_num_label
2386
2424
  VALIDMAX: 128
2387
2425
 
2388
- P7_MultiFlag:
2426
+ p7_multi_flag:
2389
2427
  <<: *direct_events
2390
2428
  CATDESC: Priority 7 Multi Flag
2391
2429
  DEPEND_1: event_num
@@ -2393,14 +2431,14 @@ P7_MultiFlag:
2393
2431
  LABL_PTR_1: event_num_label
2394
2432
  VALIDMAX: 1
2395
2433
 
2396
- P7_NumEvents:
2434
+ p7_num_events:
2397
2435
  <<: *direct_events
2398
2436
  CATDESC: Priority 7 Number of Events
2399
2437
  FIELDNAM: Priority 7 Number of Events
2400
2438
  FILLVAL: 65535
2401
2439
  LABLAXIS: " "
2402
2440
 
2403
- P7_PHAType:
2441
+ p7_type:
2404
2442
  <<: *direct_events
2405
2443
  CATDESC: Priority 7 PHA Type
2406
2444
  DEPEND_1: event_num
@@ -2408,7 +2446,7 @@ P7_PHAType:
2408
2446
  LABL_PTR_1: event_num_label
2409
2447
  VALIDMAX: 4
2410
2448
 
2411
- P7_Position:
2449
+ p7_position:
2412
2450
  <<: *direct_events
2413
2451
  CATDESC: Priority 7 Position
2414
2452
  DEPEND_1: event_num
@@ -2416,7 +2454,7 @@ P7_Position:
2416
2454
  LABL_PTR_1: event_num_label
2417
2455
  VALIDMAX: 32
2418
2456
 
2419
- P7_SpinAngle:
2457
+ p7_spin_sector:
2420
2458
  <<: *direct_events
2421
2459
  CATDESC: Priority 7 Spin Angle
2422
2460
  DEPEND_1: event_num
@@ -2424,7 +2462,7 @@ P7_SpinAngle:
2424
2462
  LABL_PTR_1: event_num_label
2425
2463
  VALIDMAX: 128
2426
2464
 
2427
- P7_TOF:
2465
+ p7_tof:
2428
2466
  <<: *direct_events
2429
2467
  CATDESC: Priority 7 Time of Flight
2430
2468
  DEPEND_1: event_num