imap-processing 0.6.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- imap_processing/__init__.py +34 -0
- imap_processing/_version.py +3 -0
- imap_processing/ccsds/__init__.py +0 -0
- imap_processing/ccsds/ccsds_data.py +55 -0
- imap_processing/ccsds/excel_to_xtce.py +477 -0
- imap_processing/cdf/__init__.py +0 -0
- imap_processing/cdf/cdf_attribute_manager.py +322 -0
- imap_processing/cdf/config/imap_codice_global_cdf_attrs.yaml +212 -0
- imap_processing/cdf/config/imap_codice_l1a_variable_attrs.yaml +1358 -0
- imap_processing/cdf/config/imap_codice_l1b_variable_attrs.yaml +391 -0
- imap_processing/cdf/config/imap_constant_attrs.yaml +33 -0
- imap_processing/cdf/config/imap_default_global_cdf_attrs.yaml +17 -0
- imap_processing/cdf/config/imap_glows_global_cdf_attrs.yaml +41 -0
- imap_processing/cdf/config/imap_glows_l1a_variable_attrs.yaml +499 -0
- imap_processing/cdf/config/imap_glows_l1b_variable_attrs.yaml +334 -0
- imap_processing/cdf/config/imap_hi_global_cdf_attrs.yaml +51 -0
- imap_processing/cdf/config/imap_hi_variable_attrs.yaml +435 -0
- imap_processing/cdf/config/imap_hit_global_cdf_attrs.yaml +27 -0
- imap_processing/cdf/config/imap_hit_l1a_variable_attrs.yaml +493 -0
- imap_processing/cdf/config/imap_hit_l1b_variable_attrs.yaml +564 -0
- imap_processing/cdf/config/imap_idex_global_cdf_attrs.yaml +24 -0
- imap_processing/cdf/config/imap_idex_l1a_variable_attrs.yaml +426 -0
- imap_processing/cdf/config/imap_lo_global_cdf_attrs.yaml +90 -0
- imap_processing/cdf/config/imap_lo_l1a_variable_attrs.yaml +487 -0
- imap_processing/cdf/config/imap_lo_l1b_variable_attrs.yaml +121 -0
- imap_processing/cdf/config/imap_lo_l1c_variable_attrs.yaml +179 -0
- imap_processing/cdf/config/imap_mag_global_cdf_attrs.yaml +97 -0
- imap_processing/cdf/config/imap_mag_l1_variable_attrs.yaml +201 -0
- imap_processing/cdf/config/imap_swapi_global_cdf_attrs.yaml +33 -0
- imap_processing/cdf/config/imap_swapi_variable_attrs.yaml +137 -0
- imap_processing/cdf/config/imap_swe_global_cdf_attrs.yaml +24 -0
- imap_processing/cdf/config/imap_swe_l1a_variable_attrs.yaml +234 -0
- imap_processing/cdf/config/imap_swe_l1b_variable_attrs.yaml +273 -0
- imap_processing/cdf/config/imap_ultra_global_cdf_attrs.yaml +100 -0
- imap_processing/cdf/config/imap_ultra_l1a_variable_attrs.yaml +52 -0
- imap_processing/cdf/config/imap_ultra_l1b_variable_attrs.yaml +297 -0
- imap_processing/cdf/config/imap_ultra_l1c_variable_attrs.yaml +121 -0
- imap_processing/cdf/config/shared/default_global_cdf_attrs_schema.yaml +246 -0
- imap_processing/cdf/config/shared/default_variable_cdf_attrs_schema.yaml +466 -0
- imap_processing/cdf/imap_cdf_manager.py +64 -0
- imap_processing/cdf/utils.py +147 -0
- imap_processing/cli.py +863 -0
- imap_processing/codice/__init__.py +1 -0
- imap_processing/codice/codice_l0.py +54 -0
- imap_processing/codice/codice_l1a.py +558 -0
- imap_processing/codice/codice_l1b.py +194 -0
- imap_processing/codice/constants.py +986 -0
- imap_processing/codice/data/esa_sweep_values.csv +257 -0
- imap_processing/codice/data/lo_stepping_values.csv +129 -0
- imap_processing/codice/decompress.py +142 -0
- imap_processing/codice/packet_definitions/P_COD_NHK.xml +618 -0
- imap_processing/codice/packet_definitions/codice_packet_definition.xml +5073 -0
- imap_processing/codice/utils.py +95 -0
- imap_processing/decom.py +40 -0
- imap_processing/glows/__init__.py +1 -0
- imap_processing/glows/ancillary/l1b_conversion_table_v001.json +42 -0
- imap_processing/glows/l0/__init__.py +0 -0
- imap_processing/glows/l0/decom_glows.py +91 -0
- imap_processing/glows/l0/glows_l0_data.py +194 -0
- imap_processing/glows/l1a/glows_l1a.py +424 -0
- imap_processing/glows/l1a/glows_l1a_data.py +555 -0
- imap_processing/glows/l1b/glows_l1b.py +270 -0
- imap_processing/glows/l1b/glows_l1b_data.py +583 -0
- imap_processing/glows/packet_definitions/GLX_COMBINED.xml +254 -0
- imap_processing/glows/packet_definitions/P_GLX_TMSCDE.xml +97 -0
- imap_processing/glows/packet_definitions/P_GLX_TMSCHIST.xml +215 -0
- imap_processing/glows/utils/__init__.py +0 -0
- imap_processing/glows/utils/constants.py +105 -0
- imap_processing/hi/__init__.py +1 -0
- imap_processing/hi/l0/__init__.py +0 -0
- imap_processing/hi/l0/decom_hi.py +24 -0
- imap_processing/hi/l1a/__init__.py +0 -0
- imap_processing/hi/l1a/hi_l1a.py +73 -0
- imap_processing/hi/l1a/histogram.py +142 -0
- imap_processing/hi/l1a/housekeeping.py +27 -0
- imap_processing/hi/l1a/science_direct_event.py +341 -0
- imap_processing/hi/l1b/__init__.py +0 -0
- imap_processing/hi/l1b/hi_eng_unit_convert_table.csv +154 -0
- imap_processing/hi/l1b/hi_l1b.py +127 -0
- imap_processing/hi/l1c/__init__.py +0 -0
- imap_processing/hi/l1c/hi_l1c.py +228 -0
- imap_processing/hi/packet_definitions/__init__.py +0 -0
- imap_processing/hi/packet_definitions/hi_packet_definition.xml +482 -0
- imap_processing/hi/utils.py +27 -0
- imap_processing/hit/__init__.py +1 -0
- imap_processing/hit/l0/__init__.py +0 -0
- imap_processing/hit/l0/data_classes/housekeeping.py +240 -0
- imap_processing/hit/l0/data_classes/science_packet.py +259 -0
- imap_processing/hit/l0/decom_hit.py +467 -0
- imap_processing/hit/l0/utils/hit_base.py +57 -0
- imap_processing/hit/l1a/__init__.py +0 -0
- imap_processing/hit/l1a/hit_l1a.py +254 -0
- imap_processing/hit/l1b/hit_l1b.py +179 -0
- imap_processing/hit/packet_definitions/hit_packet_definitions.xml +1276 -0
- imap_processing/ialirt/__init__.py +0 -0
- imap_processing/ialirt/l0/__init__.py +0 -0
- imap_processing/ialirt/l0/process_hit.py +220 -0
- imap_processing/ialirt/packet_definitions/__init__.py +0 -0
- imap_processing/ialirt/packet_definitions/ialirt.xml +778 -0
- imap_processing/ialirt/packet_definitions/ialirt_hit.xml +186 -0
- imap_processing/idex/__init__.py +2 -0
- imap_processing/idex/idex_constants.py +27 -0
- imap_processing/idex/idex_l0.py +31 -0
- imap_processing/idex/idex_l1a.py +631 -0
- imap_processing/idex/packet_definitions/idex_packet_definition.xml +3162 -0
- imap_processing/lo/__init__.py +1 -0
- imap_processing/lo/l0/__init__.py +0 -0
- imap_processing/lo/l0/data_classes/science_direct_events.py +215 -0
- imap_processing/lo/l0/data_classes/star_sensor.py +98 -0
- imap_processing/lo/l0/decompression_tables/12_to_16_bit.csv +4097 -0
- imap_processing/lo/l0/decompression_tables/8_to_12_bit.csv +257 -0
- imap_processing/lo/l0/decompression_tables/8_to_16_bit.csv +257 -0
- imap_processing/lo/l0/decompression_tables/decompression_tables.py +75 -0
- imap_processing/lo/l0/lo_apid.py +15 -0
- imap_processing/lo/l0/lo_science.py +150 -0
- imap_processing/lo/l0/utils/binary_string.py +59 -0
- imap_processing/lo/l0/utils/bit_decompression.py +62 -0
- imap_processing/lo/l0/utils/lo_base.py +57 -0
- imap_processing/lo/l1a/__init__.py +0 -0
- imap_processing/lo/l1a/lo_l1a.py +157 -0
- imap_processing/lo/l1b/lo_l1b.py +160 -0
- imap_processing/lo/l1c/lo_l1c.py +180 -0
- imap_processing/lo/packet_definitions/lo_xtce.xml +3541 -0
- imap_processing/mag/__init__.py +2 -0
- imap_processing/mag/constants.py +108 -0
- imap_processing/mag/l0/decom_mag.py +170 -0
- imap_processing/mag/l0/mag_l0_data.py +118 -0
- imap_processing/mag/l1a/mag_l1a.py +317 -0
- imap_processing/mag/l1a/mag_l1a_data.py +1007 -0
- imap_processing/mag/l1b/__init__.py +0 -0
- imap_processing/mag/l1b/imap_calibration_mag_20240229_v01.cdf +0 -0
- imap_processing/mag/l1b/mag_l1b.py +125 -0
- imap_processing/mag/l1c/mag_l1c.py +57 -0
- imap_processing/mag/packet_definitions/MAG_SCI_COMBINED.xml +235 -0
- imap_processing/quality_flags.py +91 -0
- imap_processing/spice/__init__.py +1 -0
- imap_processing/spice/geometry.py +322 -0
- imap_processing/spice/kernels.py +459 -0
- imap_processing/spice/time.py +72 -0
- imap_processing/swapi/__init__.py +1 -0
- imap_processing/swapi/l1/__init__.py +0 -0
- imap_processing/swapi/l1/swapi_l1.py +685 -0
- imap_processing/swapi/l2/__init__.py +0 -0
- imap_processing/swapi/l2/swapi_l2.py +107 -0
- imap_processing/swapi/packet_definitions/__init__.py +0 -0
- imap_processing/swapi/packet_definitions/swapi_packet_definition.xml +708 -0
- imap_processing/swapi/swapi_utils.py +25 -0
- imap_processing/swe/__init__.py +1 -0
- imap_processing/swe/l1a/__init__.py +0 -0
- imap_processing/swe/l1a/swe_l1a.py +48 -0
- imap_processing/swe/l1a/swe_science.py +223 -0
- imap_processing/swe/l1b/engineering_unit_convert_table.csv +65 -0
- imap_processing/swe/l1b/swe_esa_lookup_table.csv +1441 -0
- imap_processing/swe/l1b/swe_l1b.py +49 -0
- imap_processing/swe/l1b/swe_l1b_science.py +557 -0
- imap_processing/swe/packet_definitions/__init__.py +0 -0
- imap_processing/swe/packet_definitions/swe_packet_definition.xml +303 -0
- imap_processing/swe/utils/__init__.py +0 -0
- imap_processing/swe/utils/swe_utils.py +9 -0
- imap_processing/tests/__init__.py +0 -0
- imap_processing/tests/ccsds/test_data/expected_output.xml +171 -0
- imap_processing/tests/ccsds/test_excel_to_xtce.py +285 -0
- imap_processing/tests/cdf/__init__.py +0 -0
- imap_processing/tests/cdf/imap_default_global_cdf_attrs.yaml +8 -0
- imap_processing/tests/cdf/shared/default_global_cdf_attrs_schema.yaml +246 -0
- imap_processing/tests/cdf/shared/default_variable_cdf_attrs_schema.yaml +466 -0
- imap_processing/tests/cdf/test_cdf_attribute_manager.py +353 -0
- imap_processing/tests/cdf/test_data/imap_default_global_test_cdf_attrs.yaml +7 -0
- imap_processing/tests/cdf/test_data/imap_instrument1_global_cdf_attrs.yaml +14 -0
- imap_processing/tests/cdf/test_data/imap_instrument1_level1_variable_attrs.yaml +23 -0
- imap_processing/tests/cdf/test_data/imap_instrument2_global_cdf_attrs.yaml +23 -0
- imap_processing/tests/cdf/test_data/imap_instrument2_level2_variable_attrs.yaml +30 -0
- imap_processing/tests/cdf/test_data/imap_test_global.yaml +26 -0
- imap_processing/tests/cdf/test_data/imap_test_variable.yaml +41 -0
- imap_processing/tests/cdf/test_imap_cdf_manager.py +62 -0
- imap_processing/tests/cdf/test_utils.py +109 -0
- imap_processing/tests/codice/__init__.py +0 -0
- imap_processing/tests/codice/conftest.py +56 -0
- imap_processing/tests/codice/data/eu_unit_lookup_table.csv +101 -0
- imap_processing/tests/codice/data/idle_export_eu.COD_NHK_20230822_122700 2.csv +100 -0
- imap_processing/tests/codice/data/idle_export_raw.COD_NHK_20230822_122700.csv +100 -0
- imap_processing/tests/codice/data/imap_codice_l0_hi-counters-aggregated_20240429_v001.pkts +0 -0
- imap_processing/tests/codice/data/imap_codice_l0_hi-counters-singles_20240429_v001.pkts +0 -0
- imap_processing/tests/codice/data/imap_codice_l0_hi-omni_20240429_v001.pkts +0 -0
- imap_processing/tests/codice/data/imap_codice_l0_hi-pha_20240429_v001.pkts +0 -0
- imap_processing/tests/codice/data/imap_codice_l0_hi-sectored_20240429_v001.pkts +0 -0
- imap_processing/tests/codice/data/imap_codice_l0_hskp_20100101_v001.pkts +0 -0
- imap_processing/tests/codice/data/imap_codice_l0_lo-counters-aggregated_20240429_v001.pkts +0 -0
- imap_processing/tests/codice/data/imap_codice_l0_lo-counters-singles_20240429_v001.pkts +0 -0
- imap_processing/tests/codice/data/imap_codice_l0_lo-nsw-angular_20240429_v001.pkts +0 -0
- imap_processing/tests/codice/data/imap_codice_l0_lo-nsw-priority_20240429_v001.pkts +0 -0
- imap_processing/tests/codice/data/imap_codice_l0_lo-nsw-species_20240429_v001.pkts +0 -0
- imap_processing/tests/codice/data/imap_codice_l0_lo-pha_20240429_v001.pkts +0 -0
- imap_processing/tests/codice/data/imap_codice_l0_lo-sw-angular_20240429_v001.pkts +0 -0
- imap_processing/tests/codice/data/imap_codice_l0_lo-sw-priority_20240429_v001.pkts +0 -0
- imap_processing/tests/codice/data/imap_codice_l0_lo-sw-species_20240429_v001.pkts +0 -0
- imap_processing/tests/codice/data/imap_codice_l1a_hi-counters-aggregated_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1a_hi-counters-singles_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1a_hi-omni_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1a_hi-sectored_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1a_hskp_20100101_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1a_lo-counters-aggregated_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1a_lo-counters-singles_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1a_lo-nsw-angular_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1a_lo-nsw-priority_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1a_lo-nsw-species_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1a_lo-sw-angular_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1a_lo-sw-priority_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1a_lo-sw-species_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1b_hi-counters-aggregated_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1b_hi-counters-singles_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1b_hi-omni_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1b_hi-sectored_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1b_hskp_20100101_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1b_lo-counters-aggregated_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1b_lo-counters-singles_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1b_lo-nsw-angular_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1b_lo-nsw-priority_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1b_lo-nsw-species_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1b_lo-sw-angular_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1b_lo-sw-priority_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1b_lo-sw-species_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/test_codice_l0.py +144 -0
- imap_processing/tests/codice/test_codice_l1a.py +187 -0
- imap_processing/tests/codice/test_codice_l1b.py +60 -0
- imap_processing/tests/codice/test_decompress.py +50 -0
- imap_processing/tests/conftest.py +372 -0
- imap_processing/tests/glows/direct_events_validation_data_l1a.csv +5704 -0
- imap_processing/tests/glows/glows_test_packet_20110921_v01.pkts +0 -0
- imap_processing/tests/glows/test_glows_decom.py +133 -0
- imap_processing/tests/glows/test_glows_l1a_cdf.py +85 -0
- imap_processing/tests/glows/test_glows_l1a_data.py +510 -0
- imap_processing/tests/glows/test_glows_l1b.py +348 -0
- imap_processing/tests/glows/test_glows_l1b_data.py +70 -0
- imap_processing/tests/hi/__init__.py +0 -0
- imap_processing/tests/hi/conftest.py +133 -0
- imap_processing/tests/hi/test_data/l0/20231030_H45_APP_NHK.bin +0 -0
- imap_processing/tests/hi/test_data/l0/20231030_H45_APP_NHK.csv +201 -0
- imap_processing/tests/hi/test_data/l0/20231030_H45_SCI_CNT.bin +0 -0
- imap_processing/tests/hi/test_data/l0/20231030_H45_SCI_DE.bin +0 -0
- imap_processing/tests/hi/test_data/l0/README.txt +54 -0
- imap_processing/tests/hi/test_decom.py +55 -0
- imap_processing/tests/hi/test_hi_l1b.py +31 -0
- imap_processing/tests/hi/test_hi_l1c.py +69 -0
- imap_processing/tests/hi/test_l1a.py +96 -0
- imap_processing/tests/hi/test_l1a_sci_de.py +72 -0
- imap_processing/tests/hi/test_utils.py +15 -0
- imap_processing/tests/hit/PREFLIGHT_raw_record_2023_256_15_59_04_apid1251.pkts +0 -0
- imap_processing/tests/hit/PREFLIGHT_raw_record_2023_256_15_59_04_apid1252.pkts +0 -0
- imap_processing/tests/hit/__init__.py +0 -0
- imap_processing/tests/hit/test_data/imap_hit_l0_hk_20100105_v001.pkts +0 -0
- imap_processing/tests/hit/test_data/sci_sample.ccsds +0 -0
- imap_processing/tests/hit/test_hit_decom.py +230 -0
- imap_processing/tests/hit/test_hit_l1a.py +224 -0
- imap_processing/tests/hit/test_hit_l1b.py +52 -0
- imap_processing/tests/hit/validation_data/hskp_sample_raw.csv +88 -0
- imap_processing/tests/ialirt/__init__.py +0 -0
- imap_processing/tests/ialirt/test_data/l0/IALiRT Raw Packet Telemetry.txt +33 -0
- imap_processing/tests/ialirt/test_data/l0/hit_ialirt_sample.ccsds +0 -0
- imap_processing/tests/ialirt/test_data/l0/hit_ialirt_sample.csv +1001 -0
- imap_processing/tests/ialirt/unit/__init__.py +0 -0
- imap_processing/tests/ialirt/unit/test_decom_ialirt.py +94 -0
- imap_processing/tests/ialirt/unit/test_process_hit.py +226 -0
- imap_processing/tests/idex/__init__.py +0 -0
- imap_processing/tests/idex/conftest.py +22 -0
- imap_processing/tests/idex/imap_idex_l0_raw_20230725_v001.pkts +0 -0
- imap_processing/tests/idex/impact_14_tof_high_data.txt +8189 -0
- imap_processing/tests/idex/test_idex_l0.py +45 -0
- imap_processing/tests/idex/test_idex_l1a.py +91 -0
- imap_processing/tests/lo/__init__.py +0 -0
- imap_processing/tests/lo/test_binary_string.py +21 -0
- imap_processing/tests/lo/test_bit_decompression.py +39 -0
- imap_processing/tests/lo/test_cdfs/imap_lo_l0_raw_20240627_v001.pkts +0 -0
- imap_processing/tests/lo/test_cdfs/imap_lo_l1a_de_20100101_v001.cdf +0 -0
- imap_processing/tests/lo/test_cdfs/imap_lo_l1a_spin_20100101_v001.cdf +0 -0
- imap_processing/tests/lo/test_cdfs/imap_lo_l1b_de_20100101_v001.cdf +0 -0
- imap_processing/tests/lo/test_lo_l1a.py +66 -0
- imap_processing/tests/lo/test_lo_l1b.py +74 -0
- imap_processing/tests/lo/test_lo_l1c.py +66 -0
- imap_processing/tests/lo/test_science_counts.py +41 -0
- imap_processing/tests/lo/test_science_direct_events.py +209 -0
- imap_processing/tests/lo/test_star_sensor.py +35 -0
- imap_processing/tests/mag/imap_mag_l1a_burst-magi_20231025_v001.cdf +0 -0
- imap_processing/tests/mag/mag_l0_test_data.pkts +0 -0
- imap_processing/tests/mag/mag_l0_test_output.csv +37 -0
- imap_processing/tests/mag/mag_l1_test_data.pkts +0 -0
- imap_processing/tests/mag/mag_l1a_test_output.csv +97 -0
- imap_processing/tests/mag/test_mag_decom.py +117 -0
- imap_processing/tests/mag/test_mag_l1a.py +856 -0
- imap_processing/tests/mag/test_mag_l1b.py +77 -0
- imap_processing/tests/mag/test_mag_l1c.py +40 -0
- imap_processing/tests/spice/__init__.py +0 -0
- imap_processing/tests/spice/test_data/imap_ena_sim_metakernel.template +4 -0
- imap_processing/tests/spice/test_data/imap_science_0001.tf +171 -0
- imap_processing/tests/spice/test_data/imap_sclk_0000.tsc +156 -0
- imap_processing/tests/spice/test_data/imap_sim_ck_2hr_2secsampling_with_nutation.bc +0 -0
- imap_processing/tests/spice/test_data/imap_simple_metakernel.template +3 -0
- imap_processing/tests/spice/test_data/imap_spk_demo.bsp +0 -0
- imap_processing/tests/spice/test_data/imap_wkcp.tf +1806 -0
- imap_processing/tests/spice/test_data/naif0012.tls +150 -0
- imap_processing/tests/spice/test_data/sim_1yr_imap_attitude.bc +0 -0
- imap_processing/tests/spice/test_data/sim_1yr_imap_pointing_frame.bc +0 -0
- imap_processing/tests/spice/test_geometry.py +214 -0
- imap_processing/tests/spice/test_kernels.py +272 -0
- imap_processing/tests/spice/test_time.py +35 -0
- imap_processing/tests/swapi/__init__.py +0 -0
- imap_processing/tests/swapi/conftest.py +16 -0
- imap_processing/tests/swapi/l0_data/__init__.py +0 -0
- imap_processing/tests/swapi/l0_data/imap_swapi_l0_raw_20231012_v001.pkts +0 -0
- imap_processing/tests/swapi/l0_validation_data/__init__.py +0 -0
- imap_processing/tests/swapi/l0_validation_data/idle_export_eu.SWP_AUT_20231012_125245.csv +124 -0
- imap_processing/tests/swapi/l0_validation_data/idle_export_eu.SWP_HK_20231012_125245.csv +98 -0
- imap_processing/tests/swapi/l0_validation_data/idle_export_eu.SWP_MG_20231012_125245.csv +9 -0
- imap_processing/tests/swapi/l0_validation_data/idle_export_eu.SWP_SCI_20231012_125245.csv +72 -0
- imap_processing/tests/swapi/l0_validation_data/idle_export_raw.SWP_AUT_20231012_125245.csv +124 -0
- imap_processing/tests/swapi/l0_validation_data/idle_export_raw.SWP_HK_20231012_125245.csv +98 -0
- imap_processing/tests/swapi/l0_validation_data/idle_export_raw.SWP_MG_20231012_125245.csv +9 -0
- imap_processing/tests/swapi/l0_validation_data/idle_export_raw.SWP_SCI_20231012_125245.csv +72 -0
- imap_processing/tests/swapi/test_swapi_decom.py +135 -0
- imap_processing/tests/swapi/test_swapi_l1.py +354 -0
- imap_processing/tests/swapi/test_swapi_l2.py +21 -0
- imap_processing/tests/swe/__init__.py +0 -0
- imap_processing/tests/swe/conftest.py +35 -0
- imap_processing/tests/swe/decompressed/20230927173238_4th_quarter_decompressed.csv +181 -0
- imap_processing/tests/swe/decompressed/20230927173253_1st_quarter_decompressed.csv +181 -0
- imap_processing/tests/swe/decompressed/20230927173308_2nd_quarter_decompressed.csv +181 -0
- imap_processing/tests/swe/decompressed/20230927173323_3rd_quarter_decompressed.csv +181 -0
- imap_processing/tests/swe/l0_data/2024051010_SWE_SCIENCE_packet.bin +0 -0
- imap_processing/tests/swe/l0_validation_data/idle_export_eu.SWE_SCIENCE_20240510_092742.csv +544 -0
- imap_processing/tests/swe/l0_validation_data/idle_export_raw.SWE_SCIENCE_20240510_092742.csv +363 -0
- imap_processing/tests/swe/test_swe_l1a.py +12 -0
- imap_processing/tests/swe/test_swe_l1a_science.py +129 -0
- imap_processing/tests/swe/test_swe_l1b.py +61 -0
- imap_processing/tests/swe/test_swe_l1b_science.py +65 -0
- imap_processing/tests/test_cli.py +229 -0
- imap_processing/tests/test_decom.py +66 -0
- imap_processing/tests/test_quality_flags.py +71 -0
- imap_processing/tests/test_utils.py +107 -0
- imap_processing/tests/ultra/__init__.py +0 -0
- imap_processing/tests/ultra/test_data/l0/FM45_40P_Phi28p5_BeamCal_LinearScan_phi28.50_theta-0.00_20240207T102740.CCSDS +0 -0
- imap_processing/tests/ultra/test_data/l0/FM45_7P_Phi0.0_BeamCal_LinearScan_phi0.04_theta-0.01_20230821T121304.CCSDS +0 -0
- imap_processing/tests/ultra/test_data/l0/FM45_TV_Cycle6_Hot_Ops_Front212_20240124T063837.CCSDS +0 -0
- imap_processing/tests/ultra/test_data/l0/Ultra45_EM_SwRI_Cal_Run7_ThetaScan_20220530T225054.CCSDS +0 -0
- imap_processing/tests/ultra/test_data/l0/ultra45_raw_sc_auxdata_Ultra45_EM_SwRI_Cal_Run7_ThetaScan_20220530T225054.csv +24 -0
- imap_processing/tests/ultra/test_data/l0/ultra45_raw_sc_enaphxtofhangimg_FM45_TV_Cycle6_Hot_Ops_Front212_20240124T063837.csv +105 -0
- imap_processing/tests/ultra/test_data/l0/ultra45_raw_sc_ultraimgrates_Ultra45_EM_SwRI_Cal_Run7_ThetaScan_20220530T225054.csv +24 -0
- imap_processing/tests/ultra/test_data/l0/ultra45_raw_sc_ultrarawimg_withFSWcalcs_FM45_40P_Phi28p5_BeamCal_LinearScan_phi2850_theta-000_20240207T102740.csv +3314 -0
- imap_processing/tests/ultra/test_data/l0/ultra45_raw_sc_ultrarawimgevent_FM45_7P_Phi00_BeamCal_LinearScan_phi004_theta-001_20230821T121304.csv +702 -0
- imap_processing/tests/ultra/unit/__init__.py +0 -0
- imap_processing/tests/ultra/unit/conftest.py +210 -0
- imap_processing/tests/ultra/unit/test_decom_apid_880.py +98 -0
- imap_processing/tests/ultra/unit/test_decom_apid_881.py +50 -0
- imap_processing/tests/ultra/unit/test_decom_apid_883.py +44 -0
- imap_processing/tests/ultra/unit/test_decom_apid_896.py +104 -0
- imap_processing/tests/ultra/unit/test_lookup_utils.py +68 -0
- imap_processing/tests/ultra/unit/test_ultra_l1a.py +338 -0
- imap_processing/tests/ultra/unit/test_ultra_l1b.py +122 -0
- imap_processing/tests/ultra/unit/test_ultra_l1b_annotated.py +57 -0
- imap_processing/tests/ultra/unit/test_ultra_l1b_extended.py +342 -0
- imap_processing/tests/ultra/unit/test_ultra_l1c.py +104 -0
- imap_processing/tests/ultra/unit/test_ultra_l1c_pset_bins.py +35 -0
- imap_processing/ultra/__init__.py +1 -0
- imap_processing/ultra/constants.py +60 -0
- imap_processing/ultra/l0/__init__.py +0 -0
- imap_processing/ultra/l0/decom_tools.py +281 -0
- imap_processing/ultra/l0/decom_ultra.py +278 -0
- imap_processing/ultra/l0/ultra_utils.py +326 -0
- imap_processing/ultra/l1a/__init__.py +0 -0
- imap_processing/ultra/l1a/ultra_l1a.py +319 -0
- imap_processing/ultra/l1b/badtimes.py +26 -0
- imap_processing/ultra/l1b/cullingmask.py +26 -0
- imap_processing/ultra/l1b/de.py +59 -0
- imap_processing/ultra/l1b/extendedspin.py +45 -0
- imap_processing/ultra/l1b/lookup_utils.py +165 -0
- imap_processing/ultra/l1b/ultra_l1b.py +65 -0
- imap_processing/ultra/l1b/ultra_l1b_annotated.py +54 -0
- imap_processing/ultra/l1b/ultra_l1b_extended.py +764 -0
- imap_processing/ultra/l1c/histogram.py +36 -0
- imap_processing/ultra/l1c/pset.py +36 -0
- imap_processing/ultra/l1c/ultra_l1c.py +52 -0
- imap_processing/ultra/l1c/ultra_l1c_pset_bins.py +54 -0
- imap_processing/ultra/lookup_tables/EgyNorm.mem.csv +32769 -0
- imap_processing/ultra/lookup_tables/FM45_Startup1_ULTRA_IMGPARAMS_20240719.csv +2 -0
- imap_processing/ultra/lookup_tables/ultra45_back-pos-luts.csv +4097 -0
- imap_processing/ultra/lookup_tables/ultra45_tdc_norm.csv +2050 -0
- imap_processing/ultra/lookup_tables/ultra90_back-pos-luts.csv +4097 -0
- imap_processing/ultra/lookup_tables/ultra90_tdc_norm.csv +2050 -0
- imap_processing/ultra/lookup_tables/yadjust.csv +257 -0
- imap_processing/ultra/packet_definitions/ULTRA_SCI_COMBINED.xml +547 -0
- imap_processing/ultra/packet_definitions/__init__.py +0 -0
- imap_processing/ultra/utils/__init__.py +0 -0
- imap_processing/ultra/utils/ultra_l1_utils.py +50 -0
- imap_processing/utils.py +413 -0
- imap_processing-0.6.0.dist-info/LICENSE +21 -0
- imap_processing-0.6.0.dist-info/METADATA +107 -0
- imap_processing-0.6.0.dist-info/RECORD +398 -0
- imap_processing-0.6.0.dist-info/WHEEL +4 -0
- imap_processing-0.6.0.dist-info/entry_points.txt +4 -0
|
@@ -0,0 +1,1358 @@
|
|
|
1
|
+
# TODO: Some currently blank attributes may be removed once
|
|
2
|
+
# cdf_attribute_manager.py is updated to only check required attributes.
|
|
3
|
+
# See comment here:
|
|
4
|
+
# https://github.com/IMAP-Science-Operations-Center/imap_processing/pull/711#discussion_r1690212527
|
|
5
|
+
|
|
6
|
+
# TODO: Add any missing CATDESCs
|
|
7
|
+
|
|
8
|
+
# <=== Defaults ===>
|
|
9
|
+
default_attrs: &default
|
|
10
|
+
CATDESC: " "
|
|
11
|
+
DISPLAY_TYPE: no_plot
|
|
12
|
+
FIELDNAM: ""
|
|
13
|
+
FILLVAL: -9223372036854775808
|
|
14
|
+
FORMAT: I12
|
|
15
|
+
LABLAXIS: ""
|
|
16
|
+
REFERENCE_POSITION: ""
|
|
17
|
+
RESOLUTION: ""
|
|
18
|
+
SCALETYP: linear
|
|
19
|
+
TIME_BASE: ""
|
|
20
|
+
TIME_SCALE: ""
|
|
21
|
+
UNITS: dN
|
|
22
|
+
VALIDMIN: -9223372036854775808
|
|
23
|
+
VALIDMAX: 9223372036854775807
|
|
24
|
+
VAR_TYPE: data
|
|
25
|
+
|
|
26
|
+
# <=== Coordinates ===>
|
|
27
|
+
esa_step:
|
|
28
|
+
<<: *default
|
|
29
|
+
CATDESC: Energy per charge (E/q) sweeping step
|
|
30
|
+
FIELDNAM: Energy Index
|
|
31
|
+
FORMAT: I3
|
|
32
|
+
LABLAXIS: Energy Index
|
|
33
|
+
SI_CONVERSION: " > "
|
|
34
|
+
UNITS: ' '
|
|
35
|
+
VALIDMIN: 0
|
|
36
|
+
VALIDMAX: 127
|
|
37
|
+
VAR_TYPE: support_data
|
|
38
|
+
|
|
39
|
+
inst_az:
|
|
40
|
+
<<: *default
|
|
41
|
+
CATDESC: Instrument Azimuth Index
|
|
42
|
+
FIELDNAM: Azimuth Index
|
|
43
|
+
FORMAT: I2
|
|
44
|
+
LABLAXIS: " "
|
|
45
|
+
SI_CONVERSION: " > "
|
|
46
|
+
UNITS: " "
|
|
47
|
+
VALIDMIN: 0
|
|
48
|
+
VALIDMAX: 31
|
|
49
|
+
VAR_TYPE: support_data
|
|
50
|
+
|
|
51
|
+
spin_sector:
|
|
52
|
+
<<: *default
|
|
53
|
+
CATDESC: Spin sector indicating range of spin angles
|
|
54
|
+
FIELDNAM: Spin Sector Index
|
|
55
|
+
FORMAT: I2
|
|
56
|
+
LABLAXIS: " "
|
|
57
|
+
SI_CONVERSION: " > "
|
|
58
|
+
UNITS: " "
|
|
59
|
+
VALIDMIN: 0
|
|
60
|
+
VALIDMAX: 12
|
|
61
|
+
VAR_TYPE: support_data
|
|
62
|
+
|
|
63
|
+
# <=== Dataset Variable Attributes ===>
|
|
64
|
+
# The following are set in multiple data products
|
|
65
|
+
acquisition_time_per_step:
|
|
66
|
+
<<: *default
|
|
67
|
+
CATDESC: Acquisition time for each step of energy
|
|
68
|
+
DEPEND_1: esa_step
|
|
69
|
+
FIELDNAM: Acquisition Time
|
|
70
|
+
FILLVAL: -1.0e+30
|
|
71
|
+
FORMAT: F10.3
|
|
72
|
+
LABLAXIS: " "
|
|
73
|
+
SI_CONVERSION: " > "
|
|
74
|
+
UNITS: ms
|
|
75
|
+
VALIDMIN: 0.000000
|
|
76
|
+
VALIDMAX: 625.000000
|
|
77
|
+
VAR_TYPE: support_data
|
|
78
|
+
|
|
79
|
+
counters_attrs: &counters
|
|
80
|
+
<<: *default
|
|
81
|
+
CATDESC: Fill in at creation
|
|
82
|
+
DEPEND_0: epoch
|
|
83
|
+
DEPEND_1: esa_step
|
|
84
|
+
DISPLAY_TYPE: time_series
|
|
85
|
+
FIELDNAM: Fill in at creation
|
|
86
|
+
UNITS: counts
|
|
87
|
+
VALIDMIN: 0
|
|
88
|
+
VALIDMAX: 8388607 # max value for a signed 24-bit integer
|
|
89
|
+
|
|
90
|
+
energy_table:
|
|
91
|
+
<<: *default
|
|
92
|
+
CATDESC: ElectroStatic Analyzer Energy Values
|
|
93
|
+
DEPEND_1: esa_step
|
|
94
|
+
FIELDNAM: ESA Voltage
|
|
95
|
+
FORMAT: I5
|
|
96
|
+
LABLAXIS: ESA V
|
|
97
|
+
SCALETYP: log
|
|
98
|
+
SI_CONVERSION: " > "
|
|
99
|
+
UNITS: eV
|
|
100
|
+
VALIDMIN: 1
|
|
101
|
+
VALIDMAX: 14100
|
|
102
|
+
VAR_TYPE: support_data
|
|
103
|
+
|
|
104
|
+
# The following are data product-specific
|
|
105
|
+
# hi-counters-aggregated
|
|
106
|
+
hi-counters-aggregated-aggregated:
|
|
107
|
+
<<: *counters
|
|
108
|
+
CATDESC: Aggregated Rates
|
|
109
|
+
FIELDNAM: Rates - Aggregated
|
|
110
|
+
LABL_PTR_1: esa_step
|
|
111
|
+
LABL_PTR_2: inst_az
|
|
112
|
+
LABL_PTR_3: spin_sector
|
|
113
|
+
|
|
114
|
+
# hi-counters-singles
|
|
115
|
+
hi-counters-singles-tcr:
|
|
116
|
+
<<: *counters
|
|
117
|
+
CATDESC: TCR Rates
|
|
118
|
+
FIELDNAM: Rates - Event A (TCR)
|
|
119
|
+
LABL_PTR_1: esa_step
|
|
120
|
+
LABL_PTR_2: inst_az
|
|
121
|
+
LABL_PTR_3: spin_sector
|
|
122
|
+
|
|
123
|
+
hi-counters-singles-ssdo:
|
|
124
|
+
<<: *counters
|
|
125
|
+
CATDESC: SSDO Rates
|
|
126
|
+
FIELDNAM: Rates - Event E (SSDO)
|
|
127
|
+
LABL_PTR_1: esa_step
|
|
128
|
+
LABL_PTR_2: inst_az
|
|
129
|
+
LABL_PTR_3: spin_sector
|
|
130
|
+
|
|
131
|
+
hi-counters-singles-stssd:
|
|
132
|
+
<<: *counters
|
|
133
|
+
CATDESC: STSSD Rates
|
|
134
|
+
FIELDNAM: Rates - Event G (STSSD)
|
|
135
|
+
LABL_PTR_1: esa_step
|
|
136
|
+
LABL_PTR_2: inst_az
|
|
137
|
+
LABL_PTR_3: spin_sector
|
|
138
|
+
|
|
139
|
+
# hi-omni
|
|
140
|
+
hi-omni-h:
|
|
141
|
+
<<: *counters
|
|
142
|
+
CATDESC: Omnidirectional H Counts
|
|
143
|
+
FIELDNAM: H
|
|
144
|
+
LABL_PTR_1: esa_step
|
|
145
|
+
LABL_PTR_2: inst_az
|
|
146
|
+
LABL_PTR_3: spin_sector
|
|
147
|
+
|
|
148
|
+
hi-omni-he3:
|
|
149
|
+
<<: *counters
|
|
150
|
+
CATDESC: Omnidirectional He3 Counts
|
|
151
|
+
FIELDNAM: He3
|
|
152
|
+
LABL_PTR_1: esa_step
|
|
153
|
+
LABL_PTR_2: inst_az
|
|
154
|
+
LABL_PTR_3: spin_sector
|
|
155
|
+
|
|
156
|
+
hi-omni-he4:
|
|
157
|
+
<<: *counters
|
|
158
|
+
CATDESC: Omnidirectional He4 Counts
|
|
159
|
+
FIELDNAM: He4
|
|
160
|
+
LABL_PTR_1: esa_step
|
|
161
|
+
LABL_PTR_2: inst_az
|
|
162
|
+
LABL_PTR_3: spin_sector
|
|
163
|
+
|
|
164
|
+
hi-omni-c:
|
|
165
|
+
<<: *counters
|
|
166
|
+
CATDESC: Omnidirectional C Counts
|
|
167
|
+
FIELDNAM: C
|
|
168
|
+
LABL_PTR_1: esa_step
|
|
169
|
+
LABL_PTR_2: inst_az
|
|
170
|
+
LABL_PTR_3: spin_sector
|
|
171
|
+
|
|
172
|
+
hi-omni-o:
|
|
173
|
+
<<: *counters
|
|
174
|
+
CATDESC: Omnidirectional O Counts
|
|
175
|
+
FIELDNAM: O
|
|
176
|
+
LABL_PTR_1: esa_step
|
|
177
|
+
LABL_PTR_2: inst_az
|
|
178
|
+
LABL_PTR_3: spin_sector
|
|
179
|
+
|
|
180
|
+
hi-omni-ne_mg_si:
|
|
181
|
+
<<: *counters
|
|
182
|
+
CATDESC: Omnidirectional Ne_Mg_Si Counts
|
|
183
|
+
FIELDNAM: Ne_Mg_Si
|
|
184
|
+
LABL_PTR_1: esa_step
|
|
185
|
+
LABL_PTR_2: inst_az
|
|
186
|
+
LABL_PTR_3: spin_sector
|
|
187
|
+
|
|
188
|
+
hi-omni-fe:
|
|
189
|
+
<<: *counters
|
|
190
|
+
CATDESC: Omnidirectional Fe Counts
|
|
191
|
+
FIELDNAM: Fe
|
|
192
|
+
LABL_PTR_1: esa_step
|
|
193
|
+
LABL_PTR_2: inst_az
|
|
194
|
+
LABL_PTR_3: spin_sector
|
|
195
|
+
|
|
196
|
+
hi-omni-uh:
|
|
197
|
+
<<: *counters
|
|
198
|
+
CATDESC: Omnidirectional UH Counts
|
|
199
|
+
FIELDNAM: UH
|
|
200
|
+
LABL_PTR_1: esa_step
|
|
201
|
+
LABL_PTR_2: inst_az
|
|
202
|
+
LABL_PTR_3: spin_sector
|
|
203
|
+
|
|
204
|
+
# hi-sectored
|
|
205
|
+
hi-sectored-h:
|
|
206
|
+
<<: *counters
|
|
207
|
+
CATDESC: Sectored H Counts
|
|
208
|
+
FIELDNAM: H
|
|
209
|
+
LABL_PTR_1: esa_step
|
|
210
|
+
LABL_PTR_2: inst_az
|
|
211
|
+
LABL_PTR_3: spin_sector
|
|
212
|
+
|
|
213
|
+
hi-sectored-he3he4:
|
|
214
|
+
<<: *counters
|
|
215
|
+
CATDESC: Sectored He3He4 Counts
|
|
216
|
+
FIELDNAM: He3He4
|
|
217
|
+
LABL_PTR_1: esa_step
|
|
218
|
+
LABL_PTR_2: inst_az
|
|
219
|
+
LABL_PTR_3: spin_sector
|
|
220
|
+
|
|
221
|
+
hi-sectored-cno:
|
|
222
|
+
<<: *counters
|
|
223
|
+
CATDESC: Sectored CNO Counts
|
|
224
|
+
FIELDNAM: CNO
|
|
225
|
+
LABL_PTR_1: esa_step
|
|
226
|
+
LABL_PTR_2: inst_az
|
|
227
|
+
LABL_PTR_3: spin_sector
|
|
228
|
+
|
|
229
|
+
hi-sectored-fe:
|
|
230
|
+
<<: *counters
|
|
231
|
+
CATDESC: Sectored Fe Counts
|
|
232
|
+
FIELDNAM: Fe
|
|
233
|
+
LABL_PTR_1: esa_step
|
|
234
|
+
LABL_PTR_2: inst_az
|
|
235
|
+
LABL_PTR_3: spin_sector
|
|
236
|
+
|
|
237
|
+
# lo-counters-aggregated
|
|
238
|
+
lo-counters-aggregated-aggregated:
|
|
239
|
+
<<: *counters
|
|
240
|
+
CATDESC: Aggregated Rates
|
|
241
|
+
FIELDNAM: Rates - Aggregated
|
|
242
|
+
LABL_PTR_1: inst_az
|
|
243
|
+
LABL_PTR_2: spin_sector
|
|
244
|
+
LABL_PTR_3: esa_step
|
|
245
|
+
|
|
246
|
+
# lo-counters-singles
|
|
247
|
+
lo-counters-singles-apd_singles:
|
|
248
|
+
<<: *counters
|
|
249
|
+
CATDESC: Single Rates (APD)
|
|
250
|
+
FIELDNAM: Rates - Single (APD)
|
|
251
|
+
LABL_PTR_1: inst_az
|
|
252
|
+
LABL_PTR_2: spin_sector
|
|
253
|
+
LABL_PTR_3: esa_step
|
|
254
|
+
|
|
255
|
+
# lo-sw-angular
|
|
256
|
+
lo-sw-angular-hplus:
|
|
257
|
+
<<: *counters
|
|
258
|
+
CATDESC: Sunward H+ Species
|
|
259
|
+
FIELDNAM: SW - H+
|
|
260
|
+
LABL_PTR_1: inst_az
|
|
261
|
+
LABL_PTR_2: spin_sector
|
|
262
|
+
LABL_PTR_3: esa_step
|
|
263
|
+
|
|
264
|
+
lo-sw-angular-heplusplus:
|
|
265
|
+
<<: *counters
|
|
266
|
+
CATDESC: Sunward He++ Species
|
|
267
|
+
FIELDNAM: SW - He++
|
|
268
|
+
LABL_PTR_1: inst_az
|
|
269
|
+
LABL_PTR_2: spin_sector
|
|
270
|
+
LABL_PTR_3: esa_step
|
|
271
|
+
|
|
272
|
+
lo-sw-angular-oplus6:
|
|
273
|
+
<<: *counters
|
|
274
|
+
CATDESC: Sunward O+6 Species
|
|
275
|
+
FIELDNAM: SW - O+6
|
|
276
|
+
LABL_PTR_1: inst_az
|
|
277
|
+
LABL_PTR_2: spin_sector
|
|
278
|
+
LABL_PTR_3: esa_step
|
|
279
|
+
|
|
280
|
+
lo-sw-angular-fe_loq:
|
|
281
|
+
<<: *counters
|
|
282
|
+
CATDESC: Sunward Fe lowQ Species
|
|
283
|
+
FIELDNAM: SW - Fe lowQ
|
|
284
|
+
LABL_PTR_1: inst_az
|
|
285
|
+
LABL_PTR_2: spin_sector
|
|
286
|
+
LABL_PTR_3: esa_step
|
|
287
|
+
|
|
288
|
+
lo-nsw-angular-heplusplus:
|
|
289
|
+
<<: *counters
|
|
290
|
+
CATDESC: Non-sunward He++ Species
|
|
291
|
+
FIELDNAM: NSW - He++
|
|
292
|
+
LABL_PTR_1: inst_az
|
|
293
|
+
LABL_PTR_2: spin_sector
|
|
294
|
+
LABL_PTR_3: esa_step
|
|
295
|
+
|
|
296
|
+
# lo-sw-priority
|
|
297
|
+
lo-sw-priority-p0_tcrs:
|
|
298
|
+
<<: *counters
|
|
299
|
+
CATDESC: Sunward Sector Triple Coincidence Pickup Ions Priority
|
|
300
|
+
FIELDNAM: SW Sector Triple Coincidence PUI's
|
|
301
|
+
LABL_PTR_1: inst_az
|
|
302
|
+
LABL_PTR_2: spin_sector
|
|
303
|
+
LABL_PTR_3: esa_step
|
|
304
|
+
|
|
305
|
+
lo-sw-priority-p1_hplus:
|
|
306
|
+
<<: *counters
|
|
307
|
+
CATDESC: Sunward Sector H+ Priority
|
|
308
|
+
FIELDNAM: SW Sector H+
|
|
309
|
+
LABL_PTR_1: inst_az
|
|
310
|
+
LABL_PTR_2: spin_sector
|
|
311
|
+
LABL_PTR_3: esa_step
|
|
312
|
+
|
|
313
|
+
lo-sw-priority-p2_heplusplus:
|
|
314
|
+
<<: *counters
|
|
315
|
+
CATDESC: Sunward Sector He++ Priority
|
|
316
|
+
FIELDNAM: SW Sector He++
|
|
317
|
+
LABL_PTR_1: inst_az
|
|
318
|
+
LABL_PTR_2: spin_sector
|
|
319
|
+
LABL_PTR_3: esa_step
|
|
320
|
+
|
|
321
|
+
lo-sw-priority-p3_heavies:
|
|
322
|
+
<<: *counters
|
|
323
|
+
CATDESC: Sunward Sector High Charge State Heavies Priority
|
|
324
|
+
FIELDNAM: SW Sector High Charge State Heavies
|
|
325
|
+
LABL_PTR_1: inst_az
|
|
326
|
+
LABL_PTR_2: spin_sector
|
|
327
|
+
LABL_PTR_3: esa_step
|
|
328
|
+
|
|
329
|
+
lo-sw-priority-p4_dcrs:
|
|
330
|
+
<<: *counters
|
|
331
|
+
CATDESC: Sunward Sector Double Coincidence Pickup Ions Priority
|
|
332
|
+
FIELDNAM: SW Sector Double Coincidence PUI's
|
|
333
|
+
LABL_PTR_1: inst_az
|
|
334
|
+
LABL_PTR_2: spin_sector
|
|
335
|
+
LABL_PTR_3: esa_step
|
|
336
|
+
|
|
337
|
+
# lo-nsw-priority
|
|
338
|
+
lo-nsw-priority-p5_heavies:
|
|
339
|
+
<<: *counters
|
|
340
|
+
CATDESC: Non-sunward Sector Heavies Priority
|
|
341
|
+
FIELDNAM: NSW Sector Heavies
|
|
342
|
+
LABL_PTR_1: inst_az
|
|
343
|
+
LABL_PTR_2: spin_sector
|
|
344
|
+
LABL_PTR_3: esa_step
|
|
345
|
+
|
|
346
|
+
lo-nsw-priority-p6_hplus_heplusplus:
|
|
347
|
+
<<: *counters
|
|
348
|
+
CATDESC: Non-sunward H+ and He++ Priority
|
|
349
|
+
FIELDNAM: NSW H+ and He++
|
|
350
|
+
LABL_PTR_1: inst_az
|
|
351
|
+
LABL_PTR_2: spin_sector
|
|
352
|
+
LABL_PTR_3: esa_step
|
|
353
|
+
|
|
354
|
+
# lo-sw-species
|
|
355
|
+
lo-sw-species-hplus:
|
|
356
|
+
<<: *counters
|
|
357
|
+
CATDESC: H+ Sunward Species
|
|
358
|
+
FIELDNAM: SW - H+
|
|
359
|
+
LABL_PTR_1: inst_az
|
|
360
|
+
LABL_PTR_2: spin_sector
|
|
361
|
+
LABL_PTR_3: esa_step
|
|
362
|
+
|
|
363
|
+
lo-sw-species-heplusplus:
|
|
364
|
+
<<: *counters
|
|
365
|
+
CATDESC: He++ Sunward Species
|
|
366
|
+
FIELDNAM: SW - He++
|
|
367
|
+
LABL_PTR_1: inst_az
|
|
368
|
+
LABL_PTR_2: spin_sector
|
|
369
|
+
LABL_PTR_3: esa_step
|
|
370
|
+
|
|
371
|
+
lo-sw-species-cplus4:
|
|
372
|
+
<<: *counters
|
|
373
|
+
CATDESC: C+4 Sunward Species
|
|
374
|
+
FIELDNAM: SW - C+4
|
|
375
|
+
LABL_PTR_1: inst_az
|
|
376
|
+
LABL_PTR_2: spin_sector
|
|
377
|
+
LABL_PTR_3: esa_step
|
|
378
|
+
|
|
379
|
+
lo-sw-species-cplus5:
|
|
380
|
+
<<: *counters
|
|
381
|
+
CATDESC: C+5 Sunward Species
|
|
382
|
+
FIELDNAM: SW - C+5
|
|
383
|
+
LABL_PTR_1: inst_az
|
|
384
|
+
LABL_PTR_2: spin_sector
|
|
385
|
+
LABL_PTR_3: esa_step
|
|
386
|
+
|
|
387
|
+
lo-sw-species-cplus6:
|
|
388
|
+
<<: *counters
|
|
389
|
+
CATDESC: C+6 Sunward Species
|
|
390
|
+
FIELDNAM: SW - C+6
|
|
391
|
+
LABL_PTR_1: inst_az
|
|
392
|
+
LABL_PTR_2: spin_sector
|
|
393
|
+
LABL_PTR_3: esa_step
|
|
394
|
+
|
|
395
|
+
lo-sw-species-oplus5:
|
|
396
|
+
<<: *counters
|
|
397
|
+
CATDESC: O+5 Sunward Species
|
|
398
|
+
FIELDNAM: SW - O+5
|
|
399
|
+
LABL_PTR_1: inst_az
|
|
400
|
+
LABL_PTR_2: spin_sector
|
|
401
|
+
LABL_PTR_3: esa_step
|
|
402
|
+
|
|
403
|
+
lo-sw-species-oplus6:
|
|
404
|
+
<<: *counters
|
|
405
|
+
CATDESC: O+6 Sunward Species
|
|
406
|
+
FIELDNAM: SW - O+6
|
|
407
|
+
LABL_PTR_1: inst_az
|
|
408
|
+
LABL_PTR_2: spin_sector
|
|
409
|
+
LABL_PTR_3: esa_step
|
|
410
|
+
|
|
411
|
+
lo-sw-species-oplus7:
|
|
412
|
+
<<: *counters
|
|
413
|
+
CATDESC: O+7 Sunward Species
|
|
414
|
+
FIELDNAM: SW - O+7
|
|
415
|
+
LABL_PTR_1: inst_az
|
|
416
|
+
LABL_PTR_2: spin_sector
|
|
417
|
+
LABL_PTR_3: esa_step
|
|
418
|
+
|
|
419
|
+
lo-sw-species-oplus8:
|
|
420
|
+
<<: *counters
|
|
421
|
+
CATDESC: O+8 Sunward Species
|
|
422
|
+
FIELDNAM: SW - O+8
|
|
423
|
+
LABL_PTR_1: inst_az
|
|
424
|
+
LABL_PTR_2: spin_sector
|
|
425
|
+
LABL_PTR_3: esa_step
|
|
426
|
+
|
|
427
|
+
lo-sw-species-ne:
|
|
428
|
+
<<: *counters
|
|
429
|
+
CATDESC: Ne Sunward Species
|
|
430
|
+
FIELDNAM: SW - Ne
|
|
431
|
+
LABL_PTR_1: inst_az
|
|
432
|
+
LABL_PTR_2: spin_sector
|
|
433
|
+
LABL_PTR_3: esa_step
|
|
434
|
+
|
|
435
|
+
lo-sw-species-mg:
|
|
436
|
+
<<: *counters
|
|
437
|
+
CATDESC: Mg Sunward Species
|
|
438
|
+
FIELDNAM: SW - Mg
|
|
439
|
+
LABL_PTR_1: inst_az
|
|
440
|
+
LABL_PTR_2: spin_sector
|
|
441
|
+
LABL_PTR_3: esa_step
|
|
442
|
+
|
|
443
|
+
lo-sw-species-si:
|
|
444
|
+
<<: *counters
|
|
445
|
+
CATDESC: Si Sunward Species
|
|
446
|
+
FIELDNAM: SW - Si
|
|
447
|
+
LABL_PTR_1: inst_az
|
|
448
|
+
LABL_PTR_2: spin_sector
|
|
449
|
+
LABL_PTR_3: esa_step
|
|
450
|
+
|
|
451
|
+
lo-sw-species-fe_loq:
|
|
452
|
+
<<: *counters
|
|
453
|
+
CATDESC: Fe lowQ Sunward Species
|
|
454
|
+
FIELDNAM: SW - Fe lowQ
|
|
455
|
+
LABL_PTR_1: inst_az
|
|
456
|
+
LABL_PTR_2: spin_sector
|
|
457
|
+
LABL_PTR_3: esa_step
|
|
458
|
+
|
|
459
|
+
lo-sw-species-fe_hiq:
|
|
460
|
+
<<: *counters
|
|
461
|
+
CATDESC: Fe highQ Sunward Species
|
|
462
|
+
FIELDNAM: SW - Fe highQ
|
|
463
|
+
LABL_PTR_1: inst_az
|
|
464
|
+
LABL_PTR_2: spin_sector
|
|
465
|
+
LABL_PTR_3: esa_step
|
|
466
|
+
|
|
467
|
+
lo-sw-species-heplus:
|
|
468
|
+
<<: *counters
|
|
469
|
+
CATDESC: He+ Pickup Ion Sunward Species
|
|
470
|
+
FIELDNAM: SW - He+ (PUI)
|
|
471
|
+
LABL_PTR_1: inst_az
|
|
472
|
+
LABL_PTR_2: spin_sector
|
|
473
|
+
LABL_PTR_3: esa_step
|
|
474
|
+
|
|
475
|
+
lo-sw-species-cnoplus:
|
|
476
|
+
<<: *counters
|
|
477
|
+
CATDESC: CNO+ Pickup Ion Sunward Species
|
|
478
|
+
FIELDNAM: SW - CNO+ (PUI)
|
|
479
|
+
LABL_PTR_1: inst_az
|
|
480
|
+
LABL_PTR_2: spin_sector
|
|
481
|
+
LABL_PTR_3: esa_step
|
|
482
|
+
|
|
483
|
+
# lo-nsw-species
|
|
484
|
+
lo-nsw-species-hplus:
|
|
485
|
+
<<: *counters
|
|
486
|
+
CATDESC: H+ Non-sunward Species
|
|
487
|
+
FIELDNAM: NSW - H+
|
|
488
|
+
LABL_PTR_1: inst_az
|
|
489
|
+
LABL_PTR_2: spin_sector
|
|
490
|
+
LABL_PTR_3: esa_step
|
|
491
|
+
|
|
492
|
+
lo-nsw-species-heplusplus:
|
|
493
|
+
<<: *counters
|
|
494
|
+
CATDESC: He++ Non-sunward Species
|
|
495
|
+
FIELDNAM: NSW - He++
|
|
496
|
+
LABL_PTR_1: inst_az
|
|
497
|
+
LABL_PTR_2: spin_sector
|
|
498
|
+
LABL_PTR_3: esa_step
|
|
499
|
+
|
|
500
|
+
lo-nsw-species-c:
|
|
501
|
+
<<: *counters
|
|
502
|
+
CATDESC: C Non-sunward Species
|
|
503
|
+
FIELDNAM: NSW - C
|
|
504
|
+
LABL_PTR_1: inst_az
|
|
505
|
+
LABL_PTR_2: spin_sector
|
|
506
|
+
LABL_PTR_3: esa_step
|
|
507
|
+
|
|
508
|
+
lo-nsw-species-o:
|
|
509
|
+
<<: *counters
|
|
510
|
+
CATDESC: O Non-sunward Species
|
|
511
|
+
FIELDNAM: NSW - O
|
|
512
|
+
LABL_PTR_1: inst_az
|
|
513
|
+
LABL_PTR_2: spin_sector
|
|
514
|
+
LABL_PTR_3: esa_step
|
|
515
|
+
|
|
516
|
+
lo-nsw-species-ne_si_mg:
|
|
517
|
+
<<: *counters
|
|
518
|
+
CATDESC: Ne-Si-Mg Non-sunward Species
|
|
519
|
+
FIELDNAM: NSW - Ne_Si_Mg
|
|
520
|
+
LABL_PTR_1: inst_az
|
|
521
|
+
LABL_PTR_2: spin_sector
|
|
522
|
+
LABL_PTR_3: esa_step
|
|
523
|
+
|
|
524
|
+
lo-nsw-species-fe:
|
|
525
|
+
<<: *counters
|
|
526
|
+
CATDESC: Fe Non-sunward Species
|
|
527
|
+
FIELDNAM: NSW - Fe
|
|
528
|
+
LABL_PTR_1: inst_az
|
|
529
|
+
LABL_PTR_2: spin_sector
|
|
530
|
+
LABL_PTR_3: esa_step
|
|
531
|
+
|
|
532
|
+
lo-nsw-species-heplus:
|
|
533
|
+
<<: *counters
|
|
534
|
+
CATDESC: He+ Non-sunward Species
|
|
535
|
+
FIELDNAM: NSW - He+
|
|
536
|
+
LABL_PTR_1: inst_az
|
|
537
|
+
LABL_PTR_2: spin_sector
|
|
538
|
+
LABL_PTR_3: esa_step
|
|
539
|
+
|
|
540
|
+
lo-nsw-species-cnoplus:
|
|
541
|
+
<<: *counters
|
|
542
|
+
CATDESC: CNO+ Non-sunward Species
|
|
543
|
+
FIELDNAM: NSW - CNO+
|
|
544
|
+
LABL_PTR_1: inst_az
|
|
545
|
+
LABL_PTR_2: spin_sector
|
|
546
|
+
LABL_PTR_3: esa_step
|
|
547
|
+
|
|
548
|
+
# <=== Housekeeping Attributes ===>
|
|
549
|
+
version:
|
|
550
|
+
<<: *default
|
|
551
|
+
CATDESC: CCSDS Packet Version Number (always 0)
|
|
552
|
+
FIELDNAM: Version
|
|
553
|
+
LABLAXIS: VERSION
|
|
554
|
+
VAR_TYPE: support_data
|
|
555
|
+
|
|
556
|
+
type:
|
|
557
|
+
<<: *default
|
|
558
|
+
CATDESC: CCSDS Packet Type Indicator (0=telemetry)
|
|
559
|
+
FIELDNAM: Type
|
|
560
|
+
LABLAXIS: TYPE
|
|
561
|
+
VAR_TYPE: support_data
|
|
562
|
+
|
|
563
|
+
sec_hdr_flg:
|
|
564
|
+
<<: *default
|
|
565
|
+
CATDESC: CCSDS Packet Secondary Header Flag (always 1)
|
|
566
|
+
FIELDNAM: Secondary Header Flag
|
|
567
|
+
LABLAXIS: SEC_HDR_FLG
|
|
568
|
+
VAR_TYPE: support_data
|
|
569
|
+
|
|
570
|
+
pkt_apid:
|
|
571
|
+
<<: *default
|
|
572
|
+
CATDESC: CCSDS Packet Application Process ID
|
|
573
|
+
FIELDNAM: Packet APID
|
|
574
|
+
LABLAXIS: PKT_APID
|
|
575
|
+
VAR_TYPE: support_data
|
|
576
|
+
|
|
577
|
+
seq_flgs:
|
|
578
|
+
<<: *default
|
|
579
|
+
CATDESC: CCSDS Packet Grouping Flags (3=not part of group)
|
|
580
|
+
FIELDNAM: Grouping Flags
|
|
581
|
+
LABLAXIS: SEQ_FLGS
|
|
582
|
+
VAR_TYPE: support_data
|
|
583
|
+
|
|
584
|
+
src_seq_ctr:
|
|
585
|
+
<<: *default
|
|
586
|
+
CATDESC: CCSDS Packet Sequence Count (increments with each new packet)
|
|
587
|
+
FIELDNAM: Packet Sequence Count
|
|
588
|
+
LABLAXIS: SRC_SEQ_CTR
|
|
589
|
+
VAR_TYPE: support_data
|
|
590
|
+
|
|
591
|
+
pkt_len:
|
|
592
|
+
<<: *default
|
|
593
|
+
CATDESC: CCSDS Packet Length (number of bytes after Packet length minus 1)
|
|
594
|
+
FIELDNAM: Packet Length
|
|
595
|
+
LABLAXIS: PKT_LEN
|
|
596
|
+
VAR_TYPE: support_data
|
|
597
|
+
|
|
598
|
+
shcoarse:
|
|
599
|
+
<<: *default
|
|
600
|
+
CATDESC: Secondary Header - Whole-seconds part of SCLK
|
|
601
|
+
FIELDNAM: S/C Time - Seconds
|
|
602
|
+
LABLAXIS: SHCOARSE
|
|
603
|
+
VAR_TYPE: support_data
|
|
604
|
+
|
|
605
|
+
packet_version:
|
|
606
|
+
<<: *default
|
|
607
|
+
FIELDNAM: Packet Version
|
|
608
|
+
LABLAXIS: PACKET_VERSION
|
|
609
|
+
VAR_NOTES: Packet version - this will be incremented each time the format of the packet changes.
|
|
610
|
+
VAR_TYPE: support_data
|
|
611
|
+
|
|
612
|
+
cmdexe:
|
|
613
|
+
<<: *default
|
|
614
|
+
lablaxis: CMDEXE
|
|
615
|
+
FIELDNAM: Number of commands executed
|
|
616
|
+
VAR_NOTES: Number of commands that have been executed. Counts 0-255, then rolls over to 0. Reset via CLR_LATCHED_SINGLE(COMMAND_COUNTS) [also resets cmdjrct, cmdacc, itf_error counts)
|
|
617
|
+
VAR_TYPE: support_data
|
|
618
|
+
|
|
619
|
+
cmdrjct:
|
|
620
|
+
<<: *default
|
|
621
|
+
LABLAXIS: CMDRJCT
|
|
622
|
+
FIELDNAM: Number of commands rejected
|
|
623
|
+
VAR_NOTES: Number of commands that have been rejected. Counts 0-255, then rolls over to 0. Reset via CLR_LATCHED_SINGLE(COMMAND_COUNTS) [also resets cmdexe, cmdacc, itf_error counts)
|
|
624
|
+
VAR_TYPE: support_data
|
|
625
|
+
|
|
626
|
+
last_opcode:
|
|
627
|
+
<<: *default
|
|
628
|
+
LABLAXIS: LAST_OPCODE
|
|
629
|
+
FIELDNAM: Last executed opcode
|
|
630
|
+
CATDESC: Opcode of the last executed command
|
|
631
|
+
VAR_TYPE: support_data
|
|
632
|
+
|
|
633
|
+
mode:
|
|
634
|
+
<<: *default
|
|
635
|
+
LABLAXIS: MODE
|
|
636
|
+
FIELDNAM: Instrument Mode
|
|
637
|
+
CATDESC: Current operating mode
|
|
638
|
+
VAR_TYPE: support_data
|
|
639
|
+
|
|
640
|
+
memop_state:
|
|
641
|
+
<<: *default
|
|
642
|
+
LABLAXIS: MEMOP_STATE
|
|
643
|
+
FIELDNAM: Memory Operation State
|
|
644
|
+
CATDESC: State of the memory-operations handler
|
|
645
|
+
VAR_TYPE: support_data
|
|
646
|
+
|
|
647
|
+
memdump_state:
|
|
648
|
+
<<: *default
|
|
649
|
+
LABLAXIS: MEMDUMP_STATE
|
|
650
|
+
FIELDNAM: Memory Dump State
|
|
651
|
+
CATDESC: State of the memory-dump handler (busy/idle)
|
|
652
|
+
VAR_TYPE: support_data
|
|
653
|
+
|
|
654
|
+
itf_err_cnt:
|
|
655
|
+
<<: *default
|
|
656
|
+
LABLAXIS: ITF_ERR_CNT
|
|
657
|
+
FIELDNAM: Number of ITF errors encountered
|
|
658
|
+
VAR_NOTES: Number of ITF Errors that have been detected; counts 0-3, then rolls over to 0. Reset via CLR_LATCHED_SINGLE(COMMAND_COUNTS) [also resets cmdexe, cmdjrct, cmdacc counts)
|
|
659
|
+
VAR_TYPE: support_data
|
|
660
|
+
|
|
661
|
+
spin_cnt:
|
|
662
|
+
<<: *default
|
|
663
|
+
LABLAXIS: SPIN_CNT
|
|
664
|
+
FIELDNAM: Number of spin pulses received
|
|
665
|
+
CATDESC: Number of spin pulses received
|
|
666
|
+
VAR_TYPE: support_data
|
|
667
|
+
|
|
668
|
+
missed_pps_cnt:
|
|
669
|
+
<<: *default
|
|
670
|
+
LABLAXIS: MISSED_PPS_CNT
|
|
671
|
+
FIELDNAM: Number of missed PPS pulses
|
|
672
|
+
VAR_NOTES: Number of missed PPS pulses. Counts 0-3, then freezes at 3. Reset via CLR_LATCHED_SINGLE(PPS_STATS)
|
|
673
|
+
VAR_TYPE: support_data
|
|
674
|
+
|
|
675
|
+
wdog_timeout_cnt:
|
|
676
|
+
<<: *default
|
|
677
|
+
LABLAXIS: WDOG_TIMEOUT_CNT
|
|
678
|
+
FIELDNAM: Number of watchdog timeouts since last reset
|
|
679
|
+
CATDESC: Number of times the watchdog has timed out.
|
|
680
|
+
VAR_TYPE: support_data
|
|
681
|
+
|
|
682
|
+
hv_plug:
|
|
683
|
+
<<: *default
|
|
684
|
+
LABLAXIS: HV_PLUG
|
|
685
|
+
FIELDNAM: Status of the HV Disable Plug
|
|
686
|
+
VAR_NOTES: Current status of the HV SAFE/DISABLE plugs -- "SAFE" - all HVPS outputs provide 1/10 the commanded voltage; "DIS" - all HVPS outputs provide 0V, regardless of commanded voltage; "FULL" - HVPS outputs provide the full commanded voltage
|
|
687
|
+
VAR_TYPE: support_data
|
|
688
|
+
|
|
689
|
+
cmd_fifo_overrun_cnt:
|
|
690
|
+
<<: *default
|
|
691
|
+
LABLAXIS: CMD_FIFO_OVERRUN_CNT
|
|
692
|
+
FIELDNAM: Number of Command FIFO Overruns
|
|
693
|
+
VAR_TYPE: support_data
|
|
694
|
+
|
|
695
|
+
cmd_fifo_underrun_cnt:
|
|
696
|
+
<<: *default
|
|
697
|
+
LABLAXIS: CMD_FIFO_UNDERRUN_CNT
|
|
698
|
+
FIELDNAM: Number of Command FIFO Underruns
|
|
699
|
+
VAR_TYPE: support_data
|
|
700
|
+
|
|
701
|
+
cmd_fifo_parity_err_cnt:
|
|
702
|
+
<<: *default
|
|
703
|
+
LABLAXIS: CMD_FIFO_PARITY_ERR_CNT
|
|
704
|
+
FIELDNAM: Number of Command FIFO Parity Errors
|
|
705
|
+
VAR_TYPE: support_data
|
|
706
|
+
|
|
707
|
+
cmd_fifo_frame_err_cnt:
|
|
708
|
+
<<: *default
|
|
709
|
+
LABLAXIS: CMD_FIFO_FRAME_ERR_CNT
|
|
710
|
+
FIELDNAM: Number of Command FIFO Frame Errors
|
|
711
|
+
VAR_TYPE: support_data
|
|
712
|
+
|
|
713
|
+
tlm_fifo_overrun_cnt:
|
|
714
|
+
<<: *default
|
|
715
|
+
LABLAXIS: TLM_FIFO_OVERRUN_CNT
|
|
716
|
+
FIELDNAM: Number of Telemetry FIFO Overruns
|
|
717
|
+
VAR_TYPE: support_data
|
|
718
|
+
|
|
719
|
+
spin_bin_period:
|
|
720
|
+
<<: *default
|
|
721
|
+
LABLAXIS: SPIN_BIN_PERIOD
|
|
722
|
+
FIELDNAM: Spin Bin Period
|
|
723
|
+
VAR_TYPE: support_data
|
|
724
|
+
|
|
725
|
+
spin_period:
|
|
726
|
+
<<: *default
|
|
727
|
+
LABLAXIS: SPIN_PERIOD
|
|
728
|
+
FIELDNAM: Current Spin Period
|
|
729
|
+
VAR_TYPE: support_data
|
|
730
|
+
|
|
731
|
+
spin_period_timer:
|
|
732
|
+
<<: *default
|
|
733
|
+
LABLAXIS: SPIN_PERIOD_TIMER
|
|
734
|
+
FIELDNAM: Spin Period Timer
|
|
735
|
+
VAR_TYPE: support_data
|
|
736
|
+
|
|
737
|
+
spin_timestamp_seconds:
|
|
738
|
+
<<: *default
|
|
739
|
+
LABLAXIS: SPIN_TIMESTAMP_SECONDS
|
|
740
|
+
FIELDNAM: Full-seconds timestamp of the most recent spin pulse
|
|
741
|
+
VAR_TYPE: support_data
|
|
742
|
+
|
|
743
|
+
spin_timestamp_subseconds:
|
|
744
|
+
<<: *default
|
|
745
|
+
LABLAXIS: SPIN_TIMESTAMP_SUBSECONDS
|
|
746
|
+
FIELDNAM: Sub-seconds timestamp of the most recent spin pulse
|
|
747
|
+
VAR_TYPE: support_data
|
|
748
|
+
|
|
749
|
+
spin_bin_index:
|
|
750
|
+
<<: *default
|
|
751
|
+
LABLAXIS: SPIN_BIN_INDEX
|
|
752
|
+
FIELDNAM: Spin Bin Index
|
|
753
|
+
VAR_TYPE: support_data
|
|
754
|
+
|
|
755
|
+
optics_hv_cmd_err_cnt:
|
|
756
|
+
<<: *default
|
|
757
|
+
LABLAXIS: OPTICS_HV_CMD_ERR_CNT
|
|
758
|
+
FIELDNAM: Optics HV - Number of command errors
|
|
759
|
+
VAR_TYPE: support_data
|
|
760
|
+
|
|
761
|
+
spare_1:
|
|
762
|
+
<<: *default
|
|
763
|
+
LABLAXIS: SPARE_1
|
|
764
|
+
FIELDNAM: Spare for alignment
|
|
765
|
+
VAR_TYPE: support_data
|
|
766
|
+
|
|
767
|
+
optics_hv_arm_err_cnt:
|
|
768
|
+
<<: *default
|
|
769
|
+
LABLAXIS: OPTICS_HV_ARM_ERR_CNT
|
|
770
|
+
FIELDNAM: Optics HV - Number of arm errors
|
|
771
|
+
VAR_TYPE: support_data
|
|
772
|
+
|
|
773
|
+
optics_hv_master_enable:
|
|
774
|
+
<<: *default
|
|
775
|
+
LABLAXIS: OPTICS_HV_MASTER_ENABLE
|
|
776
|
+
FIELDNAM: Optics HV - Master Enable
|
|
777
|
+
VAR_TYPE: support_data
|
|
778
|
+
|
|
779
|
+
optics_hv_n15kv_enable:
|
|
780
|
+
<<: *default
|
|
781
|
+
LABLAXIS: OPTICS_HV_N15KV_ENABLE
|
|
782
|
+
FIELDNAM: Optics HV - p15KV Enable
|
|
783
|
+
VAR_TYPE: support_data
|
|
784
|
+
|
|
785
|
+
optics_hv_esa_b_enable:
|
|
786
|
+
<<: *default
|
|
787
|
+
LABLAXIS: OPTICS_HV_ESA_B_ENABLE
|
|
788
|
+
FIELDNAM: Optics HV - ESA B Enable
|
|
789
|
+
VAR_TYPE: support_data
|
|
790
|
+
|
|
791
|
+
spare_2:
|
|
792
|
+
<<: *default
|
|
793
|
+
LABLAXIS: SPARE_2
|
|
794
|
+
FIELDNAM: Spare (was Optics HV - ESA B Range)
|
|
795
|
+
VAR_TYPE: support_data
|
|
796
|
+
|
|
797
|
+
optics_hv_esa_a_enable:
|
|
798
|
+
<<: *default
|
|
799
|
+
LABLAXIS: OPTICS_HV_ESA_A_ENABLE
|
|
800
|
+
FIELDNAM: Optics HV - ESA A Enable
|
|
801
|
+
VAR_TYPE: support_data
|
|
802
|
+
|
|
803
|
+
spare_3:
|
|
804
|
+
<<: *default
|
|
805
|
+
LABLAXIS: SPARE_3
|
|
806
|
+
FIELDNAM: Spare (was Optics HV - ESA A Range)
|
|
807
|
+
VAR_TYPE: support_data
|
|
808
|
+
|
|
809
|
+
sensor_hv_cmd_err_cnt:
|
|
810
|
+
<<: *default
|
|
811
|
+
LABLAXIS: SENSOR_HV_CMD_ERR_CNT
|
|
812
|
+
FIELDNAM: Sensor HV - Number of command errors
|
|
813
|
+
VAR_TYPE: support_data
|
|
814
|
+
|
|
815
|
+
sensor_hv_arm_err_cnt:
|
|
816
|
+
<<: *default
|
|
817
|
+
LABLAXIS: SENSOR_HV_ARM_ERR_CNT
|
|
818
|
+
FIELDNAM: Sensor HV - Number of Arm errors
|
|
819
|
+
VAR_TYPE: support_data
|
|
820
|
+
|
|
821
|
+
sensor_hv_master_enable:
|
|
822
|
+
<<: *default
|
|
823
|
+
LABLAXIS: SENSOR_HV_MASTER_ENABLE
|
|
824
|
+
FIELDNAM: Sensor HV - Master Enable
|
|
825
|
+
VAR_TYPE: support_data
|
|
826
|
+
|
|
827
|
+
sensor_hv_apd_bias_enable:
|
|
828
|
+
<<: *default
|
|
829
|
+
LABLAXIS: SENSOR_HV_APD_BIAS_ENABLE
|
|
830
|
+
FIELDNAM: Sensor HV - APD Bias Enable
|
|
831
|
+
VAR_TYPE: support_data
|
|
832
|
+
|
|
833
|
+
sensor_hv_p6kv_enable:
|
|
834
|
+
<<: *default
|
|
835
|
+
LABLAXIS: SENSOR_HV_P6KV_ENABLE
|
|
836
|
+
FIELDNAM: Sensor HV - p6KV Enable
|
|
837
|
+
VAR_TYPE: support_data
|
|
838
|
+
|
|
839
|
+
sensor_hv_stop_mcp_enable:
|
|
840
|
+
<<: *default
|
|
841
|
+
LABLAXIS: SENSOR_HV_STOP_MCP_ENABLE
|
|
842
|
+
FIELDNAM: Sensor HV - Stop MCP Enable
|
|
843
|
+
VAR_TYPE: support_data
|
|
844
|
+
|
|
845
|
+
sensor_hv_start_mcp_enable:
|
|
846
|
+
<<: *default
|
|
847
|
+
LABLAXIS: SENSOR_HV_START_MCP_ENABLE
|
|
848
|
+
FIELDNAM: Sensor HV - Start MCP Enable
|
|
849
|
+
VAR_TYPE: support_data
|
|
850
|
+
|
|
851
|
+
spare_4:
|
|
852
|
+
<<: *default
|
|
853
|
+
LABLAXIS: SPARE_4
|
|
854
|
+
FIELDNAM: Spare for alignment
|
|
855
|
+
VAR_TYPE: support_data
|
|
856
|
+
|
|
857
|
+
optics_hv_dac_esa_a:
|
|
858
|
+
<<: *default
|
|
859
|
+
LABLAXIS: OPTICS_HV_DAC_ESA_A
|
|
860
|
+
FIELDNAM: Optics HV - ESA A DAC
|
|
861
|
+
VAR_TYPE: support_data
|
|
862
|
+
|
|
863
|
+
optics_hv_dac_esa_b:
|
|
864
|
+
<<: *default
|
|
865
|
+
LABLAXIS: OPTICS_HV_DAC_ESA_B
|
|
866
|
+
FIELDNAM: Optics HV - ESA B DAC
|
|
867
|
+
VAR_TYPE: support_data
|
|
868
|
+
|
|
869
|
+
optics_hv_dac_ionbulk:
|
|
870
|
+
<<: *default
|
|
871
|
+
LABLAXIS: OPTICS_HV_DAC_IONBULK
|
|
872
|
+
FIELDNAM: Optics HV - Ion Bulk DAC
|
|
873
|
+
VAR_TYPE: support_data
|
|
874
|
+
|
|
875
|
+
sensor_hv_dac_ssdo:
|
|
876
|
+
<<: *default
|
|
877
|
+
LABLAXIS: SENSOR_HV_DAC_SSDO
|
|
878
|
+
FIELDNAM: Sensor HV - SSDO Enable
|
|
879
|
+
VAR_TYPE: support_data
|
|
880
|
+
|
|
881
|
+
sensor_hv_dac_ssdb:
|
|
882
|
+
<<: *default
|
|
883
|
+
LABLAXIS: SENSOR_HV_DAC_SSDB
|
|
884
|
+
FIELDNAM: Sensor HV - SSD Bias Enable
|
|
885
|
+
VAR_TYPE: support_data
|
|
886
|
+
|
|
887
|
+
sensor_hv_dac_apdb:
|
|
888
|
+
<<: *default
|
|
889
|
+
LABLAXIS: SENSOR_HV_DAC_APDB
|
|
890
|
+
FIELDNAM: Sensor HV - ADP Bias Enable
|
|
891
|
+
VAR_TYPE: support_data
|
|
892
|
+
|
|
893
|
+
sensor_hv_dac_apdb2:
|
|
894
|
+
<<: *default
|
|
895
|
+
LABLAXIS: SENSOR_HV_DAC_APDB2
|
|
896
|
+
FIELDNAM: Sensor HV - ADP Bias 2 Enable
|
|
897
|
+
VAR_TYPE: support_data
|
|
898
|
+
|
|
899
|
+
sensor_hv_dac_start_mcp:
|
|
900
|
+
<<: *default
|
|
901
|
+
LABLAXIS: SENSOR_HV_DAC_START_MCP
|
|
902
|
+
FIELDNAM: Sensor HV - Start MCP DAC
|
|
903
|
+
VAR_TYPE: support_data
|
|
904
|
+
|
|
905
|
+
sensor_hv_dac_stop_mcp:
|
|
906
|
+
<<: *default
|
|
907
|
+
LABLAXIS: SENSOR_HV_DAC_STOP_MCP
|
|
908
|
+
FIELDNAM: Sensor HV - Stop MCP DAC
|
|
909
|
+
VAR_TYPE: support_data
|
|
910
|
+
|
|
911
|
+
sensor_hv_dac_stop_optics_grid:
|
|
912
|
+
<<: *default
|
|
913
|
+
LABLAXIS: SENSOR_HV_DAC_STOP_OPTICS_GRID
|
|
914
|
+
FIELDNAM: Sensor HV - Stop Optics Grid DAC
|
|
915
|
+
VAR_TYPE: support_data
|
|
916
|
+
|
|
917
|
+
sbulk_vmon:
|
|
918
|
+
<<: *default
|
|
919
|
+
LABLAXIS: SBULK_VMON
|
|
920
|
+
FIELDNAM: HVPS – V1 -- Sensor Bulk Voltage Monitor
|
|
921
|
+
VAR_TYPE: support_data
|
|
922
|
+
|
|
923
|
+
ssdo_vmon:
|
|
924
|
+
<<: *default
|
|
925
|
+
LABLAXIS: SSDO_VMON
|
|
926
|
+
FIELDNAM: HVPS – V2 -- SSD Optics Voltage Monitor
|
|
927
|
+
VAR_TYPE: support_data
|
|
928
|
+
|
|
929
|
+
ssdb_vmon:
|
|
930
|
+
<<: *default
|
|
931
|
+
LABLAXIS: SSDB_VMON
|
|
932
|
+
FIELDNAM: HVPS – V3 -- SSD Bias Voltage Monitor
|
|
933
|
+
VAR_TYPE: support_data
|
|
934
|
+
|
|
935
|
+
apdb1_vmon:
|
|
936
|
+
<<: *default
|
|
937
|
+
LABLAXIS: APDB1_VMON
|
|
938
|
+
FIELDNAM: HVPS – V4 -- APD1 Bias Voltage Monitor
|
|
939
|
+
VAR_TYPE: support_data
|
|
940
|
+
|
|
941
|
+
apdb2_vmon:
|
|
942
|
+
<<: *default
|
|
943
|
+
LABLAXIS: APDB2_VMON
|
|
944
|
+
FIELDNAM: HVPS – V5 -- APD1 Bias Voltage Monitor
|
|
945
|
+
VAR_TYPE: support_data
|
|
946
|
+
|
|
947
|
+
iobulk_vmon:
|
|
948
|
+
<<: *default
|
|
949
|
+
LABLAXIS: IOBULK_VMON
|
|
950
|
+
FIELDNAM: HVPS – V6 -- IO Bulk Voltage Monitor
|
|
951
|
+
VAR_TYPE: support_data
|
|
952
|
+
|
|
953
|
+
esaa_hi_vmon:
|
|
954
|
+
<<: *default
|
|
955
|
+
LABLAXIS: ESAA_HI_VMON
|
|
956
|
+
FIELDNAM: HVPS – V7 -- ESA A High Range Voltage Monitor
|
|
957
|
+
VAR_TYPE: support_data
|
|
958
|
+
|
|
959
|
+
spare_62:
|
|
960
|
+
<<: *default
|
|
961
|
+
LABLAXIS: SPARE_62
|
|
962
|
+
FIELDNAM: Spare (was ESAA_LO_VMON)
|
|
963
|
+
VAR_TYPE: support_data
|
|
964
|
+
|
|
965
|
+
strmcp_vmon:
|
|
966
|
+
<<: *default
|
|
967
|
+
LABLAXIS: STRMCP_VMON
|
|
968
|
+
FIELDNAM: HVPS – V9 -- Start MCP Voltage Monitor
|
|
969
|
+
VAR_TYPE: support_data
|
|
970
|
+
|
|
971
|
+
stpmcp_vmon:
|
|
972
|
+
<<: *default
|
|
973
|
+
LABLAXIS: STPMCP_VMON
|
|
974
|
+
FIELDNAM: HVPS – V10 -- Stop MCP Voltage Monitor
|
|
975
|
+
VAR_TYPE: support_data
|
|
976
|
+
|
|
977
|
+
stpog_vmon:
|
|
978
|
+
<<: *default
|
|
979
|
+
LABLAXIS: STPOG_VMON
|
|
980
|
+
FIELDNAM: HVPS – V11 -- Stop Optics Grid Voltage Monitor
|
|
981
|
+
VAR_TYPE: support_data
|
|
982
|
+
|
|
983
|
+
apdb1_imon:
|
|
984
|
+
<<: *default
|
|
985
|
+
LABLAXIS: APDB1_IMON
|
|
986
|
+
FIELDNAM: HVPS – V12 -- APD1 Bias Current Monitor
|
|
987
|
+
VAR_TYPE: support_data
|
|
988
|
+
|
|
989
|
+
esab_hi_vmon:
|
|
990
|
+
<<: *default
|
|
991
|
+
LABLAXIS: ESAB_HI_VMON
|
|
992
|
+
FIELDNAM: HVPS – V13 -- ESA A High Range Voltage Monitor
|
|
993
|
+
VAR_TYPE: support_data
|
|
994
|
+
|
|
995
|
+
spare_68:
|
|
996
|
+
<<: *default
|
|
997
|
+
LABLAXIS: SPARE_68
|
|
998
|
+
FIELDNAM: Spare (was ESAB_LO_VMON)
|
|
999
|
+
VAR_TYPE: support_data
|
|
1000
|
+
|
|
1001
|
+
apdb2_imon:
|
|
1002
|
+
<<: *default
|
|
1003
|
+
LABLAXIS: APDB2_IMON
|
|
1004
|
+
FIELDNAM: HVPS – V15 -- APD2 Bias Current Monitor
|
|
1005
|
+
VAR_TYPE: support_data
|
|
1006
|
+
|
|
1007
|
+
ssdb_imon:
|
|
1008
|
+
<<: *default
|
|
1009
|
+
LABLAXIS: SSDB_IMON
|
|
1010
|
+
FIELDNAM: HVPS – V16 -- SSD Bias Current Monitor
|
|
1011
|
+
VAR_TYPE: support_data
|
|
1012
|
+
|
|
1013
|
+
stpmcp_imon:
|
|
1014
|
+
<<: *default
|
|
1015
|
+
LABLAXIS: STPMCP_IMON
|
|
1016
|
+
FIELDNAM: HVPS – I1 -- Stop MCP Current Monitor
|
|
1017
|
+
VAR_TYPE: support_data
|
|
1018
|
+
|
|
1019
|
+
iobulk_imon:
|
|
1020
|
+
<<: *default
|
|
1021
|
+
LABLAXIS: IOBULK_IMON
|
|
1022
|
+
FIELDNAM: HVPS – I2 -- IO Bulk Current Monitor
|
|
1023
|
+
VAR_TYPE: support_data
|
|
1024
|
+
|
|
1025
|
+
strmcp_imon:
|
|
1026
|
+
<<: *default
|
|
1027
|
+
LABLAXIS: STRMCP_IMON
|
|
1028
|
+
FIELDNAM: HVPS – I3 -- Start MCP Current Monitor
|
|
1029
|
+
VAR_TYPE: support_data
|
|
1030
|
+
|
|
1031
|
+
mdm25p_14_t:
|
|
1032
|
+
<<: *default
|
|
1033
|
+
LABLAXIS: MDM25P_14_T
|
|
1034
|
+
FIELDNAM: System Temperature 1 -- MDM25P – 14 Temperature
|
|
1035
|
+
VAR_TYPE: support_data
|
|
1036
|
+
|
|
1037
|
+
mdm25p_15_t:
|
|
1038
|
+
<<: *default
|
|
1039
|
+
LABLAXIS: MDM25P_15_T
|
|
1040
|
+
FIELDNAM: System Temperature 2 -- MDM25P – 15 Temperature
|
|
1041
|
+
VAR_TYPE: support_data
|
|
1042
|
+
|
|
1043
|
+
mdm25p_16_t:
|
|
1044
|
+
<<: *default
|
|
1045
|
+
LABLAXIS: MDM25P_16_T
|
|
1046
|
+
FIELDNAM: System Temperature 3 -- MDM25P – 16 Temperature
|
|
1047
|
+
VAR_TYPE: support_data
|
|
1048
|
+
|
|
1049
|
+
mdm51p_27_t:
|
|
1050
|
+
<<: *default
|
|
1051
|
+
LABLAXIS: MDM51P_27_T
|
|
1052
|
+
FIELDNAM: LO Temperature -- MDM51P – 27 Temperature
|
|
1053
|
+
VAR_TYPE: support_data
|
|
1054
|
+
|
|
1055
|
+
io_hvps_t:
|
|
1056
|
+
<<: *default
|
|
1057
|
+
LABLAXIS: IO_HVPS_T
|
|
1058
|
+
FIELDNAM: HVPS Temperature -- IO-HVPS Temperature
|
|
1059
|
+
VAR_TYPE: support_data
|
|
1060
|
+
|
|
1061
|
+
lvps_12v_t:
|
|
1062
|
+
<<: *default
|
|
1063
|
+
LABLAXIS: LVPS_12V_T
|
|
1064
|
+
FIELDNAM: LVPS Temperature 1 -- LVPS – 12V Temperature
|
|
1065
|
+
VAR_TYPE: support_data
|
|
1066
|
+
|
|
1067
|
+
lvps_5v_t:
|
|
1068
|
+
<<: *default
|
|
1069
|
+
LABLAXIS: LVPS_5V_T
|
|
1070
|
+
FIELDNAM: LVPS Temperature 2 -- LVPS – 5V Temperature
|
|
1071
|
+
VAR_TYPE: support_data
|
|
1072
|
+
|
|
1073
|
+
lvps_3p3v_t:
|
|
1074
|
+
<<: *default
|
|
1075
|
+
LABLAXIS: LVPS_3P3V_T
|
|
1076
|
+
FIELDNAM: LVPS Temperature 3 -- LVPS – +3.3V Temperature
|
|
1077
|
+
VAR_TYPE: support_data
|
|
1078
|
+
|
|
1079
|
+
lvps_3p3v:
|
|
1080
|
+
<<: *default
|
|
1081
|
+
LABLAXIS: LVPS_3P3V
|
|
1082
|
+
FIELDNAM: LVPS – Digital V1 -- LVPS – +3.3V
|
|
1083
|
+
VAR_TYPE: support_data
|
|
1084
|
+
|
|
1085
|
+
lvps_5v:
|
|
1086
|
+
<<: *default
|
|
1087
|
+
LABLAXIS: LVPS_5V
|
|
1088
|
+
FIELDNAM: LVPS – Digital V2 -- LVPS – +5V
|
|
1089
|
+
VAR_TYPE: support_data
|
|
1090
|
+
|
|
1091
|
+
lvps_n5v:
|
|
1092
|
+
<<: *default
|
|
1093
|
+
LABLAXIS: LVPS_N5V
|
|
1094
|
+
FIELDNAM: LVPS – Digital V3 -- LVPS – -5V
|
|
1095
|
+
VAR_TYPE: support_data
|
|
1096
|
+
|
|
1097
|
+
lvps_12v:
|
|
1098
|
+
<<: *default
|
|
1099
|
+
LABLAXIS: LVPS_12V
|
|
1100
|
+
FIELDNAM: LVPS – Digital V4 -- LVPS – +12V
|
|
1101
|
+
VAR_TYPE: support_data
|
|
1102
|
+
|
|
1103
|
+
lvps_n12v:
|
|
1104
|
+
<<: *default
|
|
1105
|
+
LABLAXIS: LVPS_N12V
|
|
1106
|
+
FIELDNAM: LVPS – Digital V5 -- LVPS – -12V
|
|
1107
|
+
VAR_TYPE: support_data
|
|
1108
|
+
|
|
1109
|
+
lvps_3p3v_i:
|
|
1110
|
+
<<: *default
|
|
1111
|
+
LABLAXIS: LVPS_3P3V_I
|
|
1112
|
+
FIELDNAM: LVPS – Digital I1 -- LVPS – +3.3V Current
|
|
1113
|
+
VAR_TYPE: support_data
|
|
1114
|
+
|
|
1115
|
+
lvps_5v_i:
|
|
1116
|
+
<<: *default
|
|
1117
|
+
LABLAXIS: LVPS_5V_I
|
|
1118
|
+
FIELDNAM: LVPS – Digital I2 -- LVPS – +5V Current
|
|
1119
|
+
VAR_TYPE: support_data
|
|
1120
|
+
|
|
1121
|
+
lvps_n5v_i:
|
|
1122
|
+
<<: *default
|
|
1123
|
+
LABLAXIS: LVPS_N5V_I
|
|
1124
|
+
FIELDNAM: LVPS – Digital I3 -- LVPS – -5V Current
|
|
1125
|
+
VAR_TYPE: support_data
|
|
1126
|
+
|
|
1127
|
+
lvps_12v_i:
|
|
1128
|
+
<<: *default
|
|
1129
|
+
LABLAXIS: LVPS_12V_I
|
|
1130
|
+
FIELDNAM: LVPS – Digital I4 -- LVPS – +12V Current
|
|
1131
|
+
VAR_TYPE: support_data
|
|
1132
|
+
|
|
1133
|
+
lvps_n12v_i:
|
|
1134
|
+
<<: *default
|
|
1135
|
+
LABLAXIS: LVPS_N12V_I
|
|
1136
|
+
FIELDNAM: LVPS – Digital I5 -- LVPS – -12V Current
|
|
1137
|
+
VAR_TYPE: support_data
|
|
1138
|
+
|
|
1139
|
+
cdh_1p5v:
|
|
1140
|
+
<<: *default
|
|
1141
|
+
LABLAXIS: CDH_1P5V
|
|
1142
|
+
FIELDNAM: CDH – + 1.5V
|
|
1143
|
+
VAR_TYPE: support_data
|
|
1144
|
+
|
|
1145
|
+
cdh_1p8v:
|
|
1146
|
+
<<: *default
|
|
1147
|
+
LABLAXIS: CDH_1P8V
|
|
1148
|
+
FIELDNAM: CDH – +1.8V
|
|
1149
|
+
VAR_TYPE: support_data
|
|
1150
|
+
|
|
1151
|
+
cdh_3p3v:
|
|
1152
|
+
<<: *default
|
|
1153
|
+
LABLAXIS: CDH_3P3V
|
|
1154
|
+
FIELDNAM: CDH – +3.3V
|
|
1155
|
+
VAR_TYPE: support_data
|
|
1156
|
+
|
|
1157
|
+
cdh_12v:
|
|
1158
|
+
<<: *default
|
|
1159
|
+
LABLAXIS: CDH_12V
|
|
1160
|
+
FIELDNAM: CDH – +12V
|
|
1161
|
+
VAR_TYPE: support_data
|
|
1162
|
+
|
|
1163
|
+
cdh_n12v:
|
|
1164
|
+
<<: *default
|
|
1165
|
+
LABLAXIS: CDH_N12V
|
|
1166
|
+
FIELDNAM: CDH – -12V
|
|
1167
|
+
VAR_TYPE: support_data
|
|
1168
|
+
|
|
1169
|
+
cdh_5v:
|
|
1170
|
+
<<: *default
|
|
1171
|
+
LABLAXIS: CDH_5V
|
|
1172
|
+
FIELDNAM: CDH – +5V
|
|
1173
|
+
VAR_TYPE: support_data
|
|
1174
|
+
|
|
1175
|
+
cdh_5v_adc:
|
|
1176
|
+
<<: *default
|
|
1177
|
+
LABLAXIS: CDH_5V_ADC
|
|
1178
|
+
FIELDNAM: CDH – Analog Ref -- CDH – +5V ADC
|
|
1179
|
+
VAR_TYPE: support_data
|
|
1180
|
+
|
|
1181
|
+
tbd_hvps_1_if_err_cnt:
|
|
1182
|
+
<<: *default
|
|
1183
|
+
LABLAXIS: TBD_HVPS_1_IF_ERR_CNT
|
|
1184
|
+
FIELDNAM: TBD - Placeholder for HVPS 1 Interface error counts
|
|
1185
|
+
VAR_TYPE: support_data
|
|
1186
|
+
|
|
1187
|
+
tbd_hvps_2_if_err_cnt:
|
|
1188
|
+
<<: *default
|
|
1189
|
+
LABLAXIS: TBD_HVPS_2_IF_ERR_CNT
|
|
1190
|
+
FIELDNAM: TBD - Placeholder for HVPS 2 Interface error counts
|
|
1191
|
+
VAR_TYPE: support_data
|
|
1192
|
+
|
|
1193
|
+
tbd_fee_1_if_err_cnt:
|
|
1194
|
+
<<: *default
|
|
1195
|
+
LABLAXIS: TBD_FEE_1_IF_ERR_CNT
|
|
1196
|
+
FIELDNAM: TBD - Placeholder for FEE 1 Interface error counts
|
|
1197
|
+
VAR_TYPE: support_data
|
|
1198
|
+
|
|
1199
|
+
tbd_fee_2_if_err_cnt:
|
|
1200
|
+
<<: *default
|
|
1201
|
+
LABLAXIS: TBD_FEE_2_IF_ERR_CNT
|
|
1202
|
+
FIELDNAM: TBD - Placeholder for FEE 2 Interface error counts
|
|
1203
|
+
VAR_TYPE: support_data
|
|
1204
|
+
|
|
1205
|
+
tbd_macro_status:
|
|
1206
|
+
<<: *default
|
|
1207
|
+
LABLAXIS: TBD_MACRO_STATUS
|
|
1208
|
+
FIELDNAM: TBD - Placeholder for Macro status
|
|
1209
|
+
VAR_TYPE: support_data
|
|
1210
|
+
|
|
1211
|
+
fdc_trigger_cnt_fsw:
|
|
1212
|
+
<<: *default
|
|
1213
|
+
LABLAXIS: FDC_TRIGGER_CNT_FSW
|
|
1214
|
+
FIELDNAM: Indicates whether any CATEGORY 1 limits have triggered
|
|
1215
|
+
VAR_NOTES: Indicates whether any CATEGORY 1 limits have triggered -- 2 bits -- 0=No triggers; 1=One trigger; 2=Two triggers; 3=More than two triggers
|
|
1216
|
+
VAR_TYPE: support_data
|
|
1217
|
+
|
|
1218
|
+
fdc_trigger_cnt_hvps:
|
|
1219
|
+
<<: *default
|
|
1220
|
+
LABLAXIS: FDC_TRIGGER_CNT_HVPS
|
|
1221
|
+
FIELDNAM: Indicates whether any CATEGORY 2 limits have triggered
|
|
1222
|
+
CATDESC: Indicates whether any CATEGORY 2 limits have triggered
|
|
1223
|
+
VAR_TYPE: support_data
|
|
1224
|
+
|
|
1225
|
+
fdc_trigger_cnt_cdh:
|
|
1226
|
+
<<: *default
|
|
1227
|
+
LABLAXIS: FDC_TRIGGER_CNT_CDH
|
|
1228
|
+
FIELDNAM: Indicates whether any CATEGORY 3 limits have triggered
|
|
1229
|
+
CATDESC: Indicates whether any CATEGORY 3 limits have triggered
|
|
1230
|
+
VAR_TYPE: support_data
|
|
1231
|
+
|
|
1232
|
+
fdc_trigger_cnt_fee:
|
|
1233
|
+
<<: *default
|
|
1234
|
+
LABLAXIS: FDC_TRIGGER_CNT_FEE
|
|
1235
|
+
FIELDNAM: Indicates whether any CATEGORY 4 limits have triggered
|
|
1236
|
+
CATDESC: Indicates whether any CATEGORY 4 limits have triggered
|
|
1237
|
+
VAR_TYPE: support_data
|
|
1238
|
+
|
|
1239
|
+
fdc_trigger_cnt_spare1:
|
|
1240
|
+
<<: *default
|
|
1241
|
+
LABLAXIS: FDC_TRIGGER_CNT_SPARE1
|
|
1242
|
+
FIELDNAM: Indicates whether any CATEGORY 5 limits have triggered
|
|
1243
|
+
CATDESC: Indicates whether any CATEGORY 5 limits have triggered
|
|
1244
|
+
VAR_TYPE: support_data
|
|
1245
|
+
|
|
1246
|
+
fdc_trigger_cnt_spare2:
|
|
1247
|
+
<<: *default
|
|
1248
|
+
LABLAXIS: FDC_TRIGGER_CNT_SPARE2
|
|
1249
|
+
FIELDNAM: Indicates whether any CATEGORY 6 limits have triggered
|
|
1250
|
+
CATDESC: Indicates whether any CATEGORY 6 limits have triggered
|
|
1251
|
+
VAR_TYPE: support_data
|
|
1252
|
+
|
|
1253
|
+
fdc_trigger_cnt_spare3:
|
|
1254
|
+
<<: *default
|
|
1255
|
+
LABLAXIS: FDC_TRIGGER_CNT_SPARE3
|
|
1256
|
+
FIELDNAM: Indicates whether any CATEGORY 7 limits have triggered
|
|
1257
|
+
CATDESC: Indicates whether any CATEGORY 7 limits have triggered
|
|
1258
|
+
VAR_TYPE: support_data
|
|
1259
|
+
|
|
1260
|
+
fdc_trigger_cnt_spare4:
|
|
1261
|
+
<<: *default
|
|
1262
|
+
LABLAXIS: FDC_TRIGGER_CNT_SPARE4
|
|
1263
|
+
FIELDNAM: Indicates whether any CATEGORY 8 limits have triggered
|
|
1264
|
+
CATDESC: Indicates whether any CATEGORY 8 limits have triggered
|
|
1265
|
+
VAR_TYPE: support_data
|
|
1266
|
+
|
|
1267
|
+
fdc_last_trigger_minmax:
|
|
1268
|
+
<<: *default
|
|
1269
|
+
LABLAXIS: FDC_LAST_TRIGGER_MINMAX
|
|
1270
|
+
FIELDNAM: Indicates whether the most recent trigger was a minimum or maximum limit
|
|
1271
|
+
CATDESC: Indicates whether the most recent trigger was a minimum or maximum limit
|
|
1272
|
+
VAR_TYPE: support_data
|
|
1273
|
+
|
|
1274
|
+
fdc_last_trigger_id:
|
|
1275
|
+
<<: *default
|
|
1276
|
+
LABLAXIS: FDC_LAST_TRIGGER_ID
|
|
1277
|
+
FIELDNAM: Indicates the ID of the most recent FDC trigger
|
|
1278
|
+
CATDESC: Indicates the ID of the most recent FDC trigger
|
|
1279
|
+
VAR_TYPE: support_data
|
|
1280
|
+
|
|
1281
|
+
fdc_last_trigger_action:
|
|
1282
|
+
<<: *default
|
|
1283
|
+
LABLAXIS: FDC_LAST_TRIGGER_ACTION
|
|
1284
|
+
FIELDNAM: Indicates the action that was taken for the most recent FDC trigger
|
|
1285
|
+
CATDESC: Indicates the action that was taken for the most recent FDC trigger
|
|
1286
|
+
VAR_TYPE: support_data
|
|
1287
|
+
|
|
1288
|
+
round_robin_index:
|
|
1289
|
+
<<: *default
|
|
1290
|
+
LABLAXIS: ROUND_ROBIN_INDEX
|
|
1291
|
+
FIELDNAM: Round Robin Parameter Report Index
|
|
1292
|
+
VAR_NOTES: Current index for the Round Robin parameter reporting. The Round Robin mechanism reports one value from the Parameter Table each time this packet is generated.
|
|
1293
|
+
VAR_TYPE: support_data
|
|
1294
|
+
|
|
1295
|
+
round_robin_value:
|
|
1296
|
+
<<: *default
|
|
1297
|
+
LABLAXIS: ROUND_ROBIN_VALUE
|
|
1298
|
+
FIELDNAM: Round Robin Parameter Report Value
|
|
1299
|
+
CATDESC: Parameter value corresponding to the current Round_Robin_Index value.
|
|
1300
|
+
VAR_TYPE: support_data
|
|
1301
|
+
|
|
1302
|
+
heater_control_state:
|
|
1303
|
+
<<: *default
|
|
1304
|
+
LABLAXIS: HEATER_CONTROL_STATE
|
|
1305
|
+
FIELDNAM: State of the heater controller
|
|
1306
|
+
CATDESC: Indicates whether FSW control of the operational heater is enabled
|
|
1307
|
+
VAR_TYPE: support_data
|
|
1308
|
+
|
|
1309
|
+
heater_output_state:
|
|
1310
|
+
<<: *default
|
|
1311
|
+
LABLAXIS: HEATER_OUTPUT_STATE
|
|
1312
|
+
FIELDNAM: State of the heater output
|
|
1313
|
+
CATDESC: Indicates the current state of the physical heater output
|
|
1314
|
+
VAR_TYPE: support_data
|
|
1315
|
+
|
|
1316
|
+
spare_5:
|
|
1317
|
+
<<: *default
|
|
1318
|
+
LABLAXIS: SPARE_5
|
|
1319
|
+
FIELDNAM: Spare for alignment
|
|
1320
|
+
CATDESC: Spare for alignment
|
|
1321
|
+
VAR_TYPE: support_data
|
|
1322
|
+
|
|
1323
|
+
cdh_processor_t:
|
|
1324
|
+
<<: *default
|
|
1325
|
+
LABLAXIS: CDH_PROCESSOR_T
|
|
1326
|
+
FIELDNAM: CDH – Processor Temp monitor
|
|
1327
|
+
VAR_TYPE: support_data
|
|
1328
|
+
|
|
1329
|
+
cdh_1p8v_ldo_t:
|
|
1330
|
+
<<: *default
|
|
1331
|
+
LABLAXIS: CDH_1P8V_LDO_T
|
|
1332
|
+
FIELDNAM: CDH – +1.8V LDO Temp monitor
|
|
1333
|
+
VAR_TYPE: support_data
|
|
1334
|
+
|
|
1335
|
+
cdh_1p5v_ldo_t:
|
|
1336
|
+
<<: *default
|
|
1337
|
+
LABLAXIS: CDH_1P5V_LDO_T
|
|
1338
|
+
FIELDNAM: CDH – +1.5V LDO Temp monitor
|
|
1339
|
+
VAR_TYPE: support_data
|
|
1340
|
+
|
|
1341
|
+
cdh_sdram_t:
|
|
1342
|
+
<<: *default
|
|
1343
|
+
LABLAXIS: CDH_SDRAM_T
|
|
1344
|
+
FIELDNAM: CDH – SDRAM Temp monitor
|
|
1345
|
+
VAR_TYPE: support_data
|
|
1346
|
+
|
|
1347
|
+
snsr_hvps_t:
|
|
1348
|
+
<<: *default
|
|
1349
|
+
LABLAXIS: SNSR_HVPS_T
|
|
1350
|
+
FIELDNAM: CoDICE – Sensor HVPS Temp monitor
|
|
1351
|
+
VAR_TYPE: support_data
|
|
1352
|
+
|
|
1353
|
+
spare_6:
|
|
1354
|
+
<<: *default
|
|
1355
|
+
LABLAXIS: SPARE_6
|
|
1356
|
+
FIELDNAM: Spare for alignment
|
|
1357
|
+
CATDESC: Spare for alignment
|
|
1358
|
+
VAR_TYPE: support_data
|