imap-processing 0.18.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 (104) hide show
  1. imap_processing/_version.py +2 -2
  2. imap_processing/ancillary/ancillary_dataset_combiner.py +161 -1
  3. imap_processing/cdf/config/imap_codice_l1a_variable_attrs.yaml +301 -274
  4. imap_processing/cdf/config/imap_codice_l1b_variable_attrs.yaml +28 -28
  5. imap_processing/cdf/config/imap_codice_l2_variable_attrs.yaml +1044 -203
  6. imap_processing/cdf/config/imap_constant_attrs.yaml +4 -2
  7. imap_processing/cdf/config/imap_glows_l1b_variable_attrs.yaml +12 -0
  8. imap_processing/cdf/config/imap_hi_global_cdf_attrs.yaml +5 -0
  9. imap_processing/cdf/config/imap_hit_global_cdf_attrs.yaml +10 -4
  10. imap_processing/cdf/config/imap_idex_l2a_variable_attrs.yaml +33 -4
  11. imap_processing/cdf/config/imap_idex_l2b_variable_attrs.yaml +8 -91
  12. imap_processing/cdf/config/imap_idex_l2c_variable_attrs.yaml +106 -16
  13. imap_processing/cdf/config/imap_lo_l1a_variable_attrs.yaml +4 -15
  14. imap_processing/cdf/config/imap_lo_l1c_variable_attrs.yaml +189 -98
  15. imap_processing/cdf/config/imap_mag_global_cdf_attrs.yaml +85 -2
  16. imap_processing/cdf/config/imap_mag_l1c_variable_attrs.yaml +24 -1
  17. imap_processing/cdf/config/imap_ultra_l1b_variable_attrs.yaml +12 -4
  18. imap_processing/cdf/config/imap_ultra_l1c_variable_attrs.yaml +50 -7
  19. imap_processing/cli.py +95 -41
  20. imap_processing/codice/codice_l1a.py +131 -31
  21. imap_processing/codice/codice_l2.py +118 -10
  22. imap_processing/codice/constants.py +740 -595
  23. imap_processing/decom.py +1 -4
  24. imap_processing/ena_maps/ena_maps.py +32 -25
  25. imap_processing/ena_maps/utils/naming.py +8 -2
  26. imap_processing/glows/ancillary/imap_glows_exclusions-by-instr-team_20250923_v002.dat +10 -0
  27. imap_processing/glows/ancillary/imap_glows_map-of-excluded-regions_20250923_v002.dat +393 -0
  28. imap_processing/glows/ancillary/imap_glows_map-of-uv-sources_20250923_v002.dat +593 -0
  29. imap_processing/glows/ancillary/imap_glows_pipeline_settings_20250923_v002.json +54 -0
  30. imap_processing/glows/ancillary/imap_glows_suspected-transients_20250923_v002.dat +10 -0
  31. imap_processing/glows/l1b/glows_l1b.py +99 -9
  32. imap_processing/glows/l1b/glows_l1b_data.py +350 -38
  33. imap_processing/glows/l2/glows_l2.py +11 -0
  34. imap_processing/hi/hi_l1a.py +124 -3
  35. imap_processing/hi/hi_l1b.py +154 -71
  36. imap_processing/hi/hi_l2.py +84 -51
  37. imap_processing/hi/utils.py +153 -8
  38. imap_processing/hit/l0/constants.py +3 -0
  39. imap_processing/hit/l0/decom_hit.py +3 -6
  40. imap_processing/hit/l1a/hit_l1a.py +311 -21
  41. imap_processing/hit/l1b/hit_l1b.py +54 -126
  42. imap_processing/hit/l2/hit_l2.py +6 -6
  43. imap_processing/ialirt/calculate_ingest.py +219 -0
  44. imap_processing/ialirt/constants.py +12 -2
  45. imap_processing/ialirt/generate_coverage.py +15 -2
  46. imap_processing/ialirt/l0/ialirt_spice.py +5 -2
  47. imap_processing/ialirt/l0/parse_mag.py +293 -42
  48. imap_processing/ialirt/l0/process_hit.py +5 -3
  49. imap_processing/ialirt/l0/process_swapi.py +41 -25
  50. imap_processing/ialirt/process_ephemeris.py +70 -14
  51. imap_processing/idex/idex_l0.py +2 -2
  52. imap_processing/idex/idex_l1a.py +2 -3
  53. imap_processing/idex/idex_l1b.py +2 -3
  54. imap_processing/idex/idex_l2a.py +130 -4
  55. imap_processing/idex/idex_l2b.py +158 -143
  56. imap_processing/idex/idex_utils.py +1 -3
  57. imap_processing/lo/l0/lo_science.py +25 -24
  58. imap_processing/lo/l1b/lo_l1b.py +3 -3
  59. imap_processing/lo/l1c/lo_l1c.py +116 -50
  60. imap_processing/lo/l2/lo_l2.py +29 -29
  61. imap_processing/lo/lo_ancillary.py +55 -0
  62. imap_processing/mag/l1a/mag_l1a.py +1 -0
  63. imap_processing/mag/l1a/mag_l1a_data.py +26 -0
  64. imap_processing/mag/l1b/mag_l1b.py +3 -2
  65. imap_processing/mag/l1c/interpolation_methods.py +14 -15
  66. imap_processing/mag/l1c/mag_l1c.py +23 -6
  67. imap_processing/mag/l1d/mag_l1d.py +57 -14
  68. imap_processing/mag/l1d/mag_l1d_data.py +167 -30
  69. imap_processing/mag/l2/mag_l2_data.py +10 -2
  70. imap_processing/quality_flags.py +9 -1
  71. imap_processing/spice/geometry.py +76 -33
  72. imap_processing/spice/pointing_frame.py +0 -6
  73. imap_processing/spice/repoint.py +29 -2
  74. imap_processing/spice/spin.py +28 -8
  75. imap_processing/spice/time.py +12 -22
  76. imap_processing/swapi/l1/swapi_l1.py +10 -4
  77. imap_processing/swapi/l2/swapi_l2.py +15 -17
  78. imap_processing/swe/l1b/swe_l1b.py +1 -2
  79. imap_processing/ultra/constants.py +1 -24
  80. imap_processing/ultra/l0/ultra_utils.py +9 -11
  81. imap_processing/ultra/l1a/ultra_l1a.py +1 -2
  82. imap_processing/ultra/l1b/cullingmask.py +6 -3
  83. imap_processing/ultra/l1b/de.py +81 -23
  84. imap_processing/ultra/l1b/extendedspin.py +13 -10
  85. imap_processing/ultra/l1b/lookup_utils.py +281 -28
  86. imap_processing/ultra/l1b/quality_flag_filters.py +10 -1
  87. imap_processing/ultra/l1b/ultra_l1b_culling.py +161 -3
  88. imap_processing/ultra/l1b/ultra_l1b_extended.py +253 -47
  89. imap_processing/ultra/l1c/helio_pset.py +97 -24
  90. imap_processing/ultra/l1c/l1c_lookup_utils.py +256 -0
  91. imap_processing/ultra/l1c/spacecraft_pset.py +83 -16
  92. imap_processing/ultra/l1c/ultra_l1c.py +6 -2
  93. imap_processing/ultra/l1c/ultra_l1c_culling.py +85 -0
  94. imap_processing/ultra/l1c/ultra_l1c_pset_bins.py +385 -277
  95. imap_processing/ultra/l2/ultra_l2.py +0 -1
  96. imap_processing/ultra/utils/ultra_l1_utils.py +28 -3
  97. imap_processing/utils.py +3 -4
  98. {imap_processing-0.18.0.dist-info → imap_processing-0.19.0.dist-info}/METADATA +2 -2
  99. {imap_processing-0.18.0.dist-info → imap_processing-0.19.0.dist-info}/RECORD +102 -95
  100. imap_processing/idex/idex_l2c.py +0 -84
  101. imap_processing/spice/kernels.py +0 -187
  102. {imap_processing-0.18.0.dist-info → imap_processing-0.19.0.dist-info}/LICENSE +0 -0
  103. {imap_processing-0.18.0.dist-info → imap_processing-0.19.0.dist-info}/WHEEL +0 -0
  104. {imap_processing-0.18.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
@@ -381,97 +383,97 @@ sw_bias_gain_mode:
381
383
 
382
384
  # The following are data product-specific
383
385
  # hi-counters-aggregated
384
- hi-counters-aggregated-DCR:
386
+ hi-counters-aggregated-dcr:
385
387
  <<: *events
386
388
  CATDESC: Event B - Double Coincidence Rate (DCR)
387
389
  FIELDNAM: DCRs
388
390
  LABLAXIS: "events"
389
391
 
390
- hi-counters-aggregated-STO:
392
+ hi-counters-aggregated-sto:
391
393
  <<: *events
392
394
  CATDESC: Event C - Start Only (STO)
393
395
  FIELDNAM: Start Only
394
396
  LABLAXIS: "events"
395
397
 
396
- hi-counters-aggregated-SPO:
398
+ hi-counters-aggregated-spo:
397
399
  <<: *events
398
400
  CATDESC: Event D - Stop Only (SPO)
399
401
  FIELDNAM: Stop Only
400
402
  LABLAXIS: "events"
401
403
 
402
- hi-counters-aggregated-Reserved1:
404
+ hi-counters-aggregated-reserved1:
403
405
  <<: *events
404
406
  CATDESC: Reserved 1
405
407
  FIELDNAM: Reserved 1
406
408
  LABLAXIS: "events"
407
409
 
408
- hi-counters-aggregated-MST:
410
+ hi-counters-aggregated-mst:
409
411
  <<: *events
410
412
  CATDESC: Event H - Multi Start (MST)
411
413
  FIELDNAM: Multi Start
412
414
  LABLAXIS: "events"
413
415
 
414
- hi-counters-aggregated-Reserved2:
416
+ hi-counters-aggregated-reserved2:
415
417
  <<: *events
416
418
  CATDESC: Reserved 2
417
419
  FIELDNAM: Reserved 2
418
420
  LABLAXIS: "events"
419
421
 
420
- hi-counters-aggregated-Reserved3:
422
+ hi-counters-aggregated-reserved3:
421
423
  <<: *events
422
424
  CATDESC: Reserved 3
423
425
  FIELDNAM: Reserved 3
424
426
  LABLAXIS: "events"
425
427
 
426
- hi-counters-aggregated-Reserved4:
428
+ hi-counters-aggregated-reserved4:
427
429
  <<: *events
428
430
  CATDESC: Reserved 4
429
431
  FIELDNAM: Reserved 4
430
432
  LABLAXIS: "events"
431
433
 
432
- hi-counters-aggregated-Reserved5:
434
+ hi-counters-aggregated-reserved5:
433
435
  <<: *events
434
436
  CATDESC: Reserved 5
435
437
  FIELDNAM: Reserved 5
436
438
  LABLAXIS: "events"
437
439
 
438
- hi-counters-aggregated-LowTOFCutoff:
440
+ hi-counters-aggregated-low_tof_cutoff:
439
441
  <<: *events
440
442
  CATDESC: Low TOF Cutoff
441
443
  FIELDNAM: Low TOF Cutoff
442
444
  LABLAXIS: "events"
443
445
 
444
- hi-counters-aggregated-Reserved6:
446
+ hi-counters-aggregated-reserved6:
445
447
  <<: *events
446
448
  CATDESC: Reserved 6
447
449
  FIELDNAM: Reserved 6
448
450
  LABLAXIS: "events"
449
451
 
450
- hi-counters-aggregated-Reserved7:
452
+ hi-counters-aggregated-reserved7:
451
453
  <<: *events
452
454
  CATDESC: Reserved 7
453
455
  FIELDNAM: Reserved 7
454
456
  LABLAXIS: "events"
455
457
 
456
- hi-counters-aggregated-ASIC1FlagInvalid:
458
+ hi-counters-aggregated-asic1_flag_invalid:
457
459
  <<: *events
458
460
  CATDESC: ASIC 1 Flag Invalid Count
459
461
  FIELDNAM: ASIC 1 Flag Invalid
460
462
  LABLAXIS: "events"
461
463
 
462
- hi-counters-aggregated-ASIC2FlagInvalid:
464
+ hi-counters-aggregated-asic2_flag_invalid:
463
465
  <<: *events
464
466
  CATDESC: ASIC 2 Flag Invalid Count
465
467
  FIELDNAM: ASIC 2 Flag Invalid
466
468
  LABLAXIS: "events"
467
469
 
468
- hi-counters-aggregated-ASIC1ChannelInvalid:
470
+ hi-counters-aggregated-asic1_channel_invalid:
469
471
  <<: *events
470
472
  CATDESC: ASIC 1 Channel Invalid Count
471
473
  FIELDNAM: ASIC 1 Channel Invalid
472
474
  LABLAXIS: "events"
473
475
 
474
- hi-counters-aggregated-ASIC2ChannelInvalid:
476
+ hi-counters-aggregated-asic2_channel_invalid:
475
477
  <<: *events
476
478
  CATDESC: ASIC 2 Channel Invalid Count
477
479
  FIELDNAM: ASIC 2 Channel Invalid
@@ -514,13 +516,18 @@ hi-ialirt-h:
514
516
  hi-ialirt-energy_h:
515
517
  <<: *hi_energies_default
516
518
  CATDESC: Energy Table for h
517
- DELTA_MINUS_VAR: energy_h_delta
518
- 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
519
526
 
520
- hi-ialirt-energy_h_delta:
527
+ hi-ialirt-energy_h_plus:
521
528
  <<: *hi_energies_default
522
- CATDESC: Delta of energies for h
523
- FIELDNAM: Delta Energy
529
+ CATDESC: Energy Table Plus Value for h
530
+ FIELDNAM: Energy Delta Plus
524
531
 
525
532
  # hi-omni
526
533
  hi-omni-h:
@@ -533,13 +540,18 @@ hi-omni-h:
533
540
  hi-omni-energy_h:
534
541
  <<: *hi_energies_default
535
542
  CATDESC: Energy Table for h
536
- DELTA_MINUS_VAR: energy_h_delta
537
- DELTA_PLUS_VAR: energy_h_delta
543
+ DELTA_MINUS_VAR: energy_h_minus
544
+ DELTA_PLUS_VAR: energy_h_plus
545
+
546
+ hi-omni-energy_h_minus:
547
+ <<: *hi_energies_default
548
+ CATDESC: Energy Table Minus Value for h
549
+ FIELDNAM: Energy Delta Minus
538
550
 
539
- hi-omni-energy_h_delta:
551
+ hi-omni-energy_h_plus:
540
552
  <<: *hi_energies_default
541
- CATDESC: Delta of energies for h
542
- FIELDNAM: Delta Energy
553
+ CATDESC: Energy Table Plus Value for h
554
+ FIELDNAM: Energy Delta Plus
543
555
 
544
556
  hi-omni-he3:
545
557
  <<: *counters
@@ -551,13 +563,18 @@ hi-omni-he3:
551
563
  hi-omni-energy_he3:
552
564
  <<: *hi_energies_default
553
565
  CATDESC: Energy Table for he3
554
- DELTA_MINUS_VAR: energy_he3_delta
555
- 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
556
573
 
557
- hi-omni-energy_he3_delta:
574
+ hi-omni-energy_he3_plus:
558
575
  <<: *hi_energies_default
559
- CATDESC: Delta of energies for he3
560
- FIELDNAM: Delta Energy
576
+ CATDESC: Energy Table Plus Value for he3
577
+ FIELDNAM: Energy Delta Plus
561
578
 
562
579
  hi-omni-he4:
563
580
  <<: *counters
@@ -569,13 +586,18 @@ hi-omni-he4:
569
586
  hi-omni-energy_he4:
570
587
  <<: *hi_energies_default
571
588
  CATDESC: Energy Table for he4
572
- DELTA_MINUS_VAR: energy_he4_delta
573
- DELTA_PLUS_VAR: energy_he4_delta
589
+ DELTA_MINUS_VAR: energy_he4_minus
590
+ DELTA_PLUS_VAR: energy_he4_plus
574
591
 
575
- hi-omni-energy_he4_delta:
592
+ hi-omni-energy_he4_minus:
576
593
  <<: *hi_energies_default
577
- CATDESC: Delta of energies for he4
578
- 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
579
601
 
580
602
  hi-omni-c:
581
603
  <<: *counters
@@ -587,13 +609,18 @@ hi-omni-c:
587
609
  hi-omni-energy_c:
588
610
  <<: *hi_energies_default
589
611
  CATDESC: Energy Table for c
590
- DELTA_MINUS_VAR: energy_c_delta
591
- 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
592
619
 
593
- hi-omni-energy_c_delta:
620
+ hi-omni-energy_c_plus:
594
621
  <<: *hi_energies_default
595
- CATDESC: Delta of energies for c
596
- FIELDNAM: Delta Energy
622
+ CATDESC: Energy Table Plus Value for c
623
+ FIELDNAM: Energy Delta Plus
597
624
 
598
625
  hi-omni-o:
599
626
  <<: *counters
@@ -605,13 +632,18 @@ hi-omni-o:
605
632
  hi-omni-energy_o:
606
633
  <<: *hi_energies_default
607
634
  CATDESC: Energy Table for o
608
- DELTA_MINUS_VAR: energy_o_delta
609
- DELTA_PLUS_VAR: energy_o_delta
635
+ DELTA_MINUS_VAR: energy_o_minus
636
+ DELTA_PLUS_VAR: energy_o_plus
610
637
 
611
- hi-omni-energy_o_delta:
638
+ hi-omni-energy_o_minus:
612
639
  <<: *hi_energies_default
613
- CATDESC: Delta of energies for o
614
- 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
615
647
 
616
648
  hi-omni-ne_mg_si:
617
649
  <<: *counters
@@ -623,13 +655,18 @@ hi-omni-ne_mg_si:
623
655
  hi-omni-energy_ne_mg_si:
624
656
  <<: *hi_energies_default
625
657
  CATDESC: Energy Table for ne_mg_si
626
- DELTA_MINUS_VAR: energy_ne_mg_si_delta
627
- 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
628
665
 
629
- hi-omni-energy_ne_mg_si_delta:
666
+ hi-omni-energy_ne_mg_si_plus:
630
667
  <<: *hi_energies_default
631
- CATDESC: Delta of energies for ne_mg_si
632
- FIELDNAM: Delta Energy
668
+ CATDESC: Energy Table Plus Value for ne_mg_si
669
+ FIELDNAM: Energy Delta Plus
633
670
 
634
671
  hi-omni-fe:
635
672
  <<: *counters
@@ -641,13 +678,18 @@ hi-omni-fe:
641
678
  hi-omni-energy_fe:
642
679
  <<: *hi_energies_default
643
680
  CATDESC: Energy Table for fe
644
- DELTA_MINUS_VAR: energy_fe_delta
645
- DELTA_PLUS_VAR: energy_fe_delta
681
+ DELTA_MINUS_VAR: energy_fe_minus
682
+ DELTA_PLUS_VAR: energy_fe_plus
646
683
 
647
- hi-omni-energy_fe_delta:
684
+ hi-omni-energy_fe_minus:
648
685
  <<: *hi_energies_default
649
- CATDESC: Delta of energies for fe
650
- 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
651
693
 
652
694
  hi-omni-uh:
653
695
  <<: *counters
@@ -659,13 +701,18 @@ hi-omni-uh:
659
701
  hi-omni-energy_uh:
660
702
  <<: *hi_energies_default
661
703
  CATDESC: Energy Table for uh
662
- DELTA_MINUS_VAR: energy_uh_delta
663
- 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
664
711
 
665
- hi-omni-energy_uh_delta:
712
+ hi-omni-energy_uh_plus:
666
713
  <<: *hi_energies_default
667
- CATDESC: Delta of energies for uh
668
- FIELDNAM: Delta Energy
714
+ CATDESC: Energy Table Plus Value for uh
715
+ FIELDNAM: Energy Delta Plus
669
716
 
670
717
  hi-omni-junk:
671
718
  <<: *counters
@@ -677,13 +724,18 @@ hi-omni-junk:
677
724
  hi-omni-energy_junk:
678
725
  <<: *hi_energies_default
679
726
  CATDESC: Energy Table for junk
680
- DELTA_MINUS_VAR: energy_junk_delta
681
- DELTA_PLUS_VAR: energy_junk_delta
727
+ DELTA_MINUS_VAR: energy_junk_minus
728
+ DELTA_PLUS_VAR: energy_junk_plus
682
729
 
683
- hi-omni-energy_junk_delta:
730
+ hi-omni-energy_junk_minus:
684
731
  <<: *hi_energies_default
685
- CATDESC: Delta of energies for junk
686
- 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
687
739
 
688
740
  # hi-priority
689
741
  hi-priority-Priority0:
@@ -731,13 +783,18 @@ hi-sectored-h:
731
783
  hi-sectored-energy_h:
732
784
  <<: *hi_energies_default
733
785
  CATDESC: Energy Table for H
734
- DELTA_MINUS_VAR: energy_h_delta
735
- 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
736
793
 
737
- hi-sectored-energy_h_delta:
794
+ hi-sectored-energy_h_plus:
738
795
  <<: *hi_energies_default
739
- CATDESC: Delta of energies for H
740
- FIELDNAM: Delta Energy
796
+ CATDESC: Energy Table Plus Value for h
797
+ FIELDNAM: Energy Delta Plus
741
798
 
742
799
  hi-sectored-he3he4:
743
800
  <<: *counters
@@ -753,13 +810,18 @@ hi-sectored-he3he4:
753
810
  hi-sectored-energy_he3he4:
754
811
  <<: *hi_energies_default
755
812
  CATDESC: Energy Table for He3He4
756
- DELTA_MINUS_VAR: energy_he3he4_delta
757
- DELTA_PLUS_VAR: energy_he3he4_delta
813
+ DELTA_MINUS_VAR: energy_he3he4_minus
814
+ DELTA_PLUS_VAR: energy_he3he4_plus
758
815
 
759
- hi-sectored-energy_he3he4_delta:
816
+ hi-sectored-energy_he3he4_minus:
760
817
  <<: *hi_energies_default
761
- CATDESC: Delta of energies for He3He4
762
- 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
763
825
 
764
826
  hi-sectored-cno:
765
827
  <<: *counters
@@ -775,13 +837,18 @@ hi-sectored-cno:
775
837
  hi-sectored-energy_cno:
776
838
  <<: *hi_energies_default
777
839
  CATDESC: Energy Table for CNO
778
- DELTA_MINUS_VAR: energy_cno_delta
779
- 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
780
847
 
781
- hi-sectored-energy_cno_delta:
848
+ hi-sectored-energy_cno_plus:
782
849
  <<: *hi_energies_default
783
- CATDESC: Delta of energies for CNO
784
- FIELDNAM: Delta Energy
850
+ CATDESC: Energy Table Plus Value for cno
851
+ FIELDNAM: Energy Delta Plus
785
852
 
786
853
  hi-sectored-fe:
787
854
  <<: *counters
@@ -797,16 +864,21 @@ hi-sectored-fe:
797
864
  hi-sectored-energy_fe:
798
865
  <<: *hi_energies_default
799
866
  CATDESC: Energy Table for Fe
800
- DELTA_MINUS_VAR: energy_fe_delta
801
- DELTA_PLUS_VAR: energy_fe_delta
867
+ DELTA_MINUS_VAR: energy_fe_minus
868
+ DELTA_PLUS_VAR: energy_fe_plus
802
869
 
803
- hi-sectored-energy_fe_delta:
870
+ hi-sectored-energy_fe_minus:
804
871
  <<: *hi_energies_default
805
- CATDESC: Delta of energies for Fe
806
- 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
807
879
 
808
880
  # lo-counters-aggregated
809
- lo-counters-aggregated-TCR:
881
+ lo-counters-aggregated-tcr:
810
882
  <<: *events
811
883
  CATDESC: Triple Coincidence Rate
812
884
  FIELDNAM: Event A - Triple Coincidence Rate
@@ -815,7 +887,7 @@ lo-counters-aggregated-TCR:
815
887
  LABL_PTR_1: spin_sector_pairs_label
816
888
  LABL_PTR_2: esa_step_label
817
889
 
818
- lo-counters-aggregated-DCR:
890
+ lo-counters-aggregated-dcr:
819
891
  <<: *events
820
892
  CATDESC: Double Coincidence Rate
821
893
  FIELDNAM: Event B - Double Coincidence Rate
@@ -824,7 +896,7 @@ lo-counters-aggregated-DCR:
824
896
  LABL_PTR_1: spin_sector_pairs_label
825
897
  LABL_PTR_2: esa_step_label
826
898
 
827
- lo-counters-aggregated-TOFPlusAPD:
899
+ lo-counters-aggregated-tof_plus_apd:
828
900
  <<: *events
829
901
  CATDESC: TOF + APD
830
902
  FIELDNAM: Event C - TOF + APD
@@ -833,7 +905,7 @@ lo-counters-aggregated-TOFPlusAPD:
833
905
  LABL_PTR_1: spin_sector_pairs_label
834
906
  LABL_PTR_2: esa_step_label
835
907
 
836
- lo-counters-aggregated-TOFOnly:
908
+ lo-counters-aggregated-tof_only:
837
909
  <<: *events
838
910
  CATDESC: TOF Only
839
911
  FIELDNAM: Event D - TOF Only
@@ -842,7 +914,7 @@ lo-counters-aggregated-TOFOnly:
842
914
  LABL_PTR_1: spin_sector_pairs_label
843
915
  LABL_PTR_2: esa_step_label
844
916
 
845
- lo-counters-aggregated-PositionPlusAPD:
917
+ lo-counters-aggregated-position_plus_apd:
846
918
  <<: *events
847
919
  CATDESC: Position + APD
848
920
  FIELDNAM: Event E - Position + APD
@@ -851,7 +923,7 @@ lo-counters-aggregated-PositionPlusAPD:
851
923
  LABL_PTR_1: spin_sector_pairs_label
852
924
  LABL_PTR_2: esa_step_label
853
925
 
854
- lo-counters-aggregated-PositionOnly:
926
+ lo-counters-aggregated-position_only:
855
927
  <<: *events
856
928
  CATDESC: Position Only
857
929
  FIELDNAM: Event F - Position Only
@@ -860,7 +932,7 @@ lo-counters-aggregated-PositionOnly:
860
932
  LABL_PTR_1: spin_sector_pairs_label
861
933
  LABL_PTR_2: esa_step_label
862
934
 
863
- lo-counters-aggregated-STAorSTBPlusAPD:
935
+ lo-counters-aggregated-sta_or_stb_plus_apd:
864
936
  <<: *events
865
937
  CATDESC: STA or STB + APD
866
938
  FIELDNAM: Event G - STA or STB + APD
@@ -869,7 +941,7 @@ lo-counters-aggregated-STAorSTBPlusAPD:
869
941
  LABL_PTR_1: spin_sector_pairs_label
870
942
  LABL_PTR_2: esa_step_label
871
943
 
872
- lo-counters-aggregated-STAorSTBOnly:
944
+ lo-counters-aggregated-sta_or_stb_only:
873
945
  <<: *events
874
946
  CATDESC: STA or STB Only
875
947
  FIELDNAM: Event H - STA or STB Only
@@ -878,7 +950,7 @@ lo-counters-aggregated-STAorSTBOnly:
878
950
  LABL_PTR_1: spin_sector_pairs_label
879
951
  LABL_PTR_2: esa_step_label
880
952
 
881
- lo-counters-aggregated-Reserved1:
953
+ lo-counters-aggregated-reserved1:
882
954
  <<: *events
883
955
  CATDESC: Reserved
884
956
  FIELDNAM: Reserved 1
@@ -887,7 +959,7 @@ lo-counters-aggregated-Reserved1:
887
959
  LABL_PTR_1: spin_sector_pairs_label
888
960
  LABL_PTR_2: esa_step_label
889
961
 
890
- lo-counters-aggregated-Reserved2:
962
+ lo-counters-aggregated-reserved2:
891
963
  <<: *events
892
964
  CATDESC: Reserved
893
965
  FIELDNAM: Reserved 2
@@ -896,7 +968,7 @@ lo-counters-aggregated-Reserved2:
896
968
  LABL_PTR_1: spin_sector_pairs_label
897
969
  LABL_PTR_2: esa_step_label
898
970
 
899
- lo-counters-aggregated-SPOnly:
971
+ lo-counters-aggregated-sp_only:
900
972
  <<: *events
901
973
  CATDESC: SP Only
902
974
  FIELDNAM: Event K - SP Only
@@ -905,7 +977,7 @@ lo-counters-aggregated-SPOnly:
905
977
  LABL_PTR_1: spin_sector_pairs_label
906
978
  LABL_PTR_2: esa_step_label
907
979
 
908
- lo-counters-aggregated-APDOnly:
980
+ lo-counters-aggregated-apd_only:
909
981
  <<: *events
910
982
  CATDESC: APD Only
911
983
  FIELDNAM: Event L - APD Only
@@ -914,7 +986,7 @@ lo-counters-aggregated-APDOnly:
914
986
  LABL_PTR_1: spin_sector_pairs_label
915
987
  LABL_PTR_2: esa_step_label
916
988
 
917
- lo-counters-aggregated-LowTOFCutoff:
989
+ lo-counters-aggregated-low_tof_cutoff:
918
990
  <<: *events
919
991
  CATDESC: Low TOF Cutoff
920
992
  FIELDNAM: Low TOF Cutoff
@@ -923,7 +995,7 @@ lo-counters-aggregated-LowTOFCutoff:
923
995
  LABL_PTR_1: spin_sector_pairs_label
924
996
  LABL_PTR_2: esa_step_label
925
997
 
926
- lo-counters-aggregated-STA:
998
+ lo-counters-aggregated-sta:
927
999
  <<: *events
928
1000
  CATDESC: Start A
929
1001
  FIELDNAM: Singles - Start-A (STA)
@@ -932,7 +1004,7 @@ lo-counters-aggregated-STA:
932
1004
  LABL_PTR_1: spin_sector_pairs_label
933
1005
  LABL_PTR_2: esa_step_label
934
1006
 
935
- lo-counters-aggregated-STB:
1007
+ lo-counters-aggregated-stb:
936
1008
  <<: *events
937
1009
  CATDESC: Start B
938
1010
  FIELDNAM: Singles - Start-B (STB)
@@ -941,7 +1013,7 @@ lo-counters-aggregated-STB:
941
1013
  LABL_PTR_1: spin_sector_pairs_label
942
1014
  LABL_PTR_2: esa_step_label
943
1015
 
944
- lo-counters-aggregated-SP:
1016
+ lo-counters-aggregated-sp:
945
1017
  <<: *events
946
1018
  CATDESC: Stop
947
1019
  FIELDNAM: Singles - Stop (SP)
@@ -950,7 +1022,7 @@ lo-counters-aggregated-SP:
950
1022
  LABL_PTR_1: spin_sector_pairs_label
951
1023
  LABL_PTR_2: esa_step_label
952
1024
 
953
- lo-counters-aggregated-TotalPositionCount:
1025
+ lo-counters-aggregated-total_position_count:
954
1026
  <<: *events
955
1027
  CATDESC: Total Position Count
956
1028
  FIELDNAM: Singles - Total Position Count
@@ -959,7 +1031,7 @@ lo-counters-aggregated-TotalPositionCount:
959
1031
  LABL_PTR_1: spin_sector_pairs_label
960
1032
  LABL_PTR_2: esa_step_label
961
1033
 
962
- lo-counters-aggregated-InvalidPositionCount:
1034
+ lo-counters-aggregated-invalid_position_count:
963
1035
  <<: *events
964
1036
  CATDESC: Invalid Position Count
965
1037
  FIELDNAM: Singles - Invalid Position Count
@@ -968,7 +1040,7 @@ lo-counters-aggregated-InvalidPositionCount:
968
1040
  LABL_PTR_1: spin_sector_pairs_label
969
1041
  LABL_PTR_2: esa_step_label
970
1042
 
971
- lo-counters-aggregated-ASIC1FlagInvalid:
1043
+ lo-counters-aggregated-asic1_flag_invalid:
972
1044
  <<: *events
973
1045
  CATDESC: ASIC 1 Flag Invalid
974
1046
  FIELDNAM: ASIC 1 Flag Invalid Count
@@ -977,7 +1049,7 @@ lo-counters-aggregated-ASIC1FlagInvalid:
977
1049
  LABL_PTR_1: spin_sector_pairs_label
978
1050
  LABL_PTR_2: esa_step_label
979
1051
 
980
- lo-counters-aggregated-ASIC2FlagInvalid:
1052
+ lo-counters-aggregated-asic2_flag_invalid:
981
1053
  <<: *events
982
1054
  CATDESC: ASIC 2 Flag Invalid
983
1055
  FIELDNAM: ASIC 2 Flag Invalid Count
@@ -986,7 +1058,7 @@ lo-counters-aggregated-ASIC2FlagInvalid:
986
1058
  LABL_PTR_1: spin_sector_pairs_label
987
1059
  LABL_PTR_2: esa_step_label
988
1060
 
989
- lo-counters-aggregated-ASIC1ChannelInvalid:
1061
+ lo-counters-aggregated-asic1_channel_invalid:
990
1062
  <<: *events
991
1063
  CATDESC: ASIC 1 Channel Invalid
992
1064
  FIELDNAM: ASIC 1 Channel Invalid Count
@@ -995,7 +1067,7 @@ lo-counters-aggregated-ASIC1ChannelInvalid:
995
1067
  LABL_PTR_1: spin_sector_pairs_label
996
1068
  LABL_PTR_2: esa_step_label
997
1069
 
998
- lo-counters-aggregated-ASIC2ChannelInvalid:
1070
+ lo-counters-aggregated-asic2_channel_invalid:
999
1071
  <<: *events
1000
1072
  CATDESC: ASIC 2 Channel Invalid
1001
1073
  FIELDNAM: ASIC 2 Channel Invalid Count
@@ -1004,7 +1076,7 @@ lo-counters-aggregated-ASIC2ChannelInvalid:
1004
1076
  LABL_PTR_1: spin_sector_pairs_label
1005
1077
  LABL_PTR_2: esa_step_label
1006
1078
 
1007
- lo-counters-aggregated-TEC4TimeoutTOFNoPos:
1079
+ lo-counters-aggregated-tec4_timeout_tof_no_pos:
1008
1080
  <<: *events
1009
1081
  CATDESC: TEC-4 Timeout TOF no Position
1010
1082
  FIELDNAM: TEC-4 Timeout Count; TOF, No Position
@@ -1013,7 +1085,7 @@ lo-counters-aggregated-TEC4TimeoutTOFNoPos:
1013
1085
  LABL_PTR_1: spin_sector_pairs_label
1014
1086
  LABL_PTR_2: esa_step_label
1015
1087
 
1016
- lo-counters-aggregated-TEC4TimeoutPosNoTOF:
1088
+ lo-counters-aggregated-tec4_timeout_pos_no_tof:
1017
1089
  <<: *events
1018
1090
  CATDESC: TEC-4 Timeout Position no TOF
1019
1091
  FIELDNAM: TEC-4 Timeout Count; Position, No TOF
@@ -1022,7 +1094,7 @@ lo-counters-aggregated-TEC4TimeoutPosNoTOF:
1022
1094
  LABL_PTR_1: spin_sector_pairs_label
1023
1095
  LABL_PTR_2: esa_step_label
1024
1096
 
1025
- lo-counters-aggregated-TEC4TimeoutNoPosTOF:
1097
+ lo-counters-aggregated-tec4_timeout_no_pos_tof:
1026
1098
  <<: *events
1027
1099
  CATDESC: TEC-4 Timeout No Position or TOF
1028
1100
  FIELDNAM: TEC-4 Timeout Count; No Position or TOF
@@ -1031,7 +1103,7 @@ lo-counters-aggregated-TEC4TimeoutNoPosTOF:
1031
1103
  LABL_PTR_1: spin_sector_pairs_label
1032
1104
  LABL_PTR_2: esa_step_label
1033
1105
 
1034
- lo-counters-aggregated-TEC5TimeoutTOFNoPos:
1106
+ lo-counters-aggregated-tec5_timeout_tof_no_pos:
1035
1107
  <<: *events
1036
1108
  CATDESC: TEC-5 Timeout TOF no Position
1037
1109
  FIELDNAM: TEC-5 Timeout Count; TOF, No Position
@@ -1040,7 +1112,7 @@ lo-counters-aggregated-TEC5TimeoutTOFNoPos:
1040
1112
  LABL_PTR_1: spin_sector_pairs_label
1041
1113
  LABL_PTR_2: esa_step_label
1042
1114
 
1043
- lo-counters-aggregated-TEC5TimeoutPosNoTOF:
1115
+ lo-counters-aggregated-tec5_timeout_pos_no_tof:
1044
1116
  <<: *events
1045
1117
  CATDESC: TEC-5 Timeout Position no TOF
1046
1118
  FIELDNAM: TEC-5 Timeout Count; Position, No TOF
@@ -1049,7 +1121,7 @@ lo-counters-aggregated-TEC5TimeoutPosNoTOF:
1049
1121
  LABL_PTR_1: spin_sector_pairs_label
1050
1122
  LABL_PTR_2: esa_step_label
1051
1123
 
1052
- lo-counters-aggregated-TEC5TimeoutNoPosTOF:
1124
+ lo-counters-aggregated-tec5_timeout_no_pos_tof:
1053
1125
  <<: *events
1054
1126
  CATDESC: TEC-5 Timeout No Position or TOF
1055
1127
  FIELDNAM: TEC-5 Timeout Count; No Position or TOF
@@ -1500,7 +1572,10 @@ lo-ialirt-fe_hiq:
1500
1572
  VALIDMAX: *max_uint24
1501
1573
 
1502
1574
  # <=== Direct Events Attributes ===>
1503
- 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:
1504
1579
  <<: *direct_events
1505
1580
  CATDESC: Priority 0 APD ID
1506
1581
  DEPEND_1: event_num
@@ -1508,7 +1583,7 @@ P0_APD_ID:
1508
1583
  LABL_PTR_1: event_num_label
1509
1584
  VALIDMAX: 32
1510
1585
 
1511
- P0_APDEnergy:
1586
+ p0_apd_energy:
1512
1587
  <<: *direct_events
1513
1588
  CATDESC: Priority 0 APD Energy
1514
1589
  DEPEND_1: event_num
@@ -1517,7 +1592,7 @@ P0_APDEnergy:
1517
1592
  LABL_PTR_1: event_num_label
1518
1593
  VALIDMAX: 512
1519
1594
 
1520
- P0_APDGain:
1595
+ p0_gain:
1521
1596
  <<: *direct_events
1522
1597
  CATDESC: Priority 0 APD Gain
1523
1598
  DEPEND_1: event_num
@@ -1525,14 +1600,14 @@ P0_APDGain:
1525
1600
  LABL_PTR_1: event_num_label
1526
1601
  VALIDMAX: 1
1527
1602
 
1528
- P0_DataQuality:
1603
+ p0_data_quality:
1529
1604
  <<: *direct_events
1530
1605
  CATDESC: Priority 0 Data Quality
1531
1606
  FIELDNAM: Priority 0 Data Quality
1532
1607
  LABLAXIS: " "
1533
1608
  VALIDMAX: 1
1534
1609
 
1535
- P0_EnergyStep:
1610
+ p0_energy_step:
1536
1611
  <<: *direct_events
1537
1612
  CATDESC: Priority 0 Energy Step
1538
1613
  DEPEND_1: event_num
@@ -1540,15 +1615,7 @@ P0_EnergyStep:
1540
1615
  LABL_PTR_1: event_num_label
1541
1616
  VALIDMAX: 128
1542
1617
 
1543
- P0_ERGE:
1544
- <<: *direct_events
1545
- CATDESC: Priority 0 Energy Range
1546
- DEPEND_1: event_num
1547
- FIELDNAM: Priority 0 Energy Range
1548
- LABL_PTR_1: event_num_label
1549
- VALIDMAX: 4
1550
-
1551
- P0_MultiFlag:
1618
+ p0_multi_flag:
1552
1619
  <<: *direct_events
1553
1620
  CATDESC: Priority 0 Multi Flag
1554
1621
  DEPEND_1: event_num
@@ -1556,14 +1623,14 @@ P0_MultiFlag:
1556
1623
  LABL_PTR_1: event_num_label
1557
1624
  VALIDMAX: 1
1558
1625
 
1559
- P0_NumEvents:
1626
+ p0_num_events:
1560
1627
  <<: *direct_events
1561
1628
  CATDESC: Priority 0 Number of Events
1562
1629
  FIELDNAM: Priority 0 Number of Events
1563
1630
  FILLVAL: 65535
1564
1631
  LABLAXIS: " "
1565
1632
 
1566
- P0_PHAType:
1633
+ p0_type:
1567
1634
  <<: *direct_events
1568
1635
  CATDESC: Priority 0 PHA Type
1569
1636
  DEPEND_1: event_num
@@ -1571,7 +1638,7 @@ P0_PHAType:
1571
1638
  LABL_PTR_1: event_num_label
1572
1639
  VALIDMAX: 4
1573
1640
 
1574
- P0_Position:
1641
+ p0_position:
1575
1642
  <<: *direct_events
1576
1643
  CATDESC: Priority 0 Position
1577
1644
  DEPEND_1: event_num
@@ -1579,7 +1646,7 @@ P0_Position:
1579
1646
  LABL_PTR_1: event_num_label
1580
1647
  VALIDMAX: 32
1581
1648
 
1582
- P0_SpinAngle:
1649
+ p0_spin_sector:
1583
1650
  <<: *direct_events
1584
1651
  CATDESC: Priority 0 Spin Angle
1585
1652
  DEPEND_1: event_num
@@ -1587,7 +1654,7 @@ P0_SpinAngle:
1587
1654
  LABL_PTR_1: event_num_label
1588
1655
  VALIDMAX: 128
1589
1656
 
1590
- P0_SpinNumber:
1657
+ p0_spin_number:
1591
1658
  <<: *direct_events
1592
1659
  CATDESC: Priority 0 Spin Number
1593
1660
  DEPEND_1: event_num
@@ -1595,7 +1662,7 @@ P0_SpinNumber:
1595
1662
  LABL_PTR_1: event_num_label
1596
1663
  VALIDMAX: 32
1597
1664
 
1598
- P0_SSD_ID:
1665
+ p0_ssd_id:
1599
1666
  <<: *direct_events
1600
1667
  CATDESC: Priority 0 SSD ID or Azimuth Angle
1601
1668
  DEPEND_1: event_num
@@ -1603,7 +1670,7 @@ P0_SSD_ID:
1603
1670
  LABL_PTR_1: event_num_label
1604
1671
  VALIDMAX: 32
1605
1672
 
1606
- P0_SSDEnergy:
1673
+ p0_ssd_energy:
1607
1674
  <<: *direct_events
1608
1675
  CATDESC: Priority 0 APD Energy
1609
1676
  DEPEND_1: event_num
@@ -1611,7 +1678,7 @@ P0_SSDEnergy:
1611
1678
  LABL_PTR_1: event_num_label
1612
1679
  VALIDMAX: 2048
1613
1680
 
1614
- P0_TOF:
1681
+ p0_tof:
1615
1682
  <<: *direct_events
1616
1683
  CATDESC: Priority 0 Time of Flight
1617
1684
  DEPEND_1: event_num
@@ -1620,7 +1687,7 @@ P0_TOF:
1620
1687
  LABL_PTR_1: event_num_label
1621
1688
  VALIDMAX: 1024
1622
1689
 
1623
- P0_Type:
1690
+ p0_type:
1624
1691
  <<: *direct_events
1625
1692
  CATDESC: Priority 0 Type
1626
1693
  DEPEND_1: event_num
@@ -1628,7 +1695,7 @@ P0_Type:
1628
1695
  LABL_PTR_1: event_num_label
1629
1696
  VALIDMAX: 3
1630
1697
 
1631
- P1_APD_ID:
1698
+ p1_apd_id:
1632
1699
  <<: *direct_events
1633
1700
  CATDESC: Priority 1 APD ID
1634
1701
  DEPEND_1: event_num
@@ -1636,7 +1703,7 @@ P1_APD_ID:
1636
1703
  LABL_PTR_1: event_num_label
1637
1704
  VALIDMAX: 32
1638
1705
 
1639
- P1_APDEnergy:
1706
+ p1_apd_energy:
1640
1707
  <<: *direct_events
1641
1708
  CATDESC: Priority 1 APD Energy
1642
1709
  DEPEND_1: event_num
@@ -1645,7 +1712,7 @@ P1_APDEnergy:
1645
1712
  LABL_PTR_1: event_num_label
1646
1713
  VALIDMAX: 512
1647
1714
 
1648
- P1_APDGain:
1715
+ p1_gain:
1649
1716
  <<: *direct_events
1650
1717
  CATDESC: Priority 1 APD Gain
1651
1718
  DEPEND_1: event_num
@@ -1653,14 +1720,14 @@ P1_APDGain:
1653
1720
  LABL_PTR_1: event_num_label
1654
1721
  VALIDMAX: 1
1655
1722
 
1656
- P1_DataQuality:
1723
+ p1_data_quality:
1657
1724
  <<: *direct_events
1658
1725
  CATDESC: Priority 1 Data Quality
1659
1726
  FIELDNAM: Priority 1 Data Quality
1660
1727
  LABLAXIS: " "
1661
1728
  VALIDMAX: 1
1662
1729
 
1663
- P1_EnergyStep:
1730
+ p1_energy_step:
1664
1731
  <<: *direct_events
1665
1732
  CATDESC: Priority 1 Energy Step
1666
1733
  DEPEND_1: event_num
@@ -1668,15 +1735,7 @@ P1_EnergyStep:
1668
1735
  LABL_PTR_1: event_num_label
1669
1736
  VALIDMAX: 128
1670
1737
 
1671
- P1_ERGE:
1672
- <<: *direct_events
1673
- CATDESC: Priority 1 Energy Range
1674
- DEPEND_1: event_num
1675
- FIELDNAM: Priority 1 Energy Range
1676
- LABL_PTR_1: event_num_label
1677
- VALIDMAX: 4
1678
-
1679
- P1_MultiFlag:
1738
+ p1_multi_flag:
1680
1739
  <<: *direct_events
1681
1740
  CATDESC: Priority 1 Multi Flag
1682
1741
  DEPEND_1: event_num
@@ -1684,14 +1743,14 @@ P1_MultiFlag:
1684
1743
  LABL_PTR_1: event_num_label
1685
1744
  VALIDMAX: 1
1686
1745
 
1687
- P1_NumEvents:
1746
+ p1_num_events:
1688
1747
  <<: *direct_events
1689
1748
  CATDESC: Priority 1 Number of Events
1690
1749
  FIELDNAM: Priority 1 Number of Events
1691
1750
  FILLVAL: 65535
1692
1751
  LABLAXIS: " "
1693
1752
 
1694
- P1_PHAType:
1753
+ p1_type:
1695
1754
  <<: *direct_events
1696
1755
  CATDESC: Priority 1 PHA Type
1697
1756
  DEPEND_1: event_num
@@ -1699,7 +1758,7 @@ P1_PHAType:
1699
1758
  LABL_PTR_1: event_num_label
1700
1759
  VALIDMAX: 4
1701
1760
 
1702
- P1_Position:
1761
+ p1_position:
1703
1762
  <<: *direct_events
1704
1763
  CATDESC: Priority 1 Position
1705
1764
  DEPEND_1: event_num
@@ -1707,7 +1766,7 @@ P1_Position:
1707
1766
  LABL_PTR_1: event_num_label
1708
1767
  VALIDMAX: 32
1709
1768
 
1710
- P1_SpinAngle:
1769
+ p1_spin_sector:
1711
1770
  <<: *direct_events
1712
1771
  CATDESC: Priority 1 Spin Angle
1713
1772
  DEPEND_1: event_num
@@ -1715,7 +1774,7 @@ P1_SpinAngle:
1715
1774
  LABL_PTR_1: event_num_label
1716
1775
  VALIDMAX: 128
1717
1776
 
1718
- P1_SpinNumber:
1777
+ p1_spin_number:
1719
1778
  <<: *direct_events
1720
1779
  CATDESC: Priority 1 Spin Number
1721
1780
  DEPEND_1: event_num
@@ -1723,7 +1782,7 @@ P1_SpinNumber:
1723
1782
  LABL_PTR_1: event_num_label
1724
1783
  VALIDMAX: 32
1725
1784
 
1726
- P1_SSD_ID:
1785
+ p1_ssd_id:
1727
1786
  <<: *direct_events
1728
1787
  CATDESC: Priority 1 SSD ID or Azimuth Angle
1729
1788
  DEPEND_1: event_num
@@ -1731,7 +1790,7 @@ P1_SSD_ID:
1731
1790
  LABL_PTR_1: event_num_label
1732
1791
  VALIDMAX: 32
1733
1792
 
1734
- P1_SSDEnergy:
1793
+ p1_ssd_energy:
1735
1794
  <<: *direct_events
1736
1795
  CATDESC: Priority 1 APD Energy
1737
1796
  DEPEND_1: event_num
@@ -1739,7 +1798,7 @@ P1_SSDEnergy:
1739
1798
  LABL_PTR_1: event_num_label
1740
1799
  VALIDMAX: 2048
1741
1800
 
1742
- P1_TOF:
1801
+ p1_tof:
1743
1802
  <<: *direct_events
1744
1803
  CATDESC: Priority 1 Time of Flight
1745
1804
  DEPEND_1: event_num
@@ -1748,7 +1807,7 @@ P1_TOF:
1748
1807
  LABL_PTR_1: event_num_label
1749
1808
  VALIDMAX: 1024
1750
1809
 
1751
- P1_Type:
1810
+ p1_Type:
1752
1811
  <<: *direct_events
1753
1812
  CATDESC: Priority 1 Type
1754
1813
  DEPEND_1: event_num
@@ -1756,7 +1815,7 @@ P1_Type:
1756
1815
  LABL_PTR_1: event_num_label
1757
1816
  VALIDMAX: 3
1758
1817
 
1759
- P2_APD_ID:
1818
+ p2_apd_id:
1760
1819
  <<: *direct_events
1761
1820
  CATDESC: Priority 2 APD ID
1762
1821
  DEPEND_1: event_num
@@ -1764,7 +1823,7 @@ P2_APD_ID:
1764
1823
  LABL_PTR_1: event_num_label
1765
1824
  VALIDMAX: 32
1766
1825
 
1767
- P2_APDEnergy:
1826
+ p2_apd_energy:
1768
1827
  <<: *direct_events
1769
1828
  CATDESC: Priority 2 APD Energy
1770
1829
  DEPEND_1: event_num
@@ -1773,7 +1832,7 @@ P2_APDEnergy:
1773
1832
  LABL_PTR_1: event_num_label
1774
1833
  VALIDMAX: 512
1775
1834
 
1776
- P2_APDGain:
1835
+ p2_gain:
1777
1836
  <<: *direct_events
1778
1837
  CATDESC: Priority 2 APD Gain
1779
1838
  DEPEND_1: event_num
@@ -1781,14 +1840,14 @@ P2_APDGain:
1781
1840
  LABL_PTR_1: event_num_label
1782
1841
  VALIDMAX: 1
1783
1842
 
1784
- P2_DataQuality:
1843
+ p2_data_quality:
1785
1844
  <<: *direct_events
1786
1845
  CATDESC: Priority 2 Data Quality
1787
1846
  FIELDNAM: Priority 2 Data Quality
1788
1847
  LABLAXIS: " "
1789
1848
  VALIDMAX: 1
1790
1849
 
1791
- P2_EnergyStep:
1850
+ p2_energy_step:
1792
1851
  <<: *direct_events
1793
1852
  CATDESC: Priority 2 Energy Step
1794
1853
  DEPEND_1: event_num
@@ -1796,15 +1855,7 @@ P2_EnergyStep:
1796
1855
  LABL_PTR_1: event_num_label
1797
1856
  VALIDMAX: 128
1798
1857
 
1799
- P2_ERGE:
1800
- <<: *direct_events
1801
- CATDESC: Priority 2 Energy Range
1802
- DEPEND_1: event_num
1803
- FIELDNAM: Priority 2 Energy Range
1804
- LABL_PTR_1: event_num_label
1805
- VALIDMAX: 4
1806
-
1807
- P2_MultiFlag:
1858
+ p2_multi_flag:
1808
1859
  <<: *direct_events
1809
1860
  CATDESC: Priority 2 Multi Flag
1810
1861
  DEPEND_1: event_num
@@ -1812,14 +1863,14 @@ P2_MultiFlag:
1812
1863
  LABL_PTR_1: event_num_label
1813
1864
  VALIDMAX: 1
1814
1865
 
1815
- P2_NumEvents:
1866
+ p2_num_events:
1816
1867
  <<: *direct_events
1817
1868
  CATDESC: Priority 2 Number of Events
1818
1869
  FIELDNAM: Priority 2 Number of Events
1819
1870
  FILLVAL: 65535
1820
1871
  LABLAXIS: " "
1821
1872
 
1822
- P2_PHAType:
1873
+ p2_type:
1823
1874
  <<: *direct_events
1824
1875
  CATDESC: Priority 2 PHA Type
1825
1876
  DEPEND_1: event_num
@@ -1827,7 +1878,7 @@ P2_PHAType:
1827
1878
  LABL_PTR_1: event_num_label
1828
1879
  VALIDMAX: 4
1829
1880
 
1830
- P2_Position:
1881
+ p2_position:
1831
1882
  <<: *direct_events
1832
1883
  CATDESC: Priority 2 Position
1833
1884
  DEPEND_1: event_num
@@ -1835,7 +1886,7 @@ P2_Position:
1835
1886
  LABL_PTR_1: event_num_label
1836
1887
  VALIDMAX: 32
1837
1888
 
1838
- P2_SpinAngle:
1889
+ p2_spin_sector:
1839
1890
  <<: *direct_events
1840
1891
  CATDESC: Priority 2 Spin Angle
1841
1892
  DEPEND_1: event_num
@@ -1843,7 +1894,7 @@ P2_SpinAngle:
1843
1894
  LABL_PTR_1: event_num_label
1844
1895
  VALIDMAX: 128
1845
1896
 
1846
- P2_SpinNumber:
1897
+ p2_spin_number:
1847
1898
  <<: *direct_events
1848
1899
  CATDESC: Priority 2 Spin Number
1849
1900
  DEPEND_1: event_num
@@ -1851,7 +1902,7 @@ P2_SpinNumber:
1851
1902
  LABL_PTR_1: event_num_label
1852
1903
  VALIDMAX: 32
1853
1904
 
1854
- P2_SSD_ID:
1905
+ p2_ssd_id:
1855
1906
  <<: *direct_events
1856
1907
  CATDESC: Priority 2 SSD ID or Azimuth Angle
1857
1908
  DEPEND_1: event_num
@@ -1859,7 +1910,7 @@ P2_SSD_ID:
1859
1910
  LABL_PTR_1: event_num_label
1860
1911
  VALIDMAX: 32
1861
1912
 
1862
- P2_SSDEnergy:
1913
+ p2_ssd_energy:
1863
1914
  <<: *direct_events
1864
1915
  CATDESC: Priority 2 APD Energy
1865
1916
  DEPEND_1: event_num
@@ -1867,7 +1918,7 @@ P2_SSDEnergy:
1867
1918
  LABL_PTR_1: event_num_label
1868
1919
  VALIDMAX: 2048
1869
1920
 
1870
- P2_TOF:
1921
+ p2_tof:
1871
1922
  <<: *direct_events
1872
1923
  CATDESC: Priority 2 Time of Flight
1873
1924
  DEPEND_1: event_num
@@ -1876,7 +1927,7 @@ P2_TOF:
1876
1927
  LABL_PTR_1: event_num_label
1877
1928
  VALIDMAX: 1024
1878
1929
 
1879
- P2_Type:
1930
+ p2_Type:
1880
1931
  <<: *direct_events
1881
1932
  CATDESC: Priority 2 Type
1882
1933
  DEPEND_1: event_num
@@ -1884,7 +1935,7 @@ P2_Type:
1884
1935
  LABL_PTR_1: event_num_label
1885
1936
  VALIDMAX: 3
1886
1937
 
1887
- P3_APD_ID:
1938
+ p3_apd_id:
1888
1939
  <<: *direct_events
1889
1940
  CATDESC: Priority 3 APD ID
1890
1941
  DEPEND_1: event_num
@@ -1892,7 +1943,7 @@ P3_APD_ID:
1892
1943
  LABL_PTR_1: event_num_label
1893
1944
  VALIDMAX: 32
1894
1945
 
1895
- P3_APDEnergy:
1946
+ p3_apd_energy:
1896
1947
  <<: *direct_events
1897
1948
  CATDESC: Priority 3 APD Energy
1898
1949
  DEPEND_1: event_num
@@ -1901,7 +1952,7 @@ P3_APDEnergy:
1901
1952
  LABL_PTR_1: event_num_label
1902
1953
  VALIDMAX: 512
1903
1954
 
1904
- P3_APDGain:
1955
+ p3_gain:
1905
1956
  <<: *direct_events
1906
1957
  CATDESC: Priority 3 APD Gain
1907
1958
  DEPEND_1: event_num
@@ -1909,14 +1960,14 @@ P3_APDGain:
1909
1960
  LABL_PTR_1: event_num_label
1910
1961
  VALIDMAX: 1
1911
1962
 
1912
- P3_DataQuality:
1963
+ p3_data_quality:
1913
1964
  <<: *direct_events
1914
1965
  CATDESC: Priority 3 Data Quality
1915
1966
  FIELDNAM: Priority 3 Data Quality
1916
1967
  LABLAXIS: " "
1917
1968
  VALIDMAX: 1
1918
1969
 
1919
- P3_EnergyStep:
1970
+ p3_energy_step:
1920
1971
  <<: *direct_events
1921
1972
  CATDESC: Priority 3 Energy Step
1922
1973
  DEPEND_1: event_num
@@ -1924,15 +1975,7 @@ P3_EnergyStep:
1924
1975
  LABL_PTR_1: event_num_label
1925
1976
  VALIDMAX: 128
1926
1977
 
1927
- P3_ERGE:
1928
- <<: *direct_events
1929
- CATDESC: Priority 3 Energy Range
1930
- DEPEND_1: event_num
1931
- FIELDNAM: Priority 3 Energy Range
1932
- LABL_PTR_1: event_num_label
1933
- VALIDMAX: 4
1934
-
1935
- P3_MultiFlag:
1978
+ p3_multi_flag:
1936
1979
  <<: *direct_events
1937
1980
  CATDESC: Priority 3 Multi Flag
1938
1981
  DEPEND_1: event_num
@@ -1940,14 +1983,14 @@ P3_MultiFlag:
1940
1983
  LABL_PTR_1: event_num_label
1941
1984
  VALIDMAX: 1
1942
1985
 
1943
- P3_NumEvents:
1986
+ p3_num_events:
1944
1987
  <<: *direct_events
1945
1988
  CATDESC: Priority 3 Number of Events
1946
1989
  FIELDNAM: Priority 3 Number of Events
1947
1990
  FILLVAL: 65535
1948
1991
  LABLAXIS: " "
1949
1992
 
1950
- P3_PHAType:
1993
+ p3_type:
1951
1994
  <<: *direct_events
1952
1995
  CATDESC: Priority 3 PHA Type
1953
1996
  DEPEND_1: event_num
@@ -1955,7 +1998,7 @@ P3_PHAType:
1955
1998
  LABL_PTR_1: event_num_label
1956
1999
  VALIDMAX: 4
1957
2000
 
1958
- P3_Position:
2001
+ p3_position:
1959
2002
  <<: *direct_events
1960
2003
  CATDESC: Priority 3 Position
1961
2004
  DEPEND_1: event_num
@@ -1963,7 +2006,7 @@ P3_Position:
1963
2006
  LABL_PTR_1: event_num_label
1964
2007
  VALIDMAX: 32
1965
2008
 
1966
- P3_SpinAngle:
2009
+ p3_spin_sector:
1967
2010
  <<: *direct_events
1968
2011
  CATDESC: Priority 3 Spin Angle
1969
2012
  DEPEND_1: event_num
@@ -1971,7 +2014,7 @@ P3_SpinAngle:
1971
2014
  LABL_PTR_1: event_num_label
1972
2015
  VALIDMAX: 128
1973
2016
 
1974
- P3_SpinNumber:
2017
+ p3_spin_number:
1975
2018
  <<: *direct_events
1976
2019
  CATDESC: Priority 3 Spin Number
1977
2020
  DEPEND_1: event_num
@@ -1979,7 +2022,7 @@ P3_SpinNumber:
1979
2022
  LABL_PTR_1: event_num_label
1980
2023
  VALIDMAX: 32
1981
2024
 
1982
- P3_SSD_ID:
2025
+ p3_ssd_id:
1983
2026
  <<: *direct_events
1984
2027
  CATDESC: Priority 3 SSD ID or Azimuth Angle
1985
2028
  DEPEND_1: event_num
@@ -1987,7 +2030,7 @@ P3_SSD_ID:
1987
2030
  LABL_PTR_1: event_num_label
1988
2031
  VALIDMAX: 32
1989
2032
 
1990
- P3_SSDEnergy:
2033
+ p3_ssd_energy:
1991
2034
  <<: *direct_events
1992
2035
  CATDESC: Priority 3 APD Energy
1993
2036
  DEPEND_1: event_num
@@ -1995,7 +2038,7 @@ P3_SSDEnergy:
1995
2038
  LABL_PTR_1: event_num_label
1996
2039
  VALIDMAX: 2048
1997
2040
 
1998
- P3_TOF:
2041
+ p3_tof:
1999
2042
  <<: *direct_events
2000
2043
  CATDESC: Priority 3 Time of Flight
2001
2044
  DEPEND_1: event_num
@@ -2004,7 +2047,7 @@ P3_TOF:
2004
2047
  LABL_PTR_1: event_num_label
2005
2048
  VALIDMAX: 1024
2006
2049
 
2007
- P3_Type:
2050
+ p3_Type:
2008
2051
  <<: *direct_events
2009
2052
  CATDESC: Priority 3 Type
2010
2053
  DEPEND_1: event_num
@@ -2012,7 +2055,7 @@ P3_Type:
2012
2055
  LABL_PTR_1: event_num_label
2013
2056
  VALIDMAX: 3
2014
2057
 
2015
- P4_APD_ID:
2058
+ p4_apd_id:
2016
2059
  <<: *direct_events
2017
2060
  CATDESC: Priority 4 APD ID
2018
2061
  DEPEND_1: event_num
@@ -2020,7 +2063,7 @@ P4_APD_ID:
2020
2063
  LABL_PTR_1: event_num_label
2021
2064
  VALIDMAX: 32
2022
2065
 
2023
- P4_APDEnergy:
2066
+ p4_apd_energy:
2024
2067
  <<: *direct_events
2025
2068
  CATDESC: Priority 4 APD Energy
2026
2069
  DEPEND_1: event_num
@@ -2029,7 +2072,7 @@ P4_APDEnergy:
2029
2072
  LABL_PTR_1: event_num_label
2030
2073
  VALIDMAX: 512
2031
2074
 
2032
- P4_APDGain:
2075
+ p4_gain:
2033
2076
  <<: *direct_events
2034
2077
  CATDESC: Priority 4 APD Gain
2035
2078
  DEPEND_1: event_num
@@ -2037,14 +2080,14 @@ P4_APDGain:
2037
2080
  LABL_PTR_1: event_num_label
2038
2081
  VALIDMAX: 1
2039
2082
 
2040
- P4_DataQuality:
2083
+ p4_data_quality:
2041
2084
  <<: *direct_events
2042
2085
  CATDESC: Priority 4 Data Quality
2043
2086
  FIELDNAM: Priority 4 Data Quality
2044
2087
  LABLAXIS: " "
2045
2088
  VALIDMAX: 1
2046
2089
 
2047
- P4_EnergyStep:
2090
+ p4_energy_step:
2048
2091
  <<: *direct_events
2049
2092
  CATDESC: Priority 4 Energy Step
2050
2093
  DEPEND_1: event_num
@@ -2052,15 +2095,7 @@ P4_EnergyStep:
2052
2095
  LABL_PTR_1: event_num_label
2053
2096
  VALIDMAX: 128
2054
2097
 
2055
- P4_ERGE:
2056
- <<: *direct_events
2057
- CATDESC: Priority 4 Energy Range
2058
- DEPEND_1: event_num
2059
- FIELDNAM: Priority 4 Energy Range
2060
- LABL_PTR_1: event_num_label
2061
- VALIDMAX: 4
2062
-
2063
- P4_MultiFlag:
2098
+ p4_multi_flag:
2064
2099
  <<: *direct_events
2065
2100
  CATDESC: Priority 4 Multi Flag
2066
2101
  DEPEND_1: event_num
@@ -2068,14 +2103,14 @@ P4_MultiFlag:
2068
2103
  LABL_PTR_1: event_num_label
2069
2104
  VALIDMAX: 1
2070
2105
 
2071
- P4_NumEvents:
2106
+ p4_num_events:
2072
2107
  <<: *direct_events
2073
2108
  CATDESC: Priority 4 Number of Events
2074
2109
  FIELDNAM: Priority 4 Number of Events
2075
2110
  FILLVAL: 65535
2076
2111
  LABLAXIS: " "
2077
2112
 
2078
- P4_PHAType:
2113
+ p4_type:
2079
2114
  <<: *direct_events
2080
2115
  CATDESC: Priority 4 PHA Type
2081
2116
  DEPEND_1: event_num
@@ -2083,7 +2118,7 @@ P4_PHAType:
2083
2118
  LABL_PTR_1: event_num_label
2084
2119
  VALIDMAX: 4
2085
2120
 
2086
- P4_Position:
2121
+ p4_position:
2087
2122
  <<: *direct_events
2088
2123
  CATDESC: Priority 4 Position
2089
2124
  DEPEND_1: event_num
@@ -2091,7 +2126,7 @@ P4_Position:
2091
2126
  LABL_PTR_1: event_num_label
2092
2127
  VALIDMAX: 32
2093
2128
 
2094
- P4_SpinAngle:
2129
+ p4_spin_sector:
2095
2130
  <<: *direct_events
2096
2131
  CATDESC: Priority 4 Spin Angle
2097
2132
  DEPEND_1: event_num
@@ -2099,7 +2134,7 @@ P4_SpinAngle:
2099
2134
  LABL_PTR_1: event_num_label
2100
2135
  VALIDMAX: 128
2101
2136
 
2102
- P4_SpinNumber:
2137
+ p4_spin_number:
2103
2138
  <<: *direct_events
2104
2139
  CATDESC: Priority 4 Spin Number
2105
2140
  DEPEND_1: event_num
@@ -2107,7 +2142,7 @@ P4_SpinNumber:
2107
2142
  LABL_PTR_1: event_num_label
2108
2143
  VALIDMAX: 32
2109
2144
 
2110
- P4_SSD_ID:
2145
+ p4_ssd_id:
2111
2146
  <<: *direct_events
2112
2147
  CATDESC: Priority 4 SSD ID or Azimuth Angle
2113
2148
  DEPEND_1: event_num
@@ -2115,7 +2150,7 @@ P4_SSD_ID:
2115
2150
  LABL_PTR_1: event_num_label
2116
2151
  VALIDMAX: 32
2117
2152
 
2118
- P4_SSDEnergy:
2153
+ p4_ssd_energy:
2119
2154
  <<: *direct_events
2120
2155
  CATDESC: Priority 4 APD Energy
2121
2156
  DEPEND_1: event_num
@@ -2123,7 +2158,7 @@ P4_SSDEnergy:
2123
2158
  LABL_PTR_1: event_num_label
2124
2159
  VALIDMAX: 2048
2125
2160
 
2126
- P4_TOF:
2161
+ p4_tof:
2127
2162
  <<: *direct_events
2128
2163
  CATDESC: Priority 4 Time of Flight
2129
2164
  DEPEND_1: event_num
@@ -2132,7 +2167,7 @@ P4_TOF:
2132
2167
  LABL_PTR_1: event_num_label
2133
2168
  VALIDMAX: 1024
2134
2169
 
2135
- P4_Type:
2170
+ p4_Type:
2136
2171
  <<: *direct_events
2137
2172
  CATDESC: Priority 4 Type
2138
2173
  DEPEND_1: event_num
@@ -2140,7 +2175,7 @@ P4_Type:
2140
2175
  LABL_PTR_1: event_num_label
2141
2176
  VALIDMAX: 3
2142
2177
 
2143
- P5_APD_ID:
2178
+ p5_apd_id:
2144
2179
  <<: *direct_events
2145
2180
  CATDESC: Priority 5 APD ID
2146
2181
  DEPEND_1: event_num
@@ -2148,7 +2183,7 @@ P5_APD_ID:
2148
2183
  LABL_PTR_1: event_num_label
2149
2184
  VALIDMAX: 32
2150
2185
 
2151
- P5_APDEnergy:
2186
+ p5_apd_energy:
2152
2187
  <<: *direct_events
2153
2188
  CATDESC: Priority 5 APD Energy
2154
2189
  DEPEND_1: event_num
@@ -2157,7 +2192,7 @@ P5_APDEnergy:
2157
2192
  LABL_PTR_1: event_num_label
2158
2193
  VALIDMAX: 512
2159
2194
 
2160
- P5_APDGain:
2195
+ p5_gain:
2161
2196
  <<: *direct_events
2162
2197
  CATDESC: Priority 5 APD Gain
2163
2198
  DEPEND_1: event_num
@@ -2165,14 +2200,14 @@ P5_APDGain:
2165
2200
  LABL_PTR_1: event_num_label
2166
2201
  VALIDMAX: 1
2167
2202
 
2168
- P5_DataQuality:
2203
+ p5_data_quality:
2169
2204
  <<: *direct_events
2170
2205
  CATDESC: Priority 5 Data Quality
2171
2206
  FIELDNAM: Priority 5 Data Quality
2172
2207
  LABLAXIS: " "
2173
2208
  VALIDMAX: 1
2174
2209
 
2175
- P5_EnergyStep:
2210
+ p5_energy_step:
2176
2211
  <<: *direct_events
2177
2212
  CATDESC: Priority 5 Energy Step
2178
2213
  DEPEND_1: event_num
@@ -2180,15 +2215,7 @@ P5_EnergyStep:
2180
2215
  LABL_PTR_1: event_num_label
2181
2216
  VALIDMAX: 128
2182
2217
 
2183
- P5_ERGE:
2184
- <<: *direct_events
2185
- CATDESC: Priority 5 Energy Range
2186
- DEPEND_1: event_num
2187
- FIELDNAM: Priority 5 Energy Range
2188
- LABL_PTR_1: event_num_label
2189
- VALIDMAX: 4
2190
-
2191
- P5_MultiFlag:
2218
+ p5_multi_flag:
2192
2219
  <<: *direct_events
2193
2220
  CATDESC: Priority 5 Multi Flag
2194
2221
  DEPEND_1: event_num
@@ -2196,14 +2223,14 @@ P5_MultiFlag:
2196
2223
  LABL_PTR_1: event_num_label
2197
2224
  VALIDMAX: 1
2198
2225
 
2199
- P5_NumEvents:
2226
+ p5_num_events:
2200
2227
  <<: *direct_events
2201
2228
  CATDESC: Priority 5 Number of Events
2202
2229
  FIELDNAM: Priority 5 Number of Events
2203
2230
  FILLVAL: 65535
2204
2231
  LABLAXIS: " "
2205
2232
 
2206
- P5_PHAType:
2233
+ p5_type:
2207
2234
  <<: *direct_events
2208
2235
  CATDESC: Priority 5 PHA Type
2209
2236
  DEPEND_1: event_num
@@ -2211,7 +2238,7 @@ P5_PHAType:
2211
2238
  LABL_PTR_1: event_num_label
2212
2239
  VALIDMAX: 4
2213
2240
 
2214
- P5_Position:
2241
+ p5_position:
2215
2242
  <<: *direct_events
2216
2243
  CATDESC: Priority 5 Position
2217
2244
  DEPEND_1: event_num
@@ -2219,7 +2246,7 @@ P5_Position:
2219
2246
  LABL_PTR_1: event_num_label
2220
2247
  VALIDMAX: 32
2221
2248
 
2222
- P5_SpinAngle:
2249
+ p5_spin_sector:
2223
2250
  <<: *direct_events
2224
2251
  CATDESC: Priority 5 Spin Angle
2225
2252
  DEPEND_1: event_num
@@ -2227,7 +2254,7 @@ P5_SpinAngle:
2227
2254
  LABL_PTR_1: event_num_label
2228
2255
  VALIDMAX: 128
2229
2256
 
2230
- P5_SpinNumber:
2257
+ p5_spin_number:
2231
2258
  <<: *direct_events
2232
2259
  CATDESC: Priority 5 Spin Number
2233
2260
  DEPEND_1: event_num
@@ -2235,7 +2262,7 @@ P5_SpinNumber:
2235
2262
  LABL_PTR_1: event_num_label
2236
2263
  VALIDMAX: 32
2237
2264
 
2238
- P5_SSD_ID:
2265
+ p5_ssd_id:
2239
2266
  <<: *direct_events
2240
2267
  CATDESC: Priority 5 SSD ID or Azimuth Angle
2241
2268
  DEPEND_1: event_num
@@ -2243,7 +2270,7 @@ P5_SSD_ID:
2243
2270
  LABL_PTR_1: event_num_label
2244
2271
  VALIDMAX: 32
2245
2272
 
2246
- P5_SSDEnergy:
2273
+ p5_ssd_energy:
2247
2274
  <<: *direct_events
2248
2275
  CATDESC: Priority 5 APD Energy
2249
2276
  DEPEND_1: event_num
@@ -2251,7 +2278,7 @@ P5_SSDEnergy:
2251
2278
  LABL_PTR_1: event_num_label
2252
2279
  VALIDMAX: 2048
2253
2280
 
2254
- P5_TOF:
2281
+ p5_tof:
2255
2282
  <<: *direct_events
2256
2283
  CATDESC: Priority 5 Time of Flight
2257
2284
  DEPEND_1: event_num
@@ -2260,7 +2287,7 @@ P5_TOF:
2260
2287
  LABL_PTR_1: event_num_label
2261
2288
  VALIDMAX: 1024
2262
2289
 
2263
- P5_Type:
2290
+ p5_Type:
2264
2291
  <<: *direct_events
2265
2292
  CATDESC: Priority 5 Type
2266
2293
  DEPEND_1: event_num
@@ -2268,7 +2295,7 @@ P5_Type:
2268
2295
  LABL_PTR_1: event_num_label
2269
2296
  VALIDMAX: 3
2270
2297
 
2271
- P6_APD_ID:
2298
+ p6_apd_id:
2272
2299
  <<: *direct_events
2273
2300
  CATDESC: Priority 6 APD ID
2274
2301
  DEPEND_1: event_num
@@ -2276,7 +2303,7 @@ P6_APD_ID:
2276
2303
  LABL_PTR_1: event_num_label
2277
2304
  VALIDMAX: 32
2278
2305
 
2279
- P6_APDEnergy:
2306
+ p6_apd_energy:
2280
2307
  <<: *direct_events
2281
2308
  CATDESC: Priority 6 APD Energy
2282
2309
  DEPEND_1: event_num
@@ -2285,7 +2312,7 @@ P6_APDEnergy:
2285
2312
  LABL_PTR_1: event_num_label
2286
2313
  VALIDMAX: 512
2287
2314
 
2288
- P6_APDGain:
2315
+ p6_gain:
2289
2316
  <<: *direct_events
2290
2317
  CATDESC: Priority 6 APD Gain
2291
2318
  DEPEND_1: event_num
@@ -2293,14 +2320,14 @@ P6_APDGain:
2293
2320
  LABL_PTR_1: event_num_label
2294
2321
  VALIDMAX: 1
2295
2322
 
2296
- P6_DataQuality:
2323
+ p6_data_quality:
2297
2324
  <<: *direct_events
2298
2325
  CATDESC: Priority 6 Data Quality
2299
2326
  FIELDNAM: Priority 6 Data Quality
2300
2327
  LABLAXIS: " "
2301
2328
  VALIDMAX: 1
2302
2329
 
2303
- P6_EnergyStep:
2330
+ p6_energy_step:
2304
2331
  <<: *direct_events
2305
2332
  CATDESC: Priority 6 Energy Step
2306
2333
  DEPEND_1: event_num
@@ -2308,7 +2335,7 @@ P6_EnergyStep:
2308
2335
  LABL_PTR_1: event_num_label
2309
2336
  VALIDMAX: 128
2310
2337
 
2311
- P6_MultiFlag:
2338
+ p6_multi_flag:
2312
2339
  <<: *direct_events
2313
2340
  CATDESC: Priority 6 Multi Flag
2314
2341
  DEPEND_1: event_num
@@ -2316,14 +2343,14 @@ P6_MultiFlag:
2316
2343
  LABL_PTR_1: event_num_label
2317
2344
  VALIDMAX: 1
2318
2345
 
2319
- P6_NumEvents:
2346
+ p6_num_events:
2320
2347
  <<: *direct_events
2321
2348
  CATDESC: Priority 6 Number of Events
2322
2349
  FIELDNAM: Priority 6 Number of Events
2323
2350
  FILLVAL: 65535
2324
2351
  LABLAXIS: " "
2325
2352
 
2326
- P6_PHAType:
2353
+ p6_type:
2327
2354
  <<: *direct_events
2328
2355
  CATDESC: Priority 6 PHA Type
2329
2356
  DEPEND_1: event_num
@@ -2331,7 +2358,7 @@ P6_PHAType:
2331
2358
  LABL_PTR_1: event_num_label
2332
2359
  VALIDMAX: 4
2333
2360
 
2334
- P6_Position:
2361
+ p6_position:
2335
2362
  <<: *direct_events
2336
2363
  CATDESC: Priority 6 Position
2337
2364
  DEPEND_1: event_num
@@ -2339,7 +2366,7 @@ P6_Position:
2339
2366
  LABL_PTR_1: event_num_label
2340
2367
  VALIDMAX: 32
2341
2368
 
2342
- P6_SpinAngle:
2369
+ p6_spin_sector:
2343
2370
  <<: *direct_events
2344
2371
  CATDESC: Priority 6 Spin Angle
2345
2372
  DEPEND_1: event_num
@@ -2347,7 +2374,7 @@ P6_SpinAngle:
2347
2374
  LABL_PTR_1: event_num_label
2348
2375
  VALIDMAX: 128
2349
2376
 
2350
- P6_TOF:
2377
+ p6_tof:
2351
2378
  <<: *direct_events
2352
2379
  CATDESC: Priority 6 Time of Flight
2353
2380
  DEPEND_1: event_num
@@ -2356,7 +2383,7 @@ P6_TOF:
2356
2383
  LABL_PTR_1: event_num_label
2357
2384
  VALIDMAX: 1024
2358
2385
 
2359
- P7_APD_ID:
2386
+ p7_apd_id:
2360
2387
  <<: *direct_events
2361
2388
  CATDESC: Priority 7 APD ID
2362
2389
  DEPEND_1: event_num
@@ -2364,7 +2391,7 @@ P7_APD_ID:
2364
2391
  LABL_PTR_1: event_num_label
2365
2392
  VALIDMAX: 32
2366
2393
 
2367
- P7_APDEnergy:
2394
+ p7_apd_energy:
2368
2395
  <<: *direct_events
2369
2396
  CATDESC: Priority 7 APD Energy
2370
2397
  DEPEND_1: event_num
@@ -2373,7 +2400,7 @@ P7_APDEnergy:
2373
2400
  LABL_PTR_1: event_num_label
2374
2401
  VALIDMAX: 512
2375
2402
 
2376
- P7_APDGain:
2403
+ p7_gain:
2377
2404
  <<: *direct_events
2378
2405
  CATDESC: Priority 7 APD Gain
2379
2406
  DEPEND_1: event_num
@@ -2381,14 +2408,14 @@ P7_APDGain:
2381
2408
  LABL_PTR_1: event_num_label
2382
2409
  VALIDMAX: 1
2383
2410
 
2384
- P7_DataQuality:
2411
+ p7_data_quality:
2385
2412
  <<: *direct_events
2386
2413
  CATDESC: Priority 7 Data Quality
2387
2414
  FIELDNAM: Priority 7 Data Quality
2388
2415
  LABLAXIS: " "
2389
2416
  VALIDMAX: 1
2390
2417
 
2391
- P7_EnergyStep:
2418
+ p7_energy_step:
2392
2419
  <<: *direct_events
2393
2420
  CATDESC: Priority 7 Energy Step
2394
2421
  DEPEND_1: event_num
@@ -2396,7 +2423,7 @@ P7_EnergyStep:
2396
2423
  LABL_PTR_1: event_num_label
2397
2424
  VALIDMAX: 128
2398
2425
 
2399
- P7_MultiFlag:
2426
+ p7_multi_flag:
2400
2427
  <<: *direct_events
2401
2428
  CATDESC: Priority 7 Multi Flag
2402
2429
  DEPEND_1: event_num
@@ -2404,14 +2431,14 @@ P7_MultiFlag:
2404
2431
  LABL_PTR_1: event_num_label
2405
2432
  VALIDMAX: 1
2406
2433
 
2407
- P7_NumEvents:
2434
+ p7_num_events:
2408
2435
  <<: *direct_events
2409
2436
  CATDESC: Priority 7 Number of Events
2410
2437
  FIELDNAM: Priority 7 Number of Events
2411
2438
  FILLVAL: 65535
2412
2439
  LABLAXIS: " "
2413
2440
 
2414
- P7_PHAType:
2441
+ p7_type:
2415
2442
  <<: *direct_events
2416
2443
  CATDESC: Priority 7 PHA Type
2417
2444
  DEPEND_1: event_num
@@ -2419,7 +2446,7 @@ P7_PHAType:
2419
2446
  LABL_PTR_1: event_num_label
2420
2447
  VALIDMAX: 4
2421
2448
 
2422
- P7_Position:
2449
+ p7_position:
2423
2450
  <<: *direct_events
2424
2451
  CATDESC: Priority 7 Position
2425
2452
  DEPEND_1: event_num
@@ -2427,7 +2454,7 @@ P7_Position:
2427
2454
  LABL_PTR_1: event_num_label
2428
2455
  VALIDMAX: 32
2429
2456
 
2430
- P7_SpinAngle:
2457
+ p7_spin_sector:
2431
2458
  <<: *direct_events
2432
2459
  CATDESC: Priority 7 Spin Angle
2433
2460
  DEPEND_1: event_num
@@ -2435,7 +2462,7 @@ P7_SpinAngle:
2435
2462
  LABL_PTR_1: event_num_label
2436
2463
  VALIDMAX: 128
2437
2464
 
2438
- P7_TOF:
2465
+ p7_tof:
2439
2466
  <<: *direct_events
2440
2467
  CATDESC: Priority 7 Time of Flight
2441
2468
  DEPEND_1: event_num