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,3162 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<xtce:SpaceSystem xmlns:xtce="http://www.omg.org/space/xtce" name="IDEX">
|
|
3
|
+
<xtce:Header classification="BuildType=FLIGHT,CreatedBy=XTCEEditor" date="Created=2023/01/12 15:27:45" version="DocumentVersion=FSW Build ,DocumentVersion=20190109v1,LASPXTCESchemaVersion=1.2,XTCEEditorVersion=0.47"/>
|
|
4
|
+
<xtce:TelemetryMetaData>
|
|
5
|
+
<xtce:ParameterTypeSet>
|
|
6
|
+
<xtce:IntegerParameterType signed="false" name="UINT3">
|
|
7
|
+
<xtce:UnitSet/>
|
|
8
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="3"/>
|
|
9
|
+
</xtce:IntegerParameterType>
|
|
10
|
+
<xtce:IntegerParameterType signed="false" name="UINT1">
|
|
11
|
+
<xtce:UnitSet/>
|
|
12
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="1"/>
|
|
13
|
+
</xtce:IntegerParameterType>
|
|
14
|
+
<xtce:IntegerParameterType signed="false" name="UINT11">
|
|
15
|
+
<xtce:UnitSet/>
|
|
16
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="11"/>
|
|
17
|
+
</xtce:IntegerParameterType>
|
|
18
|
+
<xtce:IntegerParameterType signed="false" name="UINT2">
|
|
19
|
+
<xtce:UnitSet/>
|
|
20
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="2"/>
|
|
21
|
+
</xtce:IntegerParameterType>
|
|
22
|
+
<xtce:IntegerParameterType signed="false" name="UINT14">
|
|
23
|
+
<xtce:UnitSet/>
|
|
24
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="14"/>
|
|
25
|
+
</xtce:IntegerParameterType>
|
|
26
|
+
<xtce:IntegerParameterType signed="false" name="UINT16">
|
|
27
|
+
<xtce:UnitSet/>
|
|
28
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="16"/>
|
|
29
|
+
</xtce:IntegerParameterType>
|
|
30
|
+
<xtce:FloatParameterType name="UINT32">
|
|
31
|
+
<xtce:UnitSet>
|
|
32
|
+
<xtce:Unit>dn</xtce:Unit>
|
|
33
|
+
</xtce:UnitSet>
|
|
34
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="32"/>
|
|
35
|
+
</xtce:FloatParameterType>
|
|
36
|
+
<xtce:FloatParameterType name="SHFINE_Type">
|
|
37
|
+
<xtce:UnitSet>
|
|
38
|
+
<xtce:Unit>dn</xtce:Unit>
|
|
39
|
+
</xtce:UnitSet>
|
|
40
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="16"/>
|
|
41
|
+
</xtce:FloatParameterType>
|
|
42
|
+
<xtce:FloatParameterType name="CHECKSUM_Type">
|
|
43
|
+
<xtce:UnitSet>
|
|
44
|
+
<xtce:Unit>dn</xtce:Unit>
|
|
45
|
+
</xtce:UnitSet>
|
|
46
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="32"/>
|
|
47
|
+
</xtce:FloatParameterType>
|
|
48
|
+
<xtce:IntegerParameterType name="IDX__SCI0AID_Type">
|
|
49
|
+
<xtce:UnitSet/>
|
|
50
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="32"/>
|
|
51
|
+
</xtce:IntegerParameterType>
|
|
52
|
+
<xtce:IntegerParameterType name="IDX__SCI0TYPE_Type">
|
|
53
|
+
<xtce:UnitSet/>
|
|
54
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="8"/>
|
|
55
|
+
</xtce:IntegerParameterType>
|
|
56
|
+
<xtce:IntegerParameterType name="IDX__SCI0CONT_Type">
|
|
57
|
+
<xtce:UnitSet/>
|
|
58
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="8"/>
|
|
59
|
+
</xtce:IntegerParameterType>
|
|
60
|
+
<xtce:IntegerParameterType name="IDX__SCI0SPARE1_Type">
|
|
61
|
+
<xtce:UnitSet/>
|
|
62
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="13"/>
|
|
63
|
+
</xtce:IntegerParameterType>
|
|
64
|
+
<xtce:EnumeratedParameterType name="IDX__SCI0PACK_Type">
|
|
65
|
+
<xtce:UnitSet/>
|
|
66
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="1"/>
|
|
67
|
+
<xtce:EnumerationList>
|
|
68
|
+
<xtce:Enumeration value="0" label="DS"/>
|
|
69
|
+
<xtce:Enumeration value="1" label="EN"/>
|
|
70
|
+
</xtce:EnumerationList>
|
|
71
|
+
</xtce:EnumeratedParameterType>
|
|
72
|
+
<xtce:EnumeratedParameterType name="IDX__SCI0FRAG_Type">
|
|
73
|
+
<xtce:UnitSet/>
|
|
74
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="1"/>
|
|
75
|
+
<xtce:EnumerationList>
|
|
76
|
+
<xtce:Enumeration value="0" label="DS"/>
|
|
77
|
+
<xtce:Enumeration value="1" label="EN"/>
|
|
78
|
+
</xtce:EnumerationList>
|
|
79
|
+
</xtce:EnumeratedParameterType>
|
|
80
|
+
<xtce:EnumeratedParameterType name="IDX__SCI0COMP_Type">
|
|
81
|
+
<xtce:UnitSet/>
|
|
82
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="1"/>
|
|
83
|
+
<xtce:EnumerationList>
|
|
84
|
+
<xtce:Enumeration value="0" label="DS"/>
|
|
85
|
+
<xtce:Enumeration value="1" label="EN"/>
|
|
86
|
+
</xtce:EnumerationList>
|
|
87
|
+
</xtce:EnumeratedParameterType>
|
|
88
|
+
<xtce:IntegerParameterType name="IDX__SCI0EVTNUM_Type">
|
|
89
|
+
<xtce:UnitSet/>
|
|
90
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="16"/>
|
|
91
|
+
</xtce:IntegerParameterType>
|
|
92
|
+
<xtce:IntegerParameterType name="IDX__SCI0CAT_Type">
|
|
93
|
+
<xtce:UnitSet/>
|
|
94
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="8"/>
|
|
95
|
+
</xtce:IntegerParameterType>
|
|
96
|
+
<xtce:IntegerParameterType name="IDX__SCI0QUAL_Type">
|
|
97
|
+
<xtce:UnitSet/>
|
|
98
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="8"/>
|
|
99
|
+
</xtce:IntegerParameterType>
|
|
100
|
+
<xtce:IntegerParameterType name="IDX__SCI0FRAGOFF_Type">
|
|
101
|
+
<xtce:UnitSet/>
|
|
102
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="16"/>
|
|
103
|
+
</xtce:IntegerParameterType>
|
|
104
|
+
<xtce:IntegerParameterType name="IDX__SCI0VER_Type">
|
|
105
|
+
<xtce:UnitSet/>
|
|
106
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="16"/>
|
|
107
|
+
</xtce:IntegerParameterType>
|
|
108
|
+
<xtce:IntegerParameterType name="IDX__SCI0TIME32_Type">
|
|
109
|
+
<xtce:UnitSet/>
|
|
110
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="32"/>
|
|
111
|
+
</xtce:IntegerParameterType>
|
|
112
|
+
<xtce:IntegerParameterType name="IDX__SCI0SPARE2_Type">
|
|
113
|
+
<xtce:UnitSet/>
|
|
114
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="32"/>
|
|
115
|
+
</xtce:IntegerParameterType>
|
|
116
|
+
<xtce:IntegerParameterType name="IDX__SCI0SPARE3_Type">
|
|
117
|
+
<xtce:UnitSet/>
|
|
118
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="32"/>
|
|
119
|
+
</xtce:IntegerParameterType>
|
|
120
|
+
<xtce:IntegerParameterType name="IDX__SCI0SPARE4_Type">
|
|
121
|
+
<xtce:UnitSet/>
|
|
122
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="32"/>
|
|
123
|
+
</xtce:IntegerParameterType>
|
|
124
|
+
<xtce:IntegerParameterType name="IDX__TXHDRSCIEVTLEN_Type">
|
|
125
|
+
<xtce:UnitSet/>
|
|
126
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="32"/>
|
|
127
|
+
</xtce:IntegerParameterType>
|
|
128
|
+
<xtce:IntegerParameterType name="IDX__TXHDRSP00_Type">
|
|
129
|
+
<xtce:UnitSet/>
|
|
130
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="16"/>
|
|
131
|
+
</xtce:IntegerParameterType>
|
|
132
|
+
<xtce:IntegerParameterType name="IDX__TXHDRTIMESEC1_Type">
|
|
133
|
+
<xtce:UnitSet/>
|
|
134
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="16"/>
|
|
135
|
+
</xtce:IntegerParameterType>
|
|
136
|
+
<xtce:IntegerParameterType name="IDX__TXHDRTIMESEC2_Type">
|
|
137
|
+
<xtce:UnitSet/>
|
|
138
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="16"/>
|
|
139
|
+
</xtce:IntegerParameterType>
|
|
140
|
+
<xtce:IntegerParameterType name="IDX__TXHDRTIMESUBS_Type">
|
|
141
|
+
<xtce:UnitSet/>
|
|
142
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="16"/>
|
|
143
|
+
</xtce:IntegerParameterType>
|
|
144
|
+
<xtce:IntegerParameterType name="IDX__TXHDRSP01_Type">
|
|
145
|
+
<xtce:UnitSet/>
|
|
146
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="1"/>
|
|
147
|
+
</xtce:IntegerParameterType>
|
|
148
|
+
<xtce:IntegerParameterType name="IDX__TXHDRTRIGOFFSET_Type">
|
|
149
|
+
<xtce:UnitSet/>
|
|
150
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="3"/>
|
|
151
|
+
</xtce:IntegerParameterType>
|
|
152
|
+
<xtce:IntegerParameterType name="IDX__TXHDRSP02_Type">
|
|
153
|
+
<xtce:UnitSet/>
|
|
154
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="2"/>
|
|
155
|
+
</xtce:IntegerParameterType>
|
|
156
|
+
<xtce:IntegerParameterType name="IDX__TXHDRTRIGID_Type">
|
|
157
|
+
<xtce:UnitSet/>
|
|
158
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="10"/>
|
|
159
|
+
</xtce:IntegerParameterType>
|
|
160
|
+
<xtce:IntegerParameterType name="IDX__TXHDREVTNUM_Type">
|
|
161
|
+
<xtce:UnitSet/>
|
|
162
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="16"/>
|
|
163
|
+
</xtce:IntegerParameterType>
|
|
164
|
+
<xtce:IntegerParameterType name="IDX__TXHDRLSPOSTBLOCKS_Type">
|
|
165
|
+
<xtce:UnitSet/>
|
|
166
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="6"/>
|
|
167
|
+
</xtce:IntegerParameterType>
|
|
168
|
+
<xtce:IntegerParameterType name="IDX__TXHDRLSPREBLOCKS_Type">
|
|
169
|
+
<xtce:UnitSet/>
|
|
170
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="6"/>
|
|
171
|
+
</xtce:IntegerParameterType>
|
|
172
|
+
<xtce:IntegerParameterType name="IDX__TXHDRHSPOSTBLOCKS_Type">
|
|
173
|
+
<xtce:UnitSet/>
|
|
174
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="4"/>
|
|
175
|
+
</xtce:IntegerParameterType>
|
|
176
|
+
<xtce:IntegerParameterType name="IDX__TXHDRHSPREBLOCKS_Type">
|
|
177
|
+
<xtce:UnitSet/>
|
|
178
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="4"/>
|
|
179
|
+
</xtce:IntegerParameterType>
|
|
180
|
+
<xtce:IntegerParameterType name="IDX__TXHDRDEADBLOCKSSHIFT_Type">
|
|
181
|
+
<xtce:UnitSet/>
|
|
182
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="4"/>
|
|
183
|
+
</xtce:IntegerParameterType>
|
|
184
|
+
<xtce:IntegerParameterType name="IDX__TXHDRDEADBLOCKSBASE_Type">
|
|
185
|
+
<xtce:UnitSet/>
|
|
186
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="6"/>
|
|
187
|
+
</xtce:IntegerParameterType>
|
|
188
|
+
<xtce:IntegerParameterType name="IDX__TXHDRLSBLOCKSERROR_Type">
|
|
189
|
+
<xtce:UnitSet/>
|
|
190
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="1"/>
|
|
191
|
+
</xtce:IntegerParameterType>
|
|
192
|
+
<xtce:IntegerParameterType name="IDX__TXHDRHSBLOCKSERROR_Type">
|
|
193
|
+
<xtce:UnitSet/>
|
|
194
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="1"/>
|
|
195
|
+
</xtce:IntegerParameterType>
|
|
196
|
+
<xtce:IntegerParameterType name="IDX__TXHDRHGTRIGLVL_Type">
|
|
197
|
+
<xtce:UnitSet/>
|
|
198
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="10"/>
|
|
199
|
+
</xtce:IntegerParameterType>
|
|
200
|
+
<xtce:IntegerParameterType name="IDX__TXHDRHGTRIGNMAX12_Type">
|
|
201
|
+
<xtce:UnitSet/>
|
|
202
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="11"/>
|
|
203
|
+
</xtce:IntegerParameterType>
|
|
204
|
+
<xtce:IntegerParameterType name="IDX__TXHDRHGTRIGNMIN12_Type">
|
|
205
|
+
<xtce:UnitSet/>
|
|
206
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="11"/>
|
|
207
|
+
</xtce:IntegerParameterType>
|
|
208
|
+
<xtce:IntegerParameterType name="IDX__TXHDRHGTRIGNMIN1_Type">
|
|
209
|
+
<xtce:UnitSet/>
|
|
210
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="8"/>
|
|
211
|
+
</xtce:IntegerParameterType>
|
|
212
|
+
<xtce:IntegerParameterType name="IDX__TXHDRHGTRIGNMAX1_Type">
|
|
213
|
+
<xtce:UnitSet/>
|
|
214
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="8"/>
|
|
215
|
+
</xtce:IntegerParameterType>
|
|
216
|
+
<xtce:IntegerParameterType name="IDX__TXHDRHGTRIGNMIN2_Type">
|
|
217
|
+
<xtce:UnitSet/>
|
|
218
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="8"/>
|
|
219
|
+
</xtce:IntegerParameterType>
|
|
220
|
+
<xtce:IntegerParameterType name="IDX__TXHDRHGTRIGNMAX2_Type">
|
|
221
|
+
<xtce:UnitSet/>
|
|
222
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="8"/>
|
|
223
|
+
</xtce:IntegerParameterType>
|
|
224
|
+
<xtce:IntegerParameterType name="IDX__TXHDRLGTRIGLVL_Type">
|
|
225
|
+
<xtce:UnitSet/>
|
|
226
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="10"/>
|
|
227
|
+
</xtce:IntegerParameterType>
|
|
228
|
+
<xtce:IntegerParameterType name="IDX__TXHDRLGTRIGNMAX12_Type">
|
|
229
|
+
<xtce:UnitSet/>
|
|
230
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="11"/>
|
|
231
|
+
</xtce:IntegerParameterType>
|
|
232
|
+
<xtce:IntegerParameterType name="IDX__TXHDRLGTRIGNMIN12_Type">
|
|
233
|
+
<xtce:UnitSet/>
|
|
234
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="11"/>
|
|
235
|
+
</xtce:IntegerParameterType>
|
|
236
|
+
<xtce:IntegerParameterType name="IDX__TXHDRLGTRIGNMIN1_Type">
|
|
237
|
+
<xtce:UnitSet/>
|
|
238
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="8"/>
|
|
239
|
+
</xtce:IntegerParameterType>
|
|
240
|
+
<xtce:IntegerParameterType name="IDX__TXHDRLGTRIGNMAX1_Type">
|
|
241
|
+
<xtce:UnitSet/>
|
|
242
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="8"/>
|
|
243
|
+
</xtce:IntegerParameterType>
|
|
244
|
+
<xtce:IntegerParameterType name="IDX__TXHDRLGTRIGNMIN2_Type">
|
|
245
|
+
<xtce:UnitSet/>
|
|
246
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="8"/>
|
|
247
|
+
</xtce:IntegerParameterType>
|
|
248
|
+
<xtce:IntegerParameterType name="IDX__TXHDRLGTRIGNMAX2_Type">
|
|
249
|
+
<xtce:UnitSet/>
|
|
250
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="8"/>
|
|
251
|
+
</xtce:IntegerParameterType>
|
|
252
|
+
<xtce:IntegerParameterType name="IDX__TXHDRMGTRIGLVL_Type">
|
|
253
|
+
<xtce:UnitSet/>
|
|
254
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="10"/>
|
|
255
|
+
</xtce:IntegerParameterType>
|
|
256
|
+
<xtce:IntegerParameterType name="IDX__TXHDRMGTRIGNMAX12_Type">
|
|
257
|
+
<xtce:UnitSet/>
|
|
258
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="11"/>
|
|
259
|
+
</xtce:IntegerParameterType>
|
|
260
|
+
<xtce:IntegerParameterType name="IDX__TXHDRMGTRIGNMIN12_Type">
|
|
261
|
+
<xtce:UnitSet/>
|
|
262
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="11"/>
|
|
263
|
+
</xtce:IntegerParameterType>
|
|
264
|
+
<xtce:IntegerParameterType name="IDX__TXHDRMGTRIGNMIN1_Type">
|
|
265
|
+
<xtce:UnitSet/>
|
|
266
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="8"/>
|
|
267
|
+
</xtce:IntegerParameterType>
|
|
268
|
+
<xtce:IntegerParameterType name="IDX__TXHDRMGTRIGNMAX1_Type">
|
|
269
|
+
<xtce:UnitSet/>
|
|
270
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="8"/>
|
|
271
|
+
</xtce:IntegerParameterType>
|
|
272
|
+
<xtce:IntegerParameterType name="IDX__TXHDRMGTRIGNMIN2_Type">
|
|
273
|
+
<xtce:UnitSet/>
|
|
274
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="8"/>
|
|
275
|
+
</xtce:IntegerParameterType>
|
|
276
|
+
<xtce:IntegerParameterType name="IDX__TXHDRMGTRIGNMAX2_Type">
|
|
277
|
+
<xtce:UnitSet/>
|
|
278
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="8"/>
|
|
279
|
+
</xtce:IntegerParameterType>
|
|
280
|
+
<xtce:IntegerParameterType name="IDX__TXHDRSP03_Type">
|
|
281
|
+
<xtce:UnitSet/>
|
|
282
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="8"/>
|
|
283
|
+
</xtce:IntegerParameterType>
|
|
284
|
+
<xtce:IntegerParameterType name="IDX__TXHDRLSTRIGCMBLOCKS_Type">
|
|
285
|
+
<xtce:UnitSet/>
|
|
286
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="3"/>
|
|
287
|
+
</xtce:IntegerParameterType>
|
|
288
|
+
<xtce:IntegerParameterType name="IDX__TXHDRLSTRIGPOL_Type">
|
|
289
|
+
<xtce:UnitSet/>
|
|
290
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="1"/>
|
|
291
|
+
</xtce:IntegerParameterType>
|
|
292
|
+
<xtce:IntegerParameterType name="IDX__TXHDRLSTRIGLVL_Type">
|
|
293
|
+
<xtce:UnitSet/>
|
|
294
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="12"/>
|
|
295
|
+
</xtce:IntegerParameterType>
|
|
296
|
+
<xtce:IntegerParameterType name="IDX__TXHDRLSTRIGNMIN_Type">
|
|
297
|
+
<xtce:UnitSet/>
|
|
298
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="8"/>
|
|
299
|
+
</xtce:IntegerParameterType>
|
|
300
|
+
<xtce:EnumeratedParameterType name="IDX__TXHDRPOLSTAT_Type">
|
|
301
|
+
<xtce:UnitSet/>
|
|
302
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="1"/>
|
|
303
|
+
<xtce:EnumerationList>
|
|
304
|
+
<xtce:Enumeration value="0" label="POS"/>
|
|
305
|
+
<xtce:Enumeration value="1" label="NEG"/>
|
|
306
|
+
</xtce:EnumerationList>
|
|
307
|
+
</xtce:EnumeratedParameterType>
|
|
308
|
+
<xtce:EnumeratedParameterType name="IDX__TXHDRSTIMPULSE_Type">
|
|
309
|
+
<xtce:UnitSet/>
|
|
310
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="1"/>
|
|
311
|
+
<xtce:EnumerationList>
|
|
312
|
+
<xtce:Enumeration value="0" label="POS"/>
|
|
313
|
+
<xtce:Enumeration value="1" label="NEG"/>
|
|
314
|
+
</xtce:EnumerationList>
|
|
315
|
+
</xtce:EnumeratedParameterType>
|
|
316
|
+
<xtce:IntegerParameterType name="IDX__TXHDRSP04_Type">
|
|
317
|
+
<xtce:UnitSet/>
|
|
318
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="21"/>
|
|
319
|
+
</xtce:IntegerParameterType>
|
|
320
|
+
<xtce:EnumeratedParameterType name="IDX__TXHDRPOLCTRL_Type">
|
|
321
|
+
<xtce:UnitSet/>
|
|
322
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="1"/>
|
|
323
|
+
<xtce:EnumerationList>
|
|
324
|
+
<xtce:Enumeration value="0" label="POS"/>
|
|
325
|
+
<xtce:Enumeration value="1" label="NEG"/>
|
|
326
|
+
</xtce:EnumerationList>
|
|
327
|
+
</xtce:EnumeratedParameterType>
|
|
328
|
+
<xtce:EnumeratedParameterType name="IDX__TXHDRCOINENA_Type">
|
|
329
|
+
<xtce:UnitSet/>
|
|
330
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="1"/>
|
|
331
|
+
<xtce:EnumerationList>
|
|
332
|
+
<xtce:Enumeration value="0" label="DIS"/>
|
|
333
|
+
<xtce:Enumeration value="1" label="ENA"/>
|
|
334
|
+
</xtce:EnumerationList>
|
|
335
|
+
</xtce:EnumeratedParameterType>
|
|
336
|
+
<xtce:EnumeratedParameterType name="IDX__TXHDRLSTRIGMODE_Type">
|
|
337
|
+
<xtce:UnitSet/>
|
|
338
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="1"/>
|
|
339
|
+
<xtce:EnumerationList>
|
|
340
|
+
<xtce:Enumeration value="0" label="DIS"/>
|
|
341
|
+
<xtce:Enumeration value="1" label="ENA"/>
|
|
342
|
+
</xtce:EnumerationList>
|
|
343
|
+
</xtce:EnumeratedParameterType>
|
|
344
|
+
<xtce:IntegerParameterType name="IDX__TXHDRMGTRIGMODE_Type">
|
|
345
|
+
<xtce:UnitSet/>
|
|
346
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="2"/>
|
|
347
|
+
</xtce:IntegerParameterType>
|
|
348
|
+
<xtce:IntegerParameterType name="IDX__TXHDRLGTRIGMODE_Type">
|
|
349
|
+
<xtce:UnitSet/>
|
|
350
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="2"/>
|
|
351
|
+
</xtce:IntegerParameterType>
|
|
352
|
+
<xtce:IntegerParameterType name="IDX__TXHDRHGTRIGMODE_Type">
|
|
353
|
+
<xtce:UnitSet/>
|
|
354
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="2"/>
|
|
355
|
+
</xtce:IntegerParameterType>
|
|
356
|
+
<xtce:IntegerParameterType name="IDX__TXHDRSP05_Type">
|
|
357
|
+
<xtce:UnitSet/>
|
|
358
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="32"/>
|
|
359
|
+
</xtce:IntegerParameterType>
|
|
360
|
+
<xtce:IntegerParameterType name="IDX__TXHDRSP06_Type">
|
|
361
|
+
<xtce:UnitSet/>
|
|
362
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="32"/>
|
|
363
|
+
</xtce:IntegerParameterType>
|
|
364
|
+
<xtce:IntegerParameterType name="IDX__TXHDRSP07_Type">
|
|
365
|
+
<xtce:UnitSet/>
|
|
366
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="32"/>
|
|
367
|
+
</xtce:IntegerParameterType>
|
|
368
|
+
<xtce:IntegerParameterType name="IDX__TXHDRSP08_Type">
|
|
369
|
+
<xtce:UnitSet/>
|
|
370
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="32"/>
|
|
371
|
+
</xtce:IntegerParameterType>
|
|
372
|
+
<xtce:IntegerParameterType name="IDX__TXHDRTOFMAX_Type">
|
|
373
|
+
<xtce:UnitSet/>
|
|
374
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="32"/>
|
|
375
|
+
</xtce:IntegerParameterType>
|
|
376
|
+
<xtce:IntegerParameterType name="IDX__TXHDRTOFMIN_Type">
|
|
377
|
+
<xtce:UnitSet/>
|
|
378
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="32"/>
|
|
379
|
+
</xtce:IntegerParameterType>
|
|
380
|
+
<xtce:IntegerParameterType name="IDX__TXHDRLS0MAXMIN_Type">
|
|
381
|
+
<xtce:UnitSet/>
|
|
382
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="32"/>
|
|
383
|
+
</xtce:IntegerParameterType>
|
|
384
|
+
<xtce:IntegerParameterType name="IDX__TXHDRLS1MAXMIN_Type">
|
|
385
|
+
<xtce:UnitSet/>
|
|
386
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="32"/>
|
|
387
|
+
</xtce:IntegerParameterType>
|
|
388
|
+
<xtce:IntegerParameterType name="IDX__TXHDRLS2MAXMIN_Type">
|
|
389
|
+
<xtce:UnitSet/>
|
|
390
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="32"/>
|
|
391
|
+
</xtce:IntegerParameterType>
|
|
392
|
+
<xtce:IntegerParameterType name="IDX__TXHDRFIFODELAY_Type">
|
|
393
|
+
<xtce:UnitSet/>
|
|
394
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="32"/>
|
|
395
|
+
</xtce:IntegerParameterType>
|
|
396
|
+
<xtce:IntegerParameterType name="IDX__TXHDRSP19_Type">
|
|
397
|
+
<xtce:UnitSet/>
|
|
398
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="2"/>
|
|
399
|
+
</xtce:IntegerParameterType>
|
|
400
|
+
<xtce:IntegerParameterType name="IDX__TXHDRADC1QDELAY_Type">
|
|
401
|
+
<xtce:UnitSet/>
|
|
402
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="10"/>
|
|
403
|
+
</xtce:IntegerParameterType>
|
|
404
|
+
<xtce:IntegerParameterType name="IDX__TXHDRADC0QDELAY_Type">
|
|
405
|
+
<xtce:UnitSet/>
|
|
406
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="10"/>
|
|
407
|
+
</xtce:IntegerParameterType>
|
|
408
|
+
<xtce:IntegerParameterType name="IDX__TXHDRADC0IDELAY_Type">
|
|
409
|
+
<xtce:UnitSet/>
|
|
410
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="10"/>
|
|
411
|
+
</xtce:IntegerParameterType>
|
|
412
|
+
<xtce:IntegerParameterType name="IDX__TXHDRTRANSCNT_Type">
|
|
413
|
+
<xtce:UnitSet/>
|
|
414
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="32"/>
|
|
415
|
+
</xtce:IntegerParameterType>
|
|
416
|
+
<xtce:IntegerParameterType name="IDX__TXHDRPROCHKCH01_Type">
|
|
417
|
+
<xtce:UnitSet/>
|
|
418
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="32"/>
|
|
419
|
+
</xtce:IntegerParameterType>
|
|
420
|
+
<xtce:IntegerParameterType name="IDX__TXHDRPROCHKCH23_Type">
|
|
421
|
+
<xtce:UnitSet/>
|
|
422
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="32"/>
|
|
423
|
+
</xtce:IntegerParameterType>
|
|
424
|
+
<xtce:IntegerParameterType name="IDX__TXHDRPROCHKCH45_Type">
|
|
425
|
+
<xtce:UnitSet/>
|
|
426
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="32"/>
|
|
427
|
+
</xtce:IntegerParameterType>
|
|
428
|
+
<xtce:IntegerParameterType name="IDX__TXHDRPROCHKCH67_Type">
|
|
429
|
+
<xtce:UnitSet/>
|
|
430
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="32"/>
|
|
431
|
+
</xtce:IntegerParameterType>
|
|
432
|
+
<xtce:IntegerParameterType name="IDX__TXHDRSP11_Type">
|
|
433
|
+
<xtce:UnitSet/>
|
|
434
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="4"/>
|
|
435
|
+
</xtce:IntegerParameterType>
|
|
436
|
+
<xtce:IntegerParameterType name="IDX__TXHDRHVPSHKCH0_Type">
|
|
437
|
+
<xtce:UnitSet/>
|
|
438
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="12"/>
|
|
439
|
+
</xtce:IntegerParameterType>
|
|
440
|
+
<xtce:IntegerParameterType name="IDX__TXHDRSP12_Type">
|
|
441
|
+
<xtce:UnitSet/>
|
|
442
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="4"/>
|
|
443
|
+
</xtce:IntegerParameterType>
|
|
444
|
+
<xtce:IntegerParameterType name="IDX__TXHDRHVPSHKCH1_Type">
|
|
445
|
+
<xtce:UnitSet/>
|
|
446
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="12"/>
|
|
447
|
+
</xtce:IntegerParameterType>
|
|
448
|
+
<xtce:IntegerParameterType name="IDX__TXHDRSP13_Type">
|
|
449
|
+
<xtce:UnitSet/>
|
|
450
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="4"/>
|
|
451
|
+
</xtce:IntegerParameterType>
|
|
452
|
+
<xtce:IntegerParameterType name="IDX__TXHDRHVPSHKCH2_Type">
|
|
453
|
+
<xtce:UnitSet/>
|
|
454
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="12"/>
|
|
455
|
+
</xtce:IntegerParameterType>
|
|
456
|
+
<xtce:IntegerParameterType name="IDX__TXHDRSP14_Type">
|
|
457
|
+
<xtce:UnitSet/>
|
|
458
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="4"/>
|
|
459
|
+
</xtce:IntegerParameterType>
|
|
460
|
+
<xtce:IntegerParameterType name="IDX__TXHDRHVPSHKCH3_Type">
|
|
461
|
+
<xtce:UnitSet/>
|
|
462
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="12"/>
|
|
463
|
+
</xtce:IntegerParameterType>
|
|
464
|
+
<xtce:IntegerParameterType name="IDX__TXHDRSP15_Type">
|
|
465
|
+
<xtce:UnitSet/>
|
|
466
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="4"/>
|
|
467
|
+
</xtce:IntegerParameterType>
|
|
468
|
+
<xtce:IntegerParameterType name="IDX__TXHDRHVPSHKCH4_Type">
|
|
469
|
+
<xtce:UnitSet/>
|
|
470
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="12"/>
|
|
471
|
+
</xtce:IntegerParameterType>
|
|
472
|
+
<xtce:IntegerParameterType name="IDX__TXHDRSP16_Type">
|
|
473
|
+
<xtce:UnitSet/>
|
|
474
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="4"/>
|
|
475
|
+
</xtce:IntegerParameterType>
|
|
476
|
+
<xtce:IntegerParameterType name="IDX__TXHDRHVPSHKCH5_Type">
|
|
477
|
+
<xtce:UnitSet/>
|
|
478
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="12"/>
|
|
479
|
+
</xtce:IntegerParameterType>
|
|
480
|
+
<xtce:IntegerParameterType name="IDX__TXHDRSP17_Type">
|
|
481
|
+
<xtce:UnitSet/>
|
|
482
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="4"/>
|
|
483
|
+
</xtce:IntegerParameterType>
|
|
484
|
+
<xtce:IntegerParameterType name="IDX__TXHDRHVPSHKCH6_Type">
|
|
485
|
+
<xtce:UnitSet/>
|
|
486
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="12"/>
|
|
487
|
+
</xtce:IntegerParameterType>
|
|
488
|
+
<xtce:IntegerParameterType name="IDX__TXHDRSP18_Type">
|
|
489
|
+
<xtce:UnitSet/>
|
|
490
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="4"/>
|
|
491
|
+
</xtce:IntegerParameterType>
|
|
492
|
+
<xtce:IntegerParameterType name="IDX__TXHDRHVPSHKCH7_Type">
|
|
493
|
+
<xtce:UnitSet/>
|
|
494
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="12"/>
|
|
495
|
+
</xtce:IntegerParameterType>
|
|
496
|
+
<xtce:IntegerParameterType name="IDX__TXHDRLVHK0CH01_Type">
|
|
497
|
+
<xtce:UnitSet/>
|
|
498
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="32"/>
|
|
499
|
+
</xtce:IntegerParameterType>
|
|
500
|
+
<xtce:IntegerParameterType name="IDX__TXHDRLVHK0CH23_Type">
|
|
501
|
+
<xtce:UnitSet/>
|
|
502
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="32"/>
|
|
503
|
+
</xtce:IntegerParameterType>
|
|
504
|
+
<xtce:IntegerParameterType name="IDX__TXHDRLVHK0CH45_Type">
|
|
505
|
+
<xtce:UnitSet/>
|
|
506
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="32"/>
|
|
507
|
+
</xtce:IntegerParameterType>
|
|
508
|
+
<xtce:IntegerParameterType name="IDX__TXHDRLVHK0CH67_Type">
|
|
509
|
+
<xtce:UnitSet/>
|
|
510
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="32"/>
|
|
511
|
+
</xtce:IntegerParameterType>
|
|
512
|
+
<xtce:IntegerParameterType name="IDX__TXHDRLVHK1CH01_Type">
|
|
513
|
+
<xtce:UnitSet/>
|
|
514
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="32"/>
|
|
515
|
+
</xtce:IntegerParameterType>
|
|
516
|
+
<xtce:IntegerParameterType name="IDX__TXHDRLVHK1CH23_Type">
|
|
517
|
+
<xtce:UnitSet/>
|
|
518
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="32"/>
|
|
519
|
+
</xtce:IntegerParameterType>
|
|
520
|
+
<xtce:IntegerParameterType name="IDX__TXHDRLVHK1CH45_Type">
|
|
521
|
+
<xtce:UnitSet/>
|
|
522
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="32"/>
|
|
523
|
+
</xtce:IntegerParameterType>
|
|
524
|
+
<xtce:IntegerParameterType name="IDX__TXHDRLVHK1CH67_Type">
|
|
525
|
+
<xtce:UnitSet/>
|
|
526
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="32"/>
|
|
527
|
+
</xtce:IntegerParameterType>
|
|
528
|
+
<xtce:IntegerParameterType name="IDX__TXHDRLVHK2CH01_Type">
|
|
529
|
+
<xtce:UnitSet/>
|
|
530
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="32"/>
|
|
531
|
+
</xtce:IntegerParameterType>
|
|
532
|
+
<xtce:IntegerParameterType name="IDX__TXHDRLVHK2CH23_Type">
|
|
533
|
+
<xtce:UnitSet/>
|
|
534
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="32"/>
|
|
535
|
+
</xtce:IntegerParameterType>
|
|
536
|
+
<xtce:IntegerParameterType name="IDX__TXHDRLVHK2CH45_Type">
|
|
537
|
+
<xtce:UnitSet/>
|
|
538
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="32"/>
|
|
539
|
+
</xtce:IntegerParameterType>
|
|
540
|
+
<xtce:IntegerParameterType name="IDX__TXHDRLVHK2CH67_Type">
|
|
541
|
+
<xtce:UnitSet/>
|
|
542
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="32"/>
|
|
543
|
+
</xtce:IntegerParameterType>
|
|
544
|
+
<xtce:IntegerParameterType name="IDX__TXHDRSP09_Type">
|
|
545
|
+
<xtce:UnitSet/>
|
|
546
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="32"/>
|
|
547
|
+
</xtce:IntegerParameterType>
|
|
548
|
+
<xtce:IntegerParameterType name="IDX__TXHDRSP10_Type">
|
|
549
|
+
<xtce:UnitSet/>
|
|
550
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="32"/>
|
|
551
|
+
</xtce:IntegerParameterType>
|
|
552
|
+
<xtce:IntegerParameterType name="IDX__TXHDRFSWAIDCOPY_Type">
|
|
553
|
+
<xtce:UnitSet/>
|
|
554
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="32"/>
|
|
555
|
+
</xtce:IntegerParameterType>
|
|
556
|
+
<xtce:IntegerParameterType name="IDX__TXHDRFSWBINCOPY_Type">
|
|
557
|
+
<xtce:UnitSet/>
|
|
558
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="32"/>
|
|
559
|
+
</xtce:IntegerParameterType>
|
|
560
|
+
<xtce:IntegerParameterType name="IDX__TXHDRFSWMAJOR_Type">
|
|
561
|
+
<xtce:UnitSet/>
|
|
562
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="8"/>
|
|
563
|
+
</xtce:IntegerParameterType>
|
|
564
|
+
<xtce:IntegerParameterType name="IDX__TXHDRFSWMINOR_Type">
|
|
565
|
+
<xtce:UnitSet/>
|
|
566
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="8"/>
|
|
567
|
+
</xtce:IntegerParameterType>
|
|
568
|
+
<xtce:IntegerParameterType name="IDX__TXHDRFSWPATCH_Type">
|
|
569
|
+
<xtce:UnitSet/>
|
|
570
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="16"/>
|
|
571
|
+
</xtce:IntegerParameterType>
|
|
572
|
+
<xtce:IntegerParameterType name="IDX__TXHDRFSWHVSTAT_Type">
|
|
573
|
+
<xtce:UnitSet/>
|
|
574
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="32"/>
|
|
575
|
+
</xtce:IntegerParameterType>
|
|
576
|
+
<xtce:IntegerParameterType name="IDX__TXHDRFSWMEM0_Type">
|
|
577
|
+
<xtce:UnitSet/>
|
|
578
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="32"/>
|
|
579
|
+
</xtce:IntegerParameterType>
|
|
580
|
+
<xtce:IntegerParameterType name="IDX__TXHDRFSWMEM1_Type">
|
|
581
|
+
<xtce:UnitSet/>
|
|
582
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="32"/>
|
|
583
|
+
</xtce:IntegerParameterType>
|
|
584
|
+
<xtce:IntegerParameterType name="IDX__TXHDRFSWPT0_Type">
|
|
585
|
+
<xtce:UnitSet/>
|
|
586
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="32"/>
|
|
587
|
+
</xtce:IntegerParameterType>
|
|
588
|
+
<xtce:IntegerParameterType name="IDX__TXHDRFSWPT1_Type">
|
|
589
|
+
<xtce:UnitSet/>
|
|
590
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="32"/>
|
|
591
|
+
</xtce:IntegerParameterType>
|
|
592
|
+
<xtce:IntegerParameterType name="IDX__TXHDRFSWPT2_Type">
|
|
593
|
+
<xtce:UnitSet/>
|
|
594
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="32"/>
|
|
595
|
+
</xtce:IntegerParameterType>
|
|
596
|
+
<xtce:IntegerParameterType name="IDX__TXHDRFSWPT3_Type">
|
|
597
|
+
<xtce:UnitSet/>
|
|
598
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="32"/>
|
|
599
|
+
</xtce:IntegerParameterType>
|
|
600
|
+
<xtce:IntegerParameterType name="IDX__TXHDRFSWPT4_Type">
|
|
601
|
+
<xtce:UnitSet/>
|
|
602
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="32"/>
|
|
603
|
+
</xtce:IntegerParameterType>
|
|
604
|
+
<xtce:IntegerParameterType name="IDX__TXHDRFSWPT5_Type">
|
|
605
|
+
<xtce:UnitSet/>
|
|
606
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="32"/>
|
|
607
|
+
</xtce:IntegerParameterType>
|
|
608
|
+
<xtce:IntegerParameterType name="IDX__TXHDRFSWPT6_Type">
|
|
609
|
+
<xtce:UnitSet/>
|
|
610
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="32"/>
|
|
611
|
+
</xtce:IntegerParameterType>
|
|
612
|
+
<xtce:IntegerParameterType name="IDX__TXHDRFSWPT7_Type">
|
|
613
|
+
<xtce:UnitSet/>
|
|
614
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="32"/>
|
|
615
|
+
</xtce:IntegerParameterType>
|
|
616
|
+
<xtce:IntegerParameterType name="IDX__TXHDRFSWPT8_Type">
|
|
617
|
+
<xtce:UnitSet/>
|
|
618
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="32"/>
|
|
619
|
+
</xtce:IntegerParameterType>
|
|
620
|
+
<xtce:IntegerParameterType name="IDX__TXHDRFSWPT9_Type">
|
|
621
|
+
<xtce:UnitSet/>
|
|
622
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="32"/>
|
|
623
|
+
</xtce:IntegerParameterType>
|
|
624
|
+
<xtce:IntegerParameterType name="IDX__TXHDRFPGAVER_Type">
|
|
625
|
+
<xtce:UnitSet/>
|
|
626
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="32"/>
|
|
627
|
+
</xtce:IntegerParameterType>
|
|
628
|
+
<xtce:IntegerParameterType name="IDX__SYNCSCI0PKT_Type">
|
|
629
|
+
<xtce:UnitSet/>
|
|
630
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="16"/>
|
|
631
|
+
</xtce:IntegerParameterType>
|
|
632
|
+
<xtce:IntegerParameterType name="IDX__CRCSCI0PKT_Type">
|
|
633
|
+
<xtce:UnitSet/>
|
|
634
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="16"/>
|
|
635
|
+
</xtce:IntegerParameterType>
|
|
636
|
+
<xtce:BinaryParameterType name="IDX__SCI0RAW_Type">
|
|
637
|
+
<xtce:UnitSet/>
|
|
638
|
+
<xtce:BinaryDataEncoding>
|
|
639
|
+
<xtce:SizeInBits>
|
|
640
|
+
<xtce:DynamicValue>
|
|
641
|
+
<xtce:ParameterInstanceRef parameterRef="PKT_LEN"/>
|
|
642
|
+
<xtce:LinearAdjustment intercept="-328" slope="8"/>
|
|
643
|
+
</xtce:DynamicValue>
|
|
644
|
+
</xtce:SizeInBits>
|
|
645
|
+
</xtce:BinaryDataEncoding>
|
|
646
|
+
</xtce:BinaryParameterType>
|
|
647
|
+
<xtce:IntegerParameterType name="IDX__SCIFETCHAID_Type">
|
|
648
|
+
<xtce:UnitSet/>
|
|
649
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="32"/>
|
|
650
|
+
</xtce:IntegerParameterType>
|
|
651
|
+
<xtce:IntegerParameterType name="IDX__SCIFETCHTYPE_Type">
|
|
652
|
+
<xtce:UnitSet/>
|
|
653
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="8"/>
|
|
654
|
+
</xtce:IntegerParameterType>
|
|
655
|
+
<xtce:IntegerParameterType name="IDX__SCIFETCHCONT_Type">
|
|
656
|
+
<xtce:UnitSet/>
|
|
657
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="8"/>
|
|
658
|
+
</xtce:IntegerParameterType>
|
|
659
|
+
<xtce:IntegerParameterType name="IDX__SCIFETCHSPARE1_Type">
|
|
660
|
+
<xtce:UnitSet/>
|
|
661
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="13"/>
|
|
662
|
+
</xtce:IntegerParameterType>
|
|
663
|
+
<xtce:EnumeratedParameterType name="IDX__SCIFETCHPACK_Type">
|
|
664
|
+
<xtce:UnitSet/>
|
|
665
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="1"/>
|
|
666
|
+
<xtce:EnumerationList>
|
|
667
|
+
<xtce:Enumeration value="0" label="DS"/>
|
|
668
|
+
<xtce:Enumeration value="1" label="EN"/>
|
|
669
|
+
</xtce:EnumerationList>
|
|
670
|
+
</xtce:EnumeratedParameterType>
|
|
671
|
+
<xtce:EnumeratedParameterType name="IDX__SCIFETCHFRAG_Type">
|
|
672
|
+
<xtce:UnitSet/>
|
|
673
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="1"/>
|
|
674
|
+
<xtce:EnumerationList>
|
|
675
|
+
<xtce:Enumeration value="0" label="DS"/>
|
|
676
|
+
<xtce:Enumeration value="1" label="EN"/>
|
|
677
|
+
</xtce:EnumerationList>
|
|
678
|
+
</xtce:EnumeratedParameterType>
|
|
679
|
+
<xtce:EnumeratedParameterType name="IDX__SCIFETCHCOMP_Type">
|
|
680
|
+
<xtce:UnitSet/>
|
|
681
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="1"/>
|
|
682
|
+
<xtce:EnumerationList>
|
|
683
|
+
<xtce:Enumeration value="0" label="DS"/>
|
|
684
|
+
<xtce:Enumeration value="1" label="EN"/>
|
|
685
|
+
</xtce:EnumerationList>
|
|
686
|
+
</xtce:EnumeratedParameterType>
|
|
687
|
+
<xtce:IntegerParameterType name="IDX__SCIFETCHEVTNUM_Type">
|
|
688
|
+
<xtce:UnitSet/>
|
|
689
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="16"/>
|
|
690
|
+
</xtce:IntegerParameterType>
|
|
691
|
+
<xtce:IntegerParameterType name="IDX__SCIFETCHCAT_Type">
|
|
692
|
+
<xtce:UnitSet/>
|
|
693
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="8"/>
|
|
694
|
+
</xtce:IntegerParameterType>
|
|
695
|
+
<xtce:IntegerParameterType name="IDX__SCIFETCHQUAL_Type">
|
|
696
|
+
<xtce:UnitSet/>
|
|
697
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="8"/>
|
|
698
|
+
</xtce:IntegerParameterType>
|
|
699
|
+
<xtce:IntegerParameterType name="IDX__SCIFETCHFRAGOFF_Type">
|
|
700
|
+
<xtce:UnitSet/>
|
|
701
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="16"/>
|
|
702
|
+
</xtce:IntegerParameterType>
|
|
703
|
+
<xtce:IntegerParameterType name="IDX__SCIFETCHVER_Type">
|
|
704
|
+
<xtce:UnitSet/>
|
|
705
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="16"/>
|
|
706
|
+
</xtce:IntegerParameterType>
|
|
707
|
+
<xtce:IntegerParameterType name="IDX__SCIFETCHTIME32_Type">
|
|
708
|
+
<xtce:UnitSet/>
|
|
709
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="32"/>
|
|
710
|
+
</xtce:IntegerParameterType>
|
|
711
|
+
<xtce:IntegerParameterType name="IDX__SCIFETCHSPARE2_Type">
|
|
712
|
+
<xtce:UnitSet/>
|
|
713
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="32"/>
|
|
714
|
+
</xtce:IntegerParameterType>
|
|
715
|
+
<xtce:IntegerParameterType name="IDX__SCIFETCHSPARE3_Type">
|
|
716
|
+
<xtce:UnitSet/>
|
|
717
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="32"/>
|
|
718
|
+
</xtce:IntegerParameterType>
|
|
719
|
+
<xtce:IntegerParameterType name="IDX__SCIFETCHSPARE4_Type">
|
|
720
|
+
<xtce:UnitSet/>
|
|
721
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="32"/>
|
|
722
|
+
</xtce:IntegerParameterType>
|
|
723
|
+
<xtce:IntegerParameterType name="IDX__FETHDRSCIEVTLEN_Type">
|
|
724
|
+
<xtce:UnitSet/>
|
|
725
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="32"/>
|
|
726
|
+
</xtce:IntegerParameterType>
|
|
727
|
+
<xtce:IntegerParameterType name="IDX__FETHDRSP00_Type">
|
|
728
|
+
<xtce:UnitSet/>
|
|
729
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="16"/>
|
|
730
|
+
</xtce:IntegerParameterType>
|
|
731
|
+
<xtce:IntegerParameterType name="IDX__FETHDRTIMESEC1_Type">
|
|
732
|
+
<xtce:UnitSet/>
|
|
733
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="16"/>
|
|
734
|
+
</xtce:IntegerParameterType>
|
|
735
|
+
<xtce:IntegerParameterType name="IDX__FETHDRTIMESEC2_Type">
|
|
736
|
+
<xtce:UnitSet/>
|
|
737
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="16"/>
|
|
738
|
+
</xtce:IntegerParameterType>
|
|
739
|
+
<xtce:IntegerParameterType name="IDX__FETHDRTIMESUBS_Type">
|
|
740
|
+
<xtce:UnitSet/>
|
|
741
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="16"/>
|
|
742
|
+
</xtce:IntegerParameterType>
|
|
743
|
+
<xtce:IntegerParameterType name="IDX__FETHDRSP01_Type">
|
|
744
|
+
<xtce:UnitSet/>
|
|
745
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="1"/>
|
|
746
|
+
</xtce:IntegerParameterType>
|
|
747
|
+
<xtce:IntegerParameterType name="IDX__FETHDRTRIGOFFSET_Type">
|
|
748
|
+
<xtce:UnitSet/>
|
|
749
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="3"/>
|
|
750
|
+
</xtce:IntegerParameterType>
|
|
751
|
+
<xtce:IntegerParameterType name="IDX__FETHDRSP02_Type">
|
|
752
|
+
<xtce:UnitSet/>
|
|
753
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="2"/>
|
|
754
|
+
</xtce:IntegerParameterType>
|
|
755
|
+
<xtce:IntegerParameterType name="IDX__FETHDRTRIGID_Type">
|
|
756
|
+
<xtce:UnitSet/>
|
|
757
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="10"/>
|
|
758
|
+
</xtce:IntegerParameterType>
|
|
759
|
+
<xtce:IntegerParameterType name="IDX__FETHDREVTNUM_Type">
|
|
760
|
+
<xtce:UnitSet/>
|
|
761
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="16"/>
|
|
762
|
+
</xtce:IntegerParameterType>
|
|
763
|
+
<xtce:IntegerParameterType name="IDX__FETHDRBLOCKS_Type">
|
|
764
|
+
<xtce:UnitSet/>
|
|
765
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="32"/>
|
|
766
|
+
</xtce:IntegerParameterType>
|
|
767
|
+
<xtce:IntegerParameterType name="IDX__FETHDRHGTRIGCTRL1_Type">
|
|
768
|
+
<xtce:UnitSet/>
|
|
769
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="32"/>
|
|
770
|
+
</xtce:IntegerParameterType>
|
|
771
|
+
<xtce:IntegerParameterType name="IDX__FETHDRHGTRIGCTRL2_Type">
|
|
772
|
+
<xtce:UnitSet/>
|
|
773
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="32"/>
|
|
774
|
+
</xtce:IntegerParameterType>
|
|
775
|
+
<xtce:IntegerParameterType name="IDX__FETHDRLGTRIGCTRL1_Type">
|
|
776
|
+
<xtce:UnitSet/>
|
|
777
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="32"/>
|
|
778
|
+
</xtce:IntegerParameterType>
|
|
779
|
+
<xtce:IntegerParameterType name="IDX__FETHDRLGTRIGCTRL2_Type">
|
|
780
|
+
<xtce:UnitSet/>
|
|
781
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="32"/>
|
|
782
|
+
</xtce:IntegerParameterType>
|
|
783
|
+
<xtce:IntegerParameterType name="IDX__FETHDRMGTRIGCTRL1_Type">
|
|
784
|
+
<xtce:UnitSet/>
|
|
785
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="32"/>
|
|
786
|
+
</xtce:IntegerParameterType>
|
|
787
|
+
<xtce:IntegerParameterType name="IDX__FETHDRMGTRIGCTRL2_Type">
|
|
788
|
+
<xtce:UnitSet/>
|
|
789
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="32"/>
|
|
790
|
+
</xtce:IntegerParameterType>
|
|
791
|
+
<xtce:IntegerParameterType name="IDX__FETHDRSP03_Type">
|
|
792
|
+
<xtce:UnitSet/>
|
|
793
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="8"/>
|
|
794
|
+
</xtce:IntegerParameterType>
|
|
795
|
+
<xtce:IntegerParameterType name="IDX__FETHDRLSADC_Type">
|
|
796
|
+
<xtce:UnitSet/>
|
|
797
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="24"/>
|
|
798
|
+
</xtce:IntegerParameterType>
|
|
799
|
+
<xtce:EnumeratedParameterType name="IDX__FETHDRPOLSTAT_Type">
|
|
800
|
+
<xtce:UnitSet/>
|
|
801
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="1"/>
|
|
802
|
+
<xtce:EnumerationList>
|
|
803
|
+
<xtce:Enumeration value="0" label="POS"/>
|
|
804
|
+
<xtce:Enumeration value="1" label="NEG"/>
|
|
805
|
+
</xtce:EnumerationList>
|
|
806
|
+
</xtce:EnumeratedParameterType>
|
|
807
|
+
<xtce:IntegerParameterType name="IDX__FETHDRSP04_Type">
|
|
808
|
+
<xtce:UnitSet/>
|
|
809
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="22"/>
|
|
810
|
+
</xtce:IntegerParameterType>
|
|
811
|
+
<xtce:EnumeratedParameterType name="IDX__FETHDRPOLCTRL_Type">
|
|
812
|
+
<xtce:UnitSet/>
|
|
813
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="1"/>
|
|
814
|
+
<xtce:EnumerationList>
|
|
815
|
+
<xtce:Enumeration value="0" label="POS"/>
|
|
816
|
+
<xtce:Enumeration value="1" label="NEG"/>
|
|
817
|
+
</xtce:EnumerationList>
|
|
818
|
+
</xtce:EnumeratedParameterType>
|
|
819
|
+
<xtce:EnumeratedParameterType name="IDX__FETHDRCOINENA_Type">
|
|
820
|
+
<xtce:UnitSet/>
|
|
821
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="1"/>
|
|
822
|
+
<xtce:EnumerationList>
|
|
823
|
+
<xtce:Enumeration value="0" label="DIS"/>
|
|
824
|
+
<xtce:Enumeration value="1" label="ENA"/>
|
|
825
|
+
</xtce:EnumerationList>
|
|
826
|
+
</xtce:EnumeratedParameterType>
|
|
827
|
+
<xtce:EnumeratedParameterType name="IDX__FETHDRLSTRIGMODE_Type">
|
|
828
|
+
<xtce:UnitSet/>
|
|
829
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="1"/>
|
|
830
|
+
<xtce:EnumerationList>
|
|
831
|
+
<xtce:Enumeration value="0" label="DIS"/>
|
|
832
|
+
<xtce:Enumeration value="1" label="ENA"/>
|
|
833
|
+
</xtce:EnumerationList>
|
|
834
|
+
</xtce:EnumeratedParameterType>
|
|
835
|
+
<xtce:IntegerParameterType name="IDX__FETHDRMGTRIGMODE_Type">
|
|
836
|
+
<xtce:UnitSet/>
|
|
837
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="2"/>
|
|
838
|
+
</xtce:IntegerParameterType>
|
|
839
|
+
<xtce:IntegerParameterType name="IDX__FETHDRLGTRIGMODE_Type">
|
|
840
|
+
<xtce:UnitSet/>
|
|
841
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="2"/>
|
|
842
|
+
</xtce:IntegerParameterType>
|
|
843
|
+
<xtce:IntegerParameterType name="IDX__FETHDRHGTRIGMODE_Type">
|
|
844
|
+
<xtce:UnitSet/>
|
|
845
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="2"/>
|
|
846
|
+
</xtce:IntegerParameterType>
|
|
847
|
+
<xtce:IntegerParameterType name="IDX__FETHDRSP05_Type">
|
|
848
|
+
<xtce:UnitSet/>
|
|
849
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="32"/>
|
|
850
|
+
</xtce:IntegerParameterType>
|
|
851
|
+
<xtce:IntegerParameterType name="IDX__FETHDRSP06_Type">
|
|
852
|
+
<xtce:UnitSet/>
|
|
853
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="32"/>
|
|
854
|
+
</xtce:IntegerParameterType>
|
|
855
|
+
<xtce:IntegerParameterType name="IDX__FETHDRSP07_Type">
|
|
856
|
+
<xtce:UnitSet/>
|
|
857
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="32"/>
|
|
858
|
+
</xtce:IntegerParameterType>
|
|
859
|
+
<xtce:IntegerParameterType name="IDX__FETHDRSP08_Type">
|
|
860
|
+
<xtce:UnitSet/>
|
|
861
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="32"/>
|
|
862
|
+
</xtce:IntegerParameterType>
|
|
863
|
+
<xtce:IntegerParameterType name="IDX__FETHDRTOFMAX_Type">
|
|
864
|
+
<xtce:UnitSet/>
|
|
865
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="32"/>
|
|
866
|
+
</xtce:IntegerParameterType>
|
|
867
|
+
<xtce:IntegerParameterType name="IDX__FETHDRTOFMIN_Type">
|
|
868
|
+
<xtce:UnitSet/>
|
|
869
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="32"/>
|
|
870
|
+
</xtce:IntegerParameterType>
|
|
871
|
+
<xtce:IntegerParameterType name="IDX__FETHDRLS0MAXMIN_Type">
|
|
872
|
+
<xtce:UnitSet/>
|
|
873
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="32"/>
|
|
874
|
+
</xtce:IntegerParameterType>
|
|
875
|
+
<xtce:IntegerParameterType name="IDX__FETHDRLS1MAXMIN_Type">
|
|
876
|
+
<xtce:UnitSet/>
|
|
877
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="32"/>
|
|
878
|
+
</xtce:IntegerParameterType>
|
|
879
|
+
<xtce:IntegerParameterType name="IDX__FETHDRLS2MAXMIN_Type">
|
|
880
|
+
<xtce:UnitSet/>
|
|
881
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="32"/>
|
|
882
|
+
</xtce:IntegerParameterType>
|
|
883
|
+
<xtce:IntegerParameterType name="IDX__FETHDRFIFODELAY_Type">
|
|
884
|
+
<xtce:UnitSet/>
|
|
885
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="32"/>
|
|
886
|
+
</xtce:IntegerParameterType>
|
|
887
|
+
<xtce:IntegerParameterType name="IDX__FETHDRSAMPDELAY_Type">
|
|
888
|
+
<xtce:UnitSet/>
|
|
889
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="32"/>
|
|
890
|
+
</xtce:IntegerParameterType>
|
|
891
|
+
<xtce:IntegerParameterType name="IDX__FETHDRTRANSCNT_Type">
|
|
892
|
+
<xtce:UnitSet/>
|
|
893
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="32"/>
|
|
894
|
+
</xtce:IntegerParameterType>
|
|
895
|
+
<xtce:IntegerParameterType name="IDX__FETHDRPROCHKCH01_Type">
|
|
896
|
+
<xtce:UnitSet/>
|
|
897
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="32"/>
|
|
898
|
+
</xtce:IntegerParameterType>
|
|
899
|
+
<xtce:IntegerParameterType name="IDX__FETHDRPROCHKCH23_Type">
|
|
900
|
+
<xtce:UnitSet/>
|
|
901
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="32"/>
|
|
902
|
+
</xtce:IntegerParameterType>
|
|
903
|
+
<xtce:IntegerParameterType name="IDX__FETHDRPROCHKCH45_Type">
|
|
904
|
+
<xtce:UnitSet/>
|
|
905
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="32"/>
|
|
906
|
+
</xtce:IntegerParameterType>
|
|
907
|
+
<xtce:IntegerParameterType name="IDX__FETHDRPROCHKCH67_Type">
|
|
908
|
+
<xtce:UnitSet/>
|
|
909
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="32"/>
|
|
910
|
+
</xtce:IntegerParameterType>
|
|
911
|
+
<xtce:IntegerParameterType name="IDX__FETHDRHVPSHKCH01_Type">
|
|
912
|
+
<xtce:UnitSet/>
|
|
913
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="32"/>
|
|
914
|
+
</xtce:IntegerParameterType>
|
|
915
|
+
<xtce:IntegerParameterType name="IDX__FETHDRHVPSHKCH23_Type">
|
|
916
|
+
<xtce:UnitSet/>
|
|
917
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="32"/>
|
|
918
|
+
</xtce:IntegerParameterType>
|
|
919
|
+
<xtce:IntegerParameterType name="IDX__FETHDRHVPSHKCH45_Type">
|
|
920
|
+
<xtce:UnitSet/>
|
|
921
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="32"/>
|
|
922
|
+
</xtce:IntegerParameterType>
|
|
923
|
+
<xtce:IntegerParameterType name="IDX__FETHDRHVPSHKCH67_Type">
|
|
924
|
+
<xtce:UnitSet/>
|
|
925
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="32"/>
|
|
926
|
+
</xtce:IntegerParameterType>
|
|
927
|
+
<xtce:IntegerParameterType name="IDX__FETHDRLVHK0CH01_Type">
|
|
928
|
+
<xtce:UnitSet/>
|
|
929
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="32"/>
|
|
930
|
+
</xtce:IntegerParameterType>
|
|
931
|
+
<xtce:IntegerParameterType name="IDX__FETHDRLVHK0CH23_Type">
|
|
932
|
+
<xtce:UnitSet/>
|
|
933
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="32"/>
|
|
934
|
+
</xtce:IntegerParameterType>
|
|
935
|
+
<xtce:IntegerParameterType name="IDX__FETHDRLVHK0CH45_Type">
|
|
936
|
+
<xtce:UnitSet/>
|
|
937
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="32"/>
|
|
938
|
+
</xtce:IntegerParameterType>
|
|
939
|
+
<xtce:IntegerParameterType name="IDX__FETHDRLVHK0CH67_Type">
|
|
940
|
+
<xtce:UnitSet/>
|
|
941
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="32"/>
|
|
942
|
+
</xtce:IntegerParameterType>
|
|
943
|
+
<xtce:IntegerParameterType name="IDX__FETHDRLVHK1CH01_Type">
|
|
944
|
+
<xtce:UnitSet/>
|
|
945
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="32"/>
|
|
946
|
+
</xtce:IntegerParameterType>
|
|
947
|
+
<xtce:IntegerParameterType name="IDX__FETHDRLVHK1CH23_Type">
|
|
948
|
+
<xtce:UnitSet/>
|
|
949
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="32"/>
|
|
950
|
+
</xtce:IntegerParameterType>
|
|
951
|
+
<xtce:IntegerParameterType name="IDX__FETHDRLVHK1CH45_Type">
|
|
952
|
+
<xtce:UnitSet/>
|
|
953
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="32"/>
|
|
954
|
+
</xtce:IntegerParameterType>
|
|
955
|
+
<xtce:IntegerParameterType name="IDX__FETHDRLVHK1CH67_Type">
|
|
956
|
+
<xtce:UnitSet/>
|
|
957
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="32"/>
|
|
958
|
+
</xtce:IntegerParameterType>
|
|
959
|
+
<xtce:IntegerParameterType name="IDX__FETHDRLVHK2CH01_Type">
|
|
960
|
+
<xtce:UnitSet/>
|
|
961
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="32"/>
|
|
962
|
+
</xtce:IntegerParameterType>
|
|
963
|
+
<xtce:IntegerParameterType name="IDX__FETHDRLVHK2CH23_Type">
|
|
964
|
+
<xtce:UnitSet/>
|
|
965
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="32"/>
|
|
966
|
+
</xtce:IntegerParameterType>
|
|
967
|
+
<xtce:IntegerParameterType name="IDX__FETHDRLVHK2CH45_Type">
|
|
968
|
+
<xtce:UnitSet/>
|
|
969
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="32"/>
|
|
970
|
+
</xtce:IntegerParameterType>
|
|
971
|
+
<xtce:IntegerParameterType name="IDX__FETHDRLVHK2CH67_Type">
|
|
972
|
+
<xtce:UnitSet/>
|
|
973
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="32"/>
|
|
974
|
+
</xtce:IntegerParameterType>
|
|
975
|
+
<xtce:IntegerParameterType name="IDX__FETHDRSP09_Type">
|
|
976
|
+
<xtce:UnitSet/>
|
|
977
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="32"/>
|
|
978
|
+
</xtce:IntegerParameterType>
|
|
979
|
+
<xtce:IntegerParameterType name="IDX__FETHDRSP10_Type">
|
|
980
|
+
<xtce:UnitSet/>
|
|
981
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="32"/>
|
|
982
|
+
</xtce:IntegerParameterType>
|
|
983
|
+
<xtce:IntegerParameterType name="IDX__FETHDRFSWAIDCOPY_Type">
|
|
984
|
+
<xtce:UnitSet/>
|
|
985
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="32"/>
|
|
986
|
+
</xtce:IntegerParameterType>
|
|
987
|
+
<xtce:IntegerParameterType name="IDX__FETHDRFSWBINCOPY_Type">
|
|
988
|
+
<xtce:UnitSet/>
|
|
989
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="32"/>
|
|
990
|
+
</xtce:IntegerParameterType>
|
|
991
|
+
<xtce:IntegerParameterType name="IDX__FETHDRFSWMAJOR_Type">
|
|
992
|
+
<xtce:UnitSet/>
|
|
993
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="8"/>
|
|
994
|
+
</xtce:IntegerParameterType>
|
|
995
|
+
<xtce:IntegerParameterType name="IDX__FETHDRFSWMINOR_Type">
|
|
996
|
+
<xtce:UnitSet/>
|
|
997
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="8"/>
|
|
998
|
+
</xtce:IntegerParameterType>
|
|
999
|
+
<xtce:IntegerParameterType name="IDX__FETHDRFSWPATCH_Type">
|
|
1000
|
+
<xtce:UnitSet/>
|
|
1001
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="16"/>
|
|
1002
|
+
</xtce:IntegerParameterType>
|
|
1003
|
+
<xtce:IntegerParameterType name="IDX__FETHDRFSWHVSTAT_Type">
|
|
1004
|
+
<xtce:UnitSet/>
|
|
1005
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="32"/>
|
|
1006
|
+
</xtce:IntegerParameterType>
|
|
1007
|
+
<xtce:IntegerParameterType name="IDX__FETHDRFSWMEM0_Type">
|
|
1008
|
+
<xtce:UnitSet/>
|
|
1009
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="32"/>
|
|
1010
|
+
</xtce:IntegerParameterType>
|
|
1011
|
+
<xtce:IntegerParameterType name="IDX__FETHDRFSWMEM1_Type">
|
|
1012
|
+
<xtce:UnitSet/>
|
|
1013
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="32"/>
|
|
1014
|
+
</xtce:IntegerParameterType>
|
|
1015
|
+
<xtce:IntegerParameterType name="IDX__FETHDRFSWPT0_Type">
|
|
1016
|
+
<xtce:UnitSet/>
|
|
1017
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="32"/>
|
|
1018
|
+
</xtce:IntegerParameterType>
|
|
1019
|
+
<xtce:IntegerParameterType name="IDX__FETHDRFSWPT1_Type">
|
|
1020
|
+
<xtce:UnitSet/>
|
|
1021
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="32"/>
|
|
1022
|
+
</xtce:IntegerParameterType>
|
|
1023
|
+
<xtce:IntegerParameterType name="IDX__FETHDRFSWPT2_Type">
|
|
1024
|
+
<xtce:UnitSet/>
|
|
1025
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="32"/>
|
|
1026
|
+
</xtce:IntegerParameterType>
|
|
1027
|
+
<xtce:IntegerParameterType name="IDX__FETHDRFSWPT3_Type">
|
|
1028
|
+
<xtce:UnitSet/>
|
|
1029
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="32"/>
|
|
1030
|
+
</xtce:IntegerParameterType>
|
|
1031
|
+
<xtce:IntegerParameterType name="IDX__FETHDRFSWPT4_Type">
|
|
1032
|
+
<xtce:UnitSet/>
|
|
1033
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="32"/>
|
|
1034
|
+
</xtce:IntegerParameterType>
|
|
1035
|
+
<xtce:IntegerParameterType name="IDX__FETHDRFSWPT5_Type">
|
|
1036
|
+
<xtce:UnitSet/>
|
|
1037
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="32"/>
|
|
1038
|
+
</xtce:IntegerParameterType>
|
|
1039
|
+
<xtce:IntegerParameterType name="IDX__FETHDRFSWPT6_Type">
|
|
1040
|
+
<xtce:UnitSet/>
|
|
1041
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="32"/>
|
|
1042
|
+
</xtce:IntegerParameterType>
|
|
1043
|
+
<xtce:IntegerParameterType name="IDX__FETHDRFSWPT7_Type">
|
|
1044
|
+
<xtce:UnitSet/>
|
|
1045
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="32"/>
|
|
1046
|
+
</xtce:IntegerParameterType>
|
|
1047
|
+
<xtce:IntegerParameterType name="IDX__FETHDRFSWPT8_Type">
|
|
1048
|
+
<xtce:UnitSet/>
|
|
1049
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="32"/>
|
|
1050
|
+
</xtce:IntegerParameterType>
|
|
1051
|
+
<xtce:IntegerParameterType name="IDX__FETHDRFSWPT9_Type">
|
|
1052
|
+
<xtce:UnitSet/>
|
|
1053
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="32"/>
|
|
1054
|
+
</xtce:IntegerParameterType>
|
|
1055
|
+
<xtce:IntegerParameterType name="IDX__FETHDRFPGAVER_Type">
|
|
1056
|
+
<xtce:UnitSet/>
|
|
1057
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="32"/>
|
|
1058
|
+
</xtce:IntegerParameterType>
|
|
1059
|
+
<xtce:BinaryParameterType name="IDX__SCIFETCHRAW_Type">
|
|
1060
|
+
<xtce:UnitSet/>
|
|
1061
|
+
<xtce:BinaryDataEncoding>
|
|
1062
|
+
<xtce:SizeInBits>
|
|
1063
|
+
<xtce:DynamicValue>
|
|
1064
|
+
<xtce:ParameterInstanceRef parameterRef="PKT_LEN"/>
|
|
1065
|
+
<xtce:LinearAdjustment intercept="-328" slope="8"/>
|
|
1066
|
+
</xtce:DynamicValue>
|
|
1067
|
+
</xtce:SizeInBits>
|
|
1068
|
+
</xtce:BinaryDataEncoding>
|
|
1069
|
+
</xtce:BinaryParameterType>
|
|
1070
|
+
<xtce:IntegerParameterType name="IDX__SYNCSCIFETCHPKT_Type">
|
|
1071
|
+
<xtce:UnitSet/>
|
|
1072
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="16"/>
|
|
1073
|
+
</xtce:IntegerParameterType>
|
|
1074
|
+
<xtce:IntegerParameterType name="IDX__CRCSCIFETCHPKT_Type">
|
|
1075
|
+
<xtce:UnitSet/>
|
|
1076
|
+
<xtce:IntegerDataEncoding encoding="unsigned" sizeInBits="16"/>
|
|
1077
|
+
</xtce:IntegerParameterType>
|
|
1078
|
+
</xtce:ParameterTypeSet>
|
|
1079
|
+
<xtce:ParameterSet>
|
|
1080
|
+
<!--CCSDS Header Elements-->
|
|
1081
|
+
<xtce:Parameter name="VERSION" parameterTypeRef="UINT3">
|
|
1082
|
+
<xtce:LongDescription>CCSDS Packet Version Number (always 0)</xtce:LongDescription>
|
|
1083
|
+
</xtce:Parameter>
|
|
1084
|
+
<xtce:Parameter name="TYPE" parameterTypeRef="UINT1">
|
|
1085
|
+
<xtce:LongDescription>CCSDS Packet Type Indicator (0=telemetry)</xtce:LongDescription>
|
|
1086
|
+
</xtce:Parameter>
|
|
1087
|
+
<xtce:Parameter name="SEC_HDR_FLG" parameterTypeRef="UINT1">
|
|
1088
|
+
<xtce:LongDescription>CCSDS Packet Secondary Header Flag (always 1)</xtce:LongDescription>
|
|
1089
|
+
</xtce:Parameter>
|
|
1090
|
+
<xtce:Parameter name="PKT_APID" parameterTypeRef="UINT11">
|
|
1091
|
+
<xtce:LongDescription>CCSDS Packet Application Process ID</xtce:LongDescription>
|
|
1092
|
+
</xtce:Parameter>
|
|
1093
|
+
<xtce:Parameter name="SEQ_FLGS" parameterTypeRef="UINT2">
|
|
1094
|
+
<xtce:LongDescription>CCSDS Packet Grouping Flags (3=not part of group)</xtce:LongDescription>
|
|
1095
|
+
</xtce:Parameter>
|
|
1096
|
+
<xtce:Parameter name="SRC_SEQ_CTR" parameterTypeRef="UINT14">
|
|
1097
|
+
<xtce:LongDescription>CCSDS Packet Sequence Count (increments with each new packet)</xtce:LongDescription>
|
|
1098
|
+
</xtce:Parameter>
|
|
1099
|
+
<xtce:Parameter name="PKT_LEN" parameterTypeRef="UINT16">
|
|
1100
|
+
<xtce:LongDescription>CCSDS Packet Length (number of bytes after Packet length minus 1)</xtce:LongDescription>
|
|
1101
|
+
</xtce:Parameter>
|
|
1102
|
+
<xtce:Parameter name="SHCOARSE" parameterTypeRef="UINT32">
|
|
1103
|
+
<xtce:LongDescription>CCSDS Packet Time Stamp (coarse time)</xtce:LongDescription>
|
|
1104
|
+
</xtce:Parameter>
|
|
1105
|
+
<xtce:Parameter shortDescription="Secondary Header Fine Time" name="SHFINE" parameterTypeRef="SHFINE_Type">
|
|
1106
|
+
<xtce:LongDescription>CCSDS Packet 2nd Header Fine Time</xtce:LongDescription>
|
|
1107
|
+
<xtce:AliasSet>
|
|
1108
|
+
<xtce:Alias nameSpace="itemName" alias="SHFINE"/>
|
|
1109
|
+
</xtce:AliasSet>
|
|
1110
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
1111
|
+
</xtce:Parameter>
|
|
1112
|
+
<xtce:Parameter shortDescription="CRC 16 Checksum" name="CHECKSUM" parameterTypeRef="CHECKSUM_Type">
|
|
1113
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
1114
|
+
</xtce:Parameter>
|
|
1115
|
+
<xtce:Parameter name="IDX__SCI0AID" parameterTypeRef="IDX__SCI0AID_Type" shortDescription="Accountability Identifier">
|
|
1116
|
+
<xtce:AliasSet>
|
|
1117
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
1118
|
+
<xtce:Alias alias="SCI0AID" nameSpace="itemName"/>
|
|
1119
|
+
</xtce:AliasSet>
|
|
1120
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
1121
|
+
</xtce:Parameter>
|
|
1122
|
+
<xtce:Parameter name="IDX__SCI0TYPE" parameterTypeRef="IDX__SCI0TYPE_Type" shortDescription="Packet Data Content Type">
|
|
1123
|
+
<xtce:AliasSet>
|
|
1124
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
1125
|
+
<xtce:Alias alias="SCI0TYPE" nameSpace="itemName"/>
|
|
1126
|
+
</xtce:AliasSet>
|
|
1127
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
1128
|
+
</xtce:Parameter>
|
|
1129
|
+
<xtce:Parameter name="IDX__SCI0CONT" parameterTypeRef="IDX__SCI0CONT_Type" shortDescription="Channels Included in Downlink">
|
|
1130
|
+
<xtce:AliasSet>
|
|
1131
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
1132
|
+
<xtce:Alias alias="SCI0CONT" nameSpace="itemName"/>
|
|
1133
|
+
</xtce:AliasSet>
|
|
1134
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
1135
|
+
</xtce:Parameter>
|
|
1136
|
+
<xtce:Parameter name="IDX__SCI0SPARE1" parameterTypeRef="IDX__SCI0SPARE1_Type" shortDescription="">
|
|
1137
|
+
<xtce:AliasSet>
|
|
1138
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
1139
|
+
<xtce:Alias alias="SCI0SPARE1" nameSpace="itemName"/>
|
|
1140
|
+
</xtce:AliasSet>
|
|
1141
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
1142
|
+
</xtce:Parameter>
|
|
1143
|
+
<xtce:Parameter name="IDX__SCI0PACK" parameterTypeRef="IDX__SCI0PACK_Type" shortDescription="Data Packed">
|
|
1144
|
+
<xtce:AliasSet>
|
|
1145
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
1146
|
+
<xtce:Alias alias="SCI0PACK" nameSpace="itemName"/>
|
|
1147
|
+
</xtce:AliasSet>
|
|
1148
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
1149
|
+
</xtce:Parameter>
|
|
1150
|
+
<xtce:Parameter name="IDX__SCI0FRAG" parameterTypeRef="IDX__SCI0FRAG_Type" shortDescription="Data Fragemented">
|
|
1151
|
+
<xtce:AliasSet>
|
|
1152
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
1153
|
+
<xtce:Alias alias="SCI0FRAG" nameSpace="itemName"/>
|
|
1154
|
+
</xtce:AliasSet>
|
|
1155
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
1156
|
+
</xtce:Parameter>
|
|
1157
|
+
<xtce:Parameter name="IDX__SCI0COMP" parameterTypeRef="IDX__SCI0COMP_Type" shortDescription="Data Compression">
|
|
1158
|
+
<xtce:AliasSet>
|
|
1159
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
1160
|
+
<xtce:Alias alias="SCI0COMP" nameSpace="itemName"/>
|
|
1161
|
+
</xtce:AliasSet>
|
|
1162
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
1163
|
+
</xtce:Parameter>
|
|
1164
|
+
<xtce:Parameter name="IDX__SCI0EVTNUM" parameterTypeRef="IDX__SCI0EVTNUM_Type" shortDescription="Event Time">
|
|
1165
|
+
<xtce:AliasSet>
|
|
1166
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
1167
|
+
<xtce:Alias alias="SCI0EVTNUM" nameSpace="itemName"/>
|
|
1168
|
+
</xtce:AliasSet>
|
|
1169
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
1170
|
+
</xtce:Parameter>
|
|
1171
|
+
<xtce:Parameter name="IDX__SCI0CAT" parameterTypeRef="IDX__SCI0CAT_Type" shortDescription="Category">
|
|
1172
|
+
<xtce:AliasSet>
|
|
1173
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
1174
|
+
<xtce:Alias alias="SCI0CAT" nameSpace="itemName"/>
|
|
1175
|
+
</xtce:AliasSet>
|
|
1176
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
1177
|
+
</xtce:Parameter>
|
|
1178
|
+
<xtce:Parameter name="IDX__SCI0QUAL" parameterTypeRef="IDX__SCI0QUAL_Type" shortDescription="Quality">
|
|
1179
|
+
<xtce:AliasSet>
|
|
1180
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
1181
|
+
<xtce:Alias alias="SCI0QUAL" nameSpace="itemName"/>
|
|
1182
|
+
</xtce:AliasSet>
|
|
1183
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
1184
|
+
</xtce:Parameter>
|
|
1185
|
+
<xtce:Parameter name="IDX__SCI0FRAGOFF" parameterTypeRef="IDX__SCI0FRAGOFF_Type" shortDescription="Fragmentation Offset">
|
|
1186
|
+
<xtce:AliasSet>
|
|
1187
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
1188
|
+
<xtce:Alias alias="SCI0FRAGOFF" nameSpace="itemName"/>
|
|
1189
|
+
</xtce:AliasSet>
|
|
1190
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
1191
|
+
</xtce:Parameter>
|
|
1192
|
+
<xtce:Parameter name="IDX__SCI0VER" parameterTypeRef="IDX__SCI0VER_Type" shortDescription="Science Version">
|
|
1193
|
+
<xtce:AliasSet>
|
|
1194
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
1195
|
+
<xtce:Alias alias="SCI0VER" nameSpace="itemName"/>
|
|
1196
|
+
</xtce:AliasSet>
|
|
1197
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
1198
|
+
</xtce:Parameter>
|
|
1199
|
+
<xtce:Parameter name="IDX__SCI0TIME32" parameterTypeRef="IDX__SCI0TIME32_Type" shortDescription="Event Time">
|
|
1200
|
+
<xtce:AliasSet>
|
|
1201
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
1202
|
+
<xtce:Alias alias="SCI0TIME32" nameSpace="itemName"/>
|
|
1203
|
+
</xtce:AliasSet>
|
|
1204
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
1205
|
+
</xtce:Parameter>
|
|
1206
|
+
<xtce:Parameter name="IDX__SCI0SPARE2" parameterTypeRef="IDX__SCI0SPARE2_Type" shortDescription="">
|
|
1207
|
+
<xtce:AliasSet>
|
|
1208
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
1209
|
+
<xtce:Alias alias="SCI0SPARE2" nameSpace="itemName"/>
|
|
1210
|
+
</xtce:AliasSet>
|
|
1211
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
1212
|
+
</xtce:Parameter>
|
|
1213
|
+
<xtce:Parameter name="IDX__SCI0SPARE3" parameterTypeRef="IDX__SCI0SPARE3_Type" shortDescription="">
|
|
1214
|
+
<xtce:AliasSet>
|
|
1215
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
1216
|
+
<xtce:Alias alias="SCI0SPARE3" nameSpace="itemName"/>
|
|
1217
|
+
</xtce:AliasSet>
|
|
1218
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
1219
|
+
</xtce:Parameter>
|
|
1220
|
+
<xtce:Parameter name="IDX__SCI0SPARE4" parameterTypeRef="IDX__SCI0SPARE4_Type" shortDescription="">
|
|
1221
|
+
<xtce:AliasSet>
|
|
1222
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
1223
|
+
<xtce:Alias alias="SCI0SPARE4" nameSpace="itemName"/>
|
|
1224
|
+
</xtce:AliasSet>
|
|
1225
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
1226
|
+
</xtce:Parameter>
|
|
1227
|
+
<xtce:Parameter name="IDX__TXHDRSCIEVTLEN" parameterTypeRef="IDX__TXHDRSCIEVTLEN_Type" shortDescription="Length of sci data for this event (all 6 channels), in dwords">
|
|
1228
|
+
<xtce:AliasSet>
|
|
1229
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
1230
|
+
<xtce:Alias alias="TXHDRSCIEVTLEN" nameSpace="itemName"/>
|
|
1231
|
+
</xtce:AliasSet>
|
|
1232
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
1233
|
+
</xtce:Parameter>
|
|
1234
|
+
<xtce:Parameter name="IDX__TXHDRSP00" parameterTypeRef="IDX__TXHDRSP00_Type" shortDescription="Spare">
|
|
1235
|
+
<xtce:AliasSet>
|
|
1236
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
1237
|
+
<xtce:Alias alias="TXHDRSP00" nameSpace="itemName"/>
|
|
1238
|
+
</xtce:AliasSet>
|
|
1239
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
1240
|
+
</xtce:Parameter>
|
|
1241
|
+
<xtce:Parameter name="IDX__TXHDRTIMESEC1" parameterTypeRef="IDX__TXHDRTIMESEC1_Type" shortDescription="Trigger time, bits 31:16 of the coarse timestamp (integer seconds since epoch)">
|
|
1242
|
+
<xtce:AliasSet>
|
|
1243
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
1244
|
+
<xtce:Alias alias="TXHDRTIMESEC1" nameSpace="itemName"/>
|
|
1245
|
+
</xtce:AliasSet>
|
|
1246
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
1247
|
+
</xtce:Parameter>
|
|
1248
|
+
<xtce:Parameter name="IDX__TXHDRTIMESEC2" parameterTypeRef="IDX__TXHDRTIMESEC2_Type" shortDescription="Trigger time, bits 15:0 of the coarse timestamp (integer seconds since epoch)">
|
|
1249
|
+
<xtce:AliasSet>
|
|
1250
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
1251
|
+
<xtce:Alias alias="TXHDRTIMESEC2" nameSpace="itemName"/>
|
|
1252
|
+
</xtce:AliasSet>
|
|
1253
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
1254
|
+
</xtce:Parameter>
|
|
1255
|
+
<xtce:Parameter name="IDX__TXHDRTIMESUBS" parameterTypeRef="IDX__TXHDRTIMESUBS_Type" shortDescription="Trigger time, subseconds field">
|
|
1256
|
+
<xtce:AliasSet>
|
|
1257
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
1258
|
+
<xtce:Alias alias="TXHDRTIMESUBS" nameSpace="itemName"/>
|
|
1259
|
+
</xtce:AliasSet>
|
|
1260
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
1261
|
+
</xtce:Parameter>
|
|
1262
|
+
<xtce:Parameter name="IDX__TXHDRSP01" parameterTypeRef="IDX__TXHDRSP01_Type" shortDescription="Spare">
|
|
1263
|
+
<xtce:AliasSet>
|
|
1264
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
1265
|
+
<xtce:Alias alias="TXHDRSP01" nameSpace="itemName"/>
|
|
1266
|
+
</xtce:AliasSet>
|
|
1267
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
1268
|
+
</xtce:Parameter>
|
|
1269
|
+
<xtce:Parameter name="IDX__TXHDRTRIGOFFSET" parameterTypeRef="IDX__TXHDRTRIGOFFSET_Type" shortDescription="Trigger offset">
|
|
1270
|
+
<xtce:AliasSet>
|
|
1271
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
1272
|
+
<xtce:Alias alias="TXHDRTRIGOFFSET" nameSpace="itemName"/>
|
|
1273
|
+
</xtce:AliasSet>
|
|
1274
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
1275
|
+
</xtce:Parameter>
|
|
1276
|
+
<xtce:Parameter name="IDX__TXHDRSP02" parameterTypeRef="IDX__TXHDRSP02_Type" shortDescription="Spare">
|
|
1277
|
+
<xtce:AliasSet>
|
|
1278
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
1279
|
+
<xtce:Alias alias="TXHDRSP02" nameSpace="itemName"/>
|
|
1280
|
+
</xtce:AliasSet>
|
|
1281
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
1282
|
+
</xtce:Parameter>
|
|
1283
|
+
<xtce:Parameter name="IDX__TXHDRTRIGID" parameterTypeRef="IDX__TXHDRTRIGID_Type" shortDescription="Identifies which channel(s) caused this event to be captured">
|
|
1284
|
+
<xtce:AliasSet>
|
|
1285
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
1286
|
+
<xtce:Alias alias="TXHDRTRIGID" nameSpace="itemName"/>
|
|
1287
|
+
</xtce:AliasSet>
|
|
1288
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
1289
|
+
</xtce:Parameter>
|
|
1290
|
+
<xtce:Parameter name="IDX__TXHDREVTNUM" parameterTypeRef="IDX__TXHDREVTNUM_Type" shortDescription="Event number, an incrementing counter to uniquely identify one event in dataset">
|
|
1291
|
+
<xtce:AliasSet>
|
|
1292
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
1293
|
+
<xtce:Alias alias="TXHDREVTNUM" nameSpace="itemName"/>
|
|
1294
|
+
</xtce:AliasSet>
|
|
1295
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
1296
|
+
</xtce:Parameter>
|
|
1297
|
+
<xtce:Parameter name="IDX__TXHDRLSPOSTBLOCKS" parameterTypeRef="IDX__TXHDRLSPOSTBLOCKS_Type" shortDescription="Programmed number of post-trigger blocks for LS data">
|
|
1298
|
+
<xtce:AliasSet>
|
|
1299
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
1300
|
+
<xtce:Alias alias="TXHDRLSPOSTBLOCKS" nameSpace="itemName"/>
|
|
1301
|
+
</xtce:AliasSet>
|
|
1302
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
1303
|
+
</xtce:Parameter>
|
|
1304
|
+
<xtce:Parameter name="IDX__TXHDRLSPREBLOCKS" parameterTypeRef="IDX__TXHDRLSPREBLOCKS_Type" shortDescription="Programmed number of pre-trigger blocks for LS data">
|
|
1305
|
+
<xtce:AliasSet>
|
|
1306
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
1307
|
+
<xtce:Alias alias="TXHDRLSPREBLOCKS" nameSpace="itemName"/>
|
|
1308
|
+
</xtce:AliasSet>
|
|
1309
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
1310
|
+
</xtce:Parameter>
|
|
1311
|
+
<xtce:Parameter name="IDX__TXHDRHSPOSTBLOCKS" parameterTypeRef="IDX__TXHDRHSPOSTBLOCKS_Type" shortDescription="Programmed number of post-trigger blocks for HS data">
|
|
1312
|
+
<xtce:AliasSet>
|
|
1313
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
1314
|
+
<xtce:Alias alias="TXHDRHSPOSTBLOCKS" nameSpace="itemName"/>
|
|
1315
|
+
</xtce:AliasSet>
|
|
1316
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
1317
|
+
</xtce:Parameter>
|
|
1318
|
+
<xtce:Parameter name="IDX__TXHDRHSPREBLOCKS" parameterTypeRef="IDX__TXHDRHSPREBLOCKS_Type" shortDescription="Programmed number of pre-trigger blocks for HS data">
|
|
1319
|
+
<xtce:AliasSet>
|
|
1320
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
1321
|
+
<xtce:Alias alias="TXHDRHSPREBLOCKS" nameSpace="itemName"/>
|
|
1322
|
+
</xtce:AliasSet>
|
|
1323
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
1324
|
+
</xtce:Parameter>
|
|
1325
|
+
<xtce:Parameter name="IDX__TXHDRDEADBLOCKSSHIFT" parameterTypeRef="IDX__TXHDRDEADBLOCKSSHIFT_Type" shortDescription="Programmed number of bit positions to shift Dead Blocks Base value to the left to get the total number of dead blocks">
|
|
1326
|
+
<xtce:AliasSet>
|
|
1327
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
1328
|
+
<xtce:Alias alias="TXHDRDEADBLOCKSSHIFT" nameSpace="itemName"/>
|
|
1329
|
+
</xtce:AliasSet>
|
|
1330
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
1331
|
+
</xtce:Parameter>
|
|
1332
|
+
<xtce:Parameter name="IDX__TXHDRDEADBLOCKSBASE" parameterTypeRef="IDX__TXHDRDEADBLOCKSBASE_Type" shortDescription="Programmed number of Dead Blocks">
|
|
1333
|
+
<xtce:AliasSet>
|
|
1334
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
1335
|
+
<xtce:Alias alias="TXHDRDEADBLOCKSBASE" nameSpace="itemName"/>
|
|
1336
|
+
</xtce:AliasSet>
|
|
1337
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
1338
|
+
</xtce:Parameter>
|
|
1339
|
+
<xtce:Parameter name="IDX__TXHDRLSBLOCKSERROR" parameterTypeRef="IDX__TXHDRLSBLOCKSERROR_Type" shortDescription="This bit is set if the total number of LS blocks is greater than 64">
|
|
1340
|
+
<xtce:AliasSet>
|
|
1341
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
1342
|
+
<xtce:Alias alias="TXHDRLSBLOCKSERROR" nameSpace="itemName"/>
|
|
1343
|
+
</xtce:AliasSet>
|
|
1344
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
1345
|
+
</xtce:Parameter>
|
|
1346
|
+
<xtce:Parameter name="IDX__TXHDRHSBLOCKSERROR" parameterTypeRef="IDX__TXHDRHSBLOCKSERROR_Type" shortDescription="This bit is set if the total number of HS blocks is greater than 16">
|
|
1347
|
+
<xtce:AliasSet>
|
|
1348
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
1349
|
+
<xtce:Alias alias="TXHDRHSBLOCKSERROR" nameSpace="itemName"/>
|
|
1350
|
+
</xtce:AliasSet>
|
|
1351
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
1352
|
+
</xtce:Parameter>
|
|
1353
|
+
<xtce:Parameter name="IDX__TXHDRHGTRIGLVL" parameterTypeRef="IDX__TXHDRHGTRIGLVL_Type" shortDescription="Trigger level for the TOF High Channel">
|
|
1354
|
+
<xtce:AliasSet>
|
|
1355
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
1356
|
+
<xtce:Alias alias="TXHDRHGTRIGLVL" nameSpace="itemName"/>
|
|
1357
|
+
</xtce:AliasSet>
|
|
1358
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
1359
|
+
</xtce:Parameter>
|
|
1360
|
+
<xtce:Parameter name="IDX__TXHDRHGTRIGNMAX12" parameterTypeRef="IDX__TXHDRHGTRIGNMAX12_Type" shortDescription="Maximum number of samples between pulse 1 and 2 for TOF High double
|
|
1361
|
+
pulse triggering">
|
|
1362
|
+
<xtce:AliasSet>
|
|
1363
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
1364
|
+
<xtce:Alias alias="TXHDRHGTRIGNMAX12" nameSpace="itemName"/>
|
|
1365
|
+
</xtce:AliasSet>
|
|
1366
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
1367
|
+
</xtce:Parameter>
|
|
1368
|
+
<xtce:Parameter name="IDX__TXHDRHGTRIGNMIN12" parameterTypeRef="IDX__TXHDRHGTRIGNMIN12_Type" shortDescription="Minimum number of samples between pulse 1 and 2 for TOF High double
|
|
1369
|
+
pulse triggering">
|
|
1370
|
+
<xtce:AliasSet>
|
|
1371
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
1372
|
+
<xtce:Alias alias="TXHDRHGTRIGNMIN12" nameSpace="itemName"/>
|
|
1373
|
+
</xtce:AliasSet>
|
|
1374
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
1375
|
+
</xtce:Parameter>
|
|
1376
|
+
<xtce:Parameter name="IDX__TXHDRHGTRIGNMIN1" parameterTypeRef="IDX__TXHDRHGTRIGNMIN1_Type" shortDescription="Minimum number of samples for pulse 1 for TOF High single and double pulse triggering">
|
|
1377
|
+
<xtce:AliasSet>
|
|
1378
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
1379
|
+
<xtce:Alias alias="TXHDRHGTRIGNMIN1" nameSpace="itemName"/>
|
|
1380
|
+
</xtce:AliasSet>
|
|
1381
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
1382
|
+
</xtce:Parameter>
|
|
1383
|
+
<xtce:Parameter name="IDX__TXHDRHGTRIGNMAX1" parameterTypeRef="IDX__TXHDRHGTRIGNMAX1_Type" shortDescription="Maximum number of samples for pulse 1 for TOF High single and double pulse triggering">
|
|
1384
|
+
<xtce:AliasSet>
|
|
1385
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
1386
|
+
<xtce:Alias alias="TXHDRHGTRIGNMAX1" nameSpace="itemName"/>
|
|
1387
|
+
</xtce:AliasSet>
|
|
1388
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
1389
|
+
</xtce:Parameter>
|
|
1390
|
+
<xtce:Parameter name="IDX__TXHDRHGTRIGNMIN2" parameterTypeRef="IDX__TXHDRHGTRIGNMIN2_Type" shortDescription="Minimum number of samples for pulse 2 for TOF High single and double pulse triggering">
|
|
1391
|
+
<xtce:AliasSet>
|
|
1392
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
1393
|
+
<xtce:Alias alias="TXHDRHGTRIGNMIN2" nameSpace="itemName"/>
|
|
1394
|
+
</xtce:AliasSet>
|
|
1395
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
1396
|
+
</xtce:Parameter>
|
|
1397
|
+
<xtce:Parameter name="IDX__TXHDRHGTRIGNMAX2" parameterTypeRef="IDX__TXHDRHGTRIGNMAX2_Type" shortDescription="Maximum number of samples for pulse 2 for TOF High single and double pulse triggering">
|
|
1398
|
+
<xtce:AliasSet>
|
|
1399
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
1400
|
+
<xtce:Alias alias="TXHDRHGTRIGNMAX2" nameSpace="itemName"/>
|
|
1401
|
+
</xtce:AliasSet>
|
|
1402
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
1403
|
+
</xtce:Parameter>
|
|
1404
|
+
<xtce:Parameter name="IDX__TXHDRLGTRIGLVL" parameterTypeRef="IDX__TXHDRLGTRIGLVL_Type" shortDescription="Trigger level for the TOF Low Channel">
|
|
1405
|
+
<xtce:AliasSet>
|
|
1406
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
1407
|
+
<xtce:Alias alias="TXHDRLGTRIGLVL" nameSpace="itemName"/>
|
|
1408
|
+
</xtce:AliasSet>
|
|
1409
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
1410
|
+
</xtce:Parameter>
|
|
1411
|
+
<xtce:Parameter name="IDX__TXHDRLGTRIGNMAX12" parameterTypeRef="IDX__TXHDRLGTRIGNMAX12_Type" shortDescription="Maximum number of samples between pulse 1 and 2 for TOF Low double
|
|
1412
|
+
pulse triggering">
|
|
1413
|
+
<xtce:AliasSet>
|
|
1414
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
1415
|
+
<xtce:Alias alias="TXHDRLGTRIGNMAX12" nameSpace="itemName"/>
|
|
1416
|
+
</xtce:AliasSet>
|
|
1417
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
1418
|
+
</xtce:Parameter>
|
|
1419
|
+
<xtce:Parameter name="IDX__TXHDRLGTRIGNMIN12" parameterTypeRef="IDX__TXHDRLGTRIGNMIN12_Type" shortDescription="Minimum number of samples between pulse 1 and 2 for TOF Low double
|
|
1420
|
+
pulse triggering">
|
|
1421
|
+
<xtce:AliasSet>
|
|
1422
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
1423
|
+
<xtce:Alias alias="TXHDRLGTRIGNMIN12" nameSpace="itemName"/>
|
|
1424
|
+
</xtce:AliasSet>
|
|
1425
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
1426
|
+
</xtce:Parameter>
|
|
1427
|
+
<xtce:Parameter name="IDX__TXHDRLGTRIGNMIN1" parameterTypeRef="IDX__TXHDRLGTRIGNMIN1_Type" shortDescription="Minimum number of samples for pulse 1 for TOF Low single and double pulse triggering">
|
|
1428
|
+
<xtce:AliasSet>
|
|
1429
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
1430
|
+
<xtce:Alias alias="TXHDRLGTRIGNMIN1" nameSpace="itemName"/>
|
|
1431
|
+
</xtce:AliasSet>
|
|
1432
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
1433
|
+
</xtce:Parameter>
|
|
1434
|
+
<xtce:Parameter name="IDX__TXHDRLGTRIGNMAX1" parameterTypeRef="IDX__TXHDRLGTRIGNMAX1_Type" shortDescription="Maximum number of samples for pulse 1 for TOF Low single and double pulse triggering">
|
|
1435
|
+
<xtce:AliasSet>
|
|
1436
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
1437
|
+
<xtce:Alias alias="TXHDRLGTRIGNMAX1" nameSpace="itemName"/>
|
|
1438
|
+
</xtce:AliasSet>
|
|
1439
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
1440
|
+
</xtce:Parameter>
|
|
1441
|
+
<xtce:Parameter name="IDX__TXHDRLGTRIGNMIN2" parameterTypeRef="IDX__TXHDRLGTRIGNMIN2_Type" shortDescription="Minimum number of samples for pulse 2 for TOF Low single and double pulse triggering">
|
|
1442
|
+
<xtce:AliasSet>
|
|
1443
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
1444
|
+
<xtce:Alias alias="TXHDRLGTRIGNMIN2" nameSpace="itemName"/>
|
|
1445
|
+
</xtce:AliasSet>
|
|
1446
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
1447
|
+
</xtce:Parameter>
|
|
1448
|
+
<xtce:Parameter name="IDX__TXHDRLGTRIGNMAX2" parameterTypeRef="IDX__TXHDRLGTRIGNMAX2_Type" shortDescription="Maximum number of samples for pulse 2 for TOF Low single and double pulse triggering">
|
|
1449
|
+
<xtce:AliasSet>
|
|
1450
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
1451
|
+
<xtce:Alias alias="TXHDRLGTRIGNMAX2" nameSpace="itemName"/>
|
|
1452
|
+
</xtce:AliasSet>
|
|
1453
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
1454
|
+
</xtce:Parameter>
|
|
1455
|
+
<xtce:Parameter name="IDX__TXHDRMGTRIGLVL" parameterTypeRef="IDX__TXHDRMGTRIGLVL_Type" shortDescription="Trigger level for the TOF Mid Channel">
|
|
1456
|
+
<xtce:AliasSet>
|
|
1457
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
1458
|
+
<xtce:Alias alias="TXHDRMGTRIGLVL" nameSpace="itemName"/>
|
|
1459
|
+
</xtce:AliasSet>
|
|
1460
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
1461
|
+
</xtce:Parameter>
|
|
1462
|
+
<xtce:Parameter name="IDX__TXHDRMGTRIGNMAX12" parameterTypeRef="IDX__TXHDRMGTRIGNMAX12_Type" shortDescription="Maximum number of samples between pulse 1 and 2 for TOF Mid double
|
|
1463
|
+
pulse triggering">
|
|
1464
|
+
<xtce:AliasSet>
|
|
1465
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
1466
|
+
<xtce:Alias alias="TXHDRMGTRIGNMAX12" nameSpace="itemName"/>
|
|
1467
|
+
</xtce:AliasSet>
|
|
1468
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
1469
|
+
</xtce:Parameter>
|
|
1470
|
+
<xtce:Parameter name="IDX__TXHDRMGTRIGNMIN12" parameterTypeRef="IDX__TXHDRMGTRIGNMIN12_Type" shortDescription="Minimum number of samples between pulse 1 and 2 for TOF Mid double
|
|
1471
|
+
pulse triggering">
|
|
1472
|
+
<xtce:AliasSet>
|
|
1473
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
1474
|
+
<xtce:Alias alias="TXHDRMGTRIGNMIN12" nameSpace="itemName"/>
|
|
1475
|
+
</xtce:AliasSet>
|
|
1476
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
1477
|
+
</xtce:Parameter>
|
|
1478
|
+
<xtce:Parameter name="IDX__TXHDRMGTRIGNMIN1" parameterTypeRef="IDX__TXHDRMGTRIGNMIN1_Type" shortDescription="Minimum number of samples for pulse 1 for TOF Mid single and double pulse triggering">
|
|
1479
|
+
<xtce:AliasSet>
|
|
1480
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
1481
|
+
<xtce:Alias alias="TXHDRMGTRIGNMIN1" nameSpace="itemName"/>
|
|
1482
|
+
</xtce:AliasSet>
|
|
1483
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
1484
|
+
</xtce:Parameter>
|
|
1485
|
+
<xtce:Parameter name="IDX__TXHDRMGTRIGNMAX1" parameterTypeRef="IDX__TXHDRMGTRIGNMAX1_Type" shortDescription="Maximum number of samples for pulse 1 for TOF Mid single and double pulse triggering">
|
|
1486
|
+
<xtce:AliasSet>
|
|
1487
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
1488
|
+
<xtce:Alias alias="TXHDRMGTRIGNMAX1" nameSpace="itemName"/>
|
|
1489
|
+
</xtce:AliasSet>
|
|
1490
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
1491
|
+
</xtce:Parameter>
|
|
1492
|
+
<xtce:Parameter name="IDX__TXHDRMGTRIGNMIN2" parameterTypeRef="IDX__TXHDRMGTRIGNMIN2_Type" shortDescription="Minimum number of samples for pulse 2 for TOF Mid single and double pulse triggering">
|
|
1493
|
+
<xtce:AliasSet>
|
|
1494
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
1495
|
+
<xtce:Alias alias="TXHDRMGTRIGNMIN2" nameSpace="itemName"/>
|
|
1496
|
+
</xtce:AliasSet>
|
|
1497
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
1498
|
+
</xtce:Parameter>
|
|
1499
|
+
<xtce:Parameter name="IDX__TXHDRMGTRIGNMAX2" parameterTypeRef="IDX__TXHDRMGTRIGNMAX2_Type" shortDescription="Maximum number of samples for pulse 2 for TOF Mid single and double pulse triggering">
|
|
1500
|
+
<xtce:AliasSet>
|
|
1501
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
1502
|
+
<xtce:Alias alias="TXHDRMGTRIGNMAX2" nameSpace="itemName"/>
|
|
1503
|
+
</xtce:AliasSet>
|
|
1504
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
1505
|
+
</xtce:Parameter>
|
|
1506
|
+
<xtce:Parameter name="IDX__TXHDRSP03" parameterTypeRef="IDX__TXHDRSP03_Type" shortDescription="Spare">
|
|
1507
|
+
<xtce:AliasSet>
|
|
1508
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
1509
|
+
<xtce:Alias alias="TXHDRSP03" nameSpace="itemName"/>
|
|
1510
|
+
</xtce:AliasSet>
|
|
1511
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
1512
|
+
</xtce:Parameter>
|
|
1513
|
+
<xtce:Parameter name="IDX__TXHDRLSTRIGCMBLOCKS" parameterTypeRef="IDX__TXHDRLSTRIGCMBLOCKS_Type" shortDescription="Number of blocks coincidence window is enabled after low sample trigger">
|
|
1514
|
+
<xtce:AliasSet>
|
|
1515
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
1516
|
+
<xtce:Alias alias="TXHDRLSTRIGCMBLOCKS" nameSpace="itemName"/>
|
|
1517
|
+
</xtce:AliasSet>
|
|
1518
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
1519
|
+
</xtce:Parameter>
|
|
1520
|
+
<xtce:Parameter name="IDX__TXHDRLSTRIGPOL" parameterTypeRef="IDX__TXHDRLSTRIGPOL_Type" shortDescription="The trigger polarity for low sample (0 = normal, 1 = inverted)">
|
|
1521
|
+
<xtce:AliasSet>
|
|
1522
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
1523
|
+
<xtce:Alias alias="TXHDRLSTRIGPOL" nameSpace="itemName"/>
|
|
1524
|
+
</xtce:AliasSet>
|
|
1525
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
1526
|
+
</xtce:Parameter>
|
|
1527
|
+
<xtce:Parameter name="IDX__TXHDRLSTRIGLVL" parameterTypeRef="IDX__TXHDRLSTRIGLVL_Type" shortDescription="Trigger level for the low sample">
|
|
1528
|
+
<xtce:AliasSet>
|
|
1529
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
1530
|
+
<xtce:Alias alias="TXHDRLSTRIGLVL" nameSpace="itemName"/>
|
|
1531
|
+
</xtce:AliasSet>
|
|
1532
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
1533
|
+
</xtce:Parameter>
|
|
1534
|
+
<xtce:Parameter name="IDX__TXHDRLSTRIGNMIN" parameterTypeRef="IDX__TXHDRLSTRIGNMIN_Type" shortDescription="The minimum number of samples above/below the trigger level for triggering the low sample">
|
|
1535
|
+
<xtce:AliasSet>
|
|
1536
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
1537
|
+
<xtce:Alias alias="TXHDRLSTRIGNMIN" nameSpace="itemName"/>
|
|
1538
|
+
</xtce:AliasSet>
|
|
1539
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
1540
|
+
</xtce:Parameter>
|
|
1541
|
+
<xtce:Parameter name="IDX__TXHDRPOLSTAT" parameterTypeRef="IDX__TXHDRPOLSTAT_Type" shortDescription="Status of HVPS polarity">
|
|
1542
|
+
<xtce:AliasSet>
|
|
1543
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
1544
|
+
<xtce:Alias alias="TXHDRPOLSTAT" nameSpace="itemName"/>
|
|
1545
|
+
</xtce:AliasSet>
|
|
1546
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
1547
|
+
</xtce:Parameter>
|
|
1548
|
+
<xtce:Parameter name="IDX__TXHDRSTIMPULSE" parameterTypeRef="IDX__TXHDRSTIMPULSE_Type" shortDescription="Stim Pulse Enabled (1) or disabled (0)">
|
|
1549
|
+
<xtce:AliasSet>
|
|
1550
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
1551
|
+
<xtce:Alias alias="TXHDRSTIMPULSE" nameSpace="itemName"/>
|
|
1552
|
+
</xtce:AliasSet>
|
|
1553
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
1554
|
+
</xtce:Parameter>
|
|
1555
|
+
<xtce:Parameter name="IDX__TXHDRSP04" parameterTypeRef="IDX__TXHDRSP04_Type" shortDescription="Spare">
|
|
1556
|
+
<xtce:AliasSet>
|
|
1557
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
1558
|
+
<xtce:Alias alias="TXHDRSP04" nameSpace="itemName"/>
|
|
1559
|
+
</xtce:AliasSet>
|
|
1560
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
1561
|
+
</xtce:Parameter>
|
|
1562
|
+
<xtce:Parameter name="IDX__TXHDRPOLCTRL" parameterTypeRef="IDX__TXHDRPOLCTRL_Type" shortDescription="Reading from HVPS polarity">
|
|
1563
|
+
<xtce:AliasSet>
|
|
1564
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
1565
|
+
<xtce:Alias alias="TXHDRPOLCTRL" nameSpace="itemName"/>
|
|
1566
|
+
</xtce:AliasSet>
|
|
1567
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
1568
|
+
</xtce:Parameter>
|
|
1569
|
+
<xtce:Parameter name="IDX__TXHDRCOINENA" parameterTypeRef="IDX__TXHDRCOINENA_Type" shortDescription="LS coincidence setting">
|
|
1570
|
+
<xtce:AliasSet>
|
|
1571
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
1572
|
+
<xtce:Alias alias="TXHDRCOINENA" nameSpace="itemName"/>
|
|
1573
|
+
</xtce:AliasSet>
|
|
1574
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
1575
|
+
</xtce:Parameter>
|
|
1576
|
+
<xtce:Parameter name="IDX__TXHDRLSTRIGMODE" parameterTypeRef="IDX__TXHDRLSTRIGMODE_Type" shortDescription="Trigger mode for low speed (target) channel">
|
|
1577
|
+
<xtce:AliasSet>
|
|
1578
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
1579
|
+
<xtce:Alias alias="TXHDRLSTRIGMODE" nameSpace="itemName"/>
|
|
1580
|
+
</xtce:AliasSet>
|
|
1581
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
1582
|
+
</xtce:Parameter>
|
|
1583
|
+
<xtce:Parameter name="IDX__TXHDRMGTRIGMODE" parameterTypeRef="IDX__TXHDRMGTRIGMODE_Type" shortDescription="Trigger mode for mid-gain TOF channel">
|
|
1584
|
+
<xtce:AliasSet>
|
|
1585
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
1586
|
+
<xtce:Alias alias="TXHDRMGTRIGMODE" nameSpace="itemName"/>
|
|
1587
|
+
</xtce:AliasSet>
|
|
1588
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
1589
|
+
</xtce:Parameter>
|
|
1590
|
+
<xtce:Parameter name="IDX__TXHDRLGTRIGMODE" parameterTypeRef="IDX__TXHDRLGTRIGMODE_Type" shortDescription="Trigger mode for low-gain TOF channel">
|
|
1591
|
+
<xtce:AliasSet>
|
|
1592
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
1593
|
+
<xtce:Alias alias="TXHDRLGTRIGMODE" nameSpace="itemName"/>
|
|
1594
|
+
</xtce:AliasSet>
|
|
1595
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
1596
|
+
</xtce:Parameter>
|
|
1597
|
+
<xtce:Parameter name="IDX__TXHDRHGTRIGMODE" parameterTypeRef="IDX__TXHDRHGTRIGMODE_Type" shortDescription="Trigger mode for high-gain TOF channel">
|
|
1598
|
+
<xtce:AliasSet>
|
|
1599
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
1600
|
+
<xtce:Alias alias="TXHDRHGTRIGMODE" nameSpace="itemName"/>
|
|
1601
|
+
</xtce:AliasSet>
|
|
1602
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
1603
|
+
</xtce:Parameter>
|
|
1604
|
+
<xtce:Parameter name="IDX__TXHDRSP05" parameterTypeRef="IDX__TXHDRSP05_Type" shortDescription="Spare">
|
|
1605
|
+
<xtce:AliasSet>
|
|
1606
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
1607
|
+
<xtce:Alias alias="TXHDRSP05" nameSpace="itemName"/>
|
|
1608
|
+
</xtce:AliasSet>
|
|
1609
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
1610
|
+
</xtce:Parameter>
|
|
1611
|
+
<xtce:Parameter name="IDX__TXHDRSP06" parameterTypeRef="IDX__TXHDRSP06_Type" shortDescription="Spare">
|
|
1612
|
+
<xtce:AliasSet>
|
|
1613
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
1614
|
+
<xtce:Alias alias="TXHDRSP06" nameSpace="itemName"/>
|
|
1615
|
+
</xtce:AliasSet>
|
|
1616
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
1617
|
+
</xtce:Parameter>
|
|
1618
|
+
<xtce:Parameter name="IDX__TXHDRSP07" parameterTypeRef="IDX__TXHDRSP07_Type" shortDescription="Spare">
|
|
1619
|
+
<xtce:AliasSet>
|
|
1620
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
1621
|
+
<xtce:Alias alias="TXHDRSP07" nameSpace="itemName"/>
|
|
1622
|
+
</xtce:AliasSet>
|
|
1623
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
1624
|
+
</xtce:Parameter>
|
|
1625
|
+
<xtce:Parameter name="IDX__TXHDRSP08" parameterTypeRef="IDX__TXHDRSP08_Type" shortDescription="Spare">
|
|
1626
|
+
<xtce:AliasSet>
|
|
1627
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
1628
|
+
<xtce:Alias alias="TXHDRSP08" nameSpace="itemName"/>
|
|
1629
|
+
</xtce:AliasSet>
|
|
1630
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
1631
|
+
</xtce:Parameter>
|
|
1632
|
+
<xtce:Parameter name="IDX__TXHDRTOFMAX" parameterTypeRef="IDX__TXHDRTOFMAX_Type" shortDescription="Maximum HS ADC readings when first trigger happened">
|
|
1633
|
+
<xtce:AliasSet>
|
|
1634
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
1635
|
+
<xtce:Alias alias="TXHDRTOFMAX" nameSpace="itemName"/>
|
|
1636
|
+
</xtce:AliasSet>
|
|
1637
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
1638
|
+
</xtce:Parameter>
|
|
1639
|
+
<xtce:Parameter name="IDX__TXHDRTOFMIN" parameterTypeRef="IDX__TXHDRTOFMIN_Type" shortDescription="Minimum HS ADC readings when first trigger happened">
|
|
1640
|
+
<xtce:AliasSet>
|
|
1641
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
1642
|
+
<xtce:Alias alias="TXHDRTOFMIN" nameSpace="itemName"/>
|
|
1643
|
+
</xtce:AliasSet>
|
|
1644
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
1645
|
+
</xtce:Parameter>
|
|
1646
|
+
<xtce:Parameter name="IDX__TXHDRLS0MAXMIN" parameterTypeRef="IDX__TXHDRLS0MAXMIN_Type" shortDescription="LS ADC channel 0 min and max when first trigger happened">
|
|
1647
|
+
<xtce:AliasSet>
|
|
1648
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
1649
|
+
<xtce:Alias alias="TXHDRLS0MAXMIN" nameSpace="itemName"/>
|
|
1650
|
+
</xtce:AliasSet>
|
|
1651
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
1652
|
+
</xtce:Parameter>
|
|
1653
|
+
<xtce:Parameter name="IDX__TXHDRLS1MAXMIN" parameterTypeRef="IDX__TXHDRLS1MAXMIN_Type" shortDescription="LS ADC channel 1 min and max when first trigger happened">
|
|
1654
|
+
<xtce:AliasSet>
|
|
1655
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
1656
|
+
<xtce:Alias alias="TXHDRLS1MAXMIN" nameSpace="itemName"/>
|
|
1657
|
+
</xtce:AliasSet>
|
|
1658
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
1659
|
+
</xtce:Parameter>
|
|
1660
|
+
<xtce:Parameter name="IDX__TXHDRLS2MAXMIN" parameterTypeRef="IDX__TXHDRLS2MAXMIN_Type" shortDescription="LS ADC channel 2 min and max when first trigger happened">
|
|
1661
|
+
<xtce:AliasSet>
|
|
1662
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
1663
|
+
<xtce:Alias alias="TXHDRLS2MAXMIN" nameSpace="itemName"/>
|
|
1664
|
+
</xtce:AliasSet>
|
|
1665
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
1666
|
+
</xtce:Parameter>
|
|
1667
|
+
<xtce:Parameter name="IDX__TXHDRFIFODELAY" parameterTypeRef="IDX__TXHDRFIFODELAY_Type" shortDescription="FPGA FIFO delay register when first trigger happened">
|
|
1668
|
+
<xtce:AliasSet>
|
|
1669
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
1670
|
+
<xtce:Alias alias="TXHDRFIFODELAY" nameSpace="itemName"/>
|
|
1671
|
+
</xtce:AliasSet>
|
|
1672
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
1673
|
+
</xtce:Parameter>
|
|
1674
|
+
<xtce:Parameter name="IDX__TXHDRSP19" parameterTypeRef="IDX__TXHDRSP19_Type" shortDescription="Spare">
|
|
1675
|
+
<xtce:AliasSet>
|
|
1676
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
1677
|
+
<xtce:Alias alias="TXHDRSP19" nameSpace="itemName"/>
|
|
1678
|
+
</xtce:AliasSet>
|
|
1679
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
1680
|
+
</xtce:Parameter>
|
|
1681
|
+
<xtce:Parameter name="IDX__TXHDRADC1QDELAY" parameterTypeRef="IDX__TXHDRADC1QDELAY_Type" shortDescription="FPGA sample delay register when first trigger happened for TOF Low">
|
|
1682
|
+
<xtce:AliasSet>
|
|
1683
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
1684
|
+
<xtce:Alias alias="TXHDRADC1QDELAY" nameSpace="itemName"/>
|
|
1685
|
+
</xtce:AliasSet>
|
|
1686
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
1687
|
+
</xtce:Parameter>
|
|
1688
|
+
<xtce:Parameter name="IDX__TXHDRADC0QDELAY" parameterTypeRef="IDX__TXHDRADC0QDELAY_Type" shortDescription="FPGA sample delay register when first trigger happened for TOF Mid">
|
|
1689
|
+
<xtce:AliasSet>
|
|
1690
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
1691
|
+
<xtce:Alias alias="TXHDRADC0QDELAY" nameSpace="itemName"/>
|
|
1692
|
+
</xtce:AliasSet>
|
|
1693
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
1694
|
+
</xtce:Parameter>
|
|
1695
|
+
<xtce:Parameter name="IDX__TXHDRADC0IDELAY" parameterTypeRef="IDX__TXHDRADC0IDELAY_Type" shortDescription="FPGA sample delay register when first trigger happened for TOF High">
|
|
1696
|
+
<xtce:AliasSet>
|
|
1697
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
1698
|
+
<xtce:Alias alias="TXHDRADC0IDELAY" nameSpace="itemName"/>
|
|
1699
|
+
</xtce:AliasSet>
|
|
1700
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
1701
|
+
</xtce:Parameter>
|
|
1702
|
+
<xtce:Parameter name="IDX__TXHDRTRANSCNT" parameterTypeRef="IDX__TXHDRTRANSCNT_Type" shortDescription="FPGA transition count register when first trigger happened">
|
|
1703
|
+
<xtce:AliasSet>
|
|
1704
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
1705
|
+
<xtce:Alias alias="TXHDRTRANSCNT" nameSpace="itemName"/>
|
|
1706
|
+
</xtce:AliasSet>
|
|
1707
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
1708
|
+
</xtce:Parameter>
|
|
1709
|
+
<xtce:Parameter name="IDX__TXHDRPROCHKCH01" parameterTypeRef="IDX__TXHDRPROCHKCH01_Type" shortDescription="Measurements from channels 0 and 1 from Processor ADC">
|
|
1710
|
+
<xtce:AliasSet>
|
|
1711
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
1712
|
+
<xtce:Alias alias="TXHDRPROCHKCH01" nameSpace="itemName"/>
|
|
1713
|
+
</xtce:AliasSet>
|
|
1714
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
1715
|
+
</xtce:Parameter>
|
|
1716
|
+
<xtce:Parameter name="IDX__TXHDRPROCHKCH23" parameterTypeRef="IDX__TXHDRPROCHKCH23_Type" shortDescription="Measurements from channels 2 and 3 from Processor ADC">
|
|
1717
|
+
<xtce:AliasSet>
|
|
1718
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
1719
|
+
<xtce:Alias alias="TXHDRPROCHKCH23" nameSpace="itemName"/>
|
|
1720
|
+
</xtce:AliasSet>
|
|
1721
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
1722
|
+
</xtce:Parameter>
|
|
1723
|
+
<xtce:Parameter name="IDX__TXHDRPROCHKCH45" parameterTypeRef="IDX__TXHDRPROCHKCH45_Type" shortDescription="Measurements from channels 4 and 5 from Processor ADC">
|
|
1724
|
+
<xtce:AliasSet>
|
|
1725
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
1726
|
+
<xtce:Alias alias="TXHDRPROCHKCH45" nameSpace="itemName"/>
|
|
1727
|
+
</xtce:AliasSet>
|
|
1728
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
1729
|
+
</xtce:Parameter>
|
|
1730
|
+
<xtce:Parameter name="IDX__TXHDRPROCHKCH67" parameterTypeRef="IDX__TXHDRPROCHKCH67_Type" shortDescription="Measurements from channels 6 and 7 from Processor ADC">
|
|
1731
|
+
<xtce:AliasSet>
|
|
1732
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
1733
|
+
<xtce:Alias alias="TXHDRPROCHKCH67" nameSpace="itemName"/>
|
|
1734
|
+
</xtce:AliasSet>
|
|
1735
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
1736
|
+
</xtce:Parameter>
|
|
1737
|
+
<xtce:Parameter name="IDX__TXHDRSP11" parameterTypeRef="IDX__TXHDRSP11_Type" shortDescription="Spare">
|
|
1738
|
+
<xtce:AliasSet>
|
|
1739
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
1740
|
+
<xtce:Alias alias="TXHDRSP11" nameSpace="itemName"/>
|
|
1741
|
+
</xtce:AliasSet>
|
|
1742
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
1743
|
+
</xtce:Parameter>
|
|
1744
|
+
<xtce:Parameter name="IDX__TXHDRHVPSHKCH0" parameterTypeRef="IDX__TXHDRHVPSHKCH0_Type" shortDescription="Measurements from channel 0 from HVPS ADC">
|
|
1745
|
+
<xtce:AliasSet>
|
|
1746
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
1747
|
+
<xtce:Alias alias="TXHDRHVPSHKCH0" nameSpace="itemName"/>
|
|
1748
|
+
</xtce:AliasSet>
|
|
1749
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
1750
|
+
</xtce:Parameter>
|
|
1751
|
+
<xtce:Parameter name="IDX__TXHDRSP12" parameterTypeRef="IDX__TXHDRSP12_Type" shortDescription="Spare">
|
|
1752
|
+
<xtce:AliasSet>
|
|
1753
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
1754
|
+
<xtce:Alias alias="TXHDRSP12" nameSpace="itemName"/>
|
|
1755
|
+
</xtce:AliasSet>
|
|
1756
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
1757
|
+
</xtce:Parameter>
|
|
1758
|
+
<xtce:Parameter name="IDX__TXHDRHVPSHKCH1" parameterTypeRef="IDX__TXHDRHVPSHKCH1_Type" shortDescription="Measurements from channel 1 from HVPS ADC">
|
|
1759
|
+
<xtce:AliasSet>
|
|
1760
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
1761
|
+
<xtce:Alias alias="TXHDRHVPSHKCH1" nameSpace="itemName"/>
|
|
1762
|
+
</xtce:AliasSet>
|
|
1763
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
1764
|
+
</xtce:Parameter>
|
|
1765
|
+
<xtce:Parameter name="IDX__TXHDRSP13" parameterTypeRef="IDX__TXHDRSP13_Type" shortDescription="Spare">
|
|
1766
|
+
<xtce:AliasSet>
|
|
1767
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
1768
|
+
<xtce:Alias alias="TXHDRSP13" nameSpace="itemName"/>
|
|
1769
|
+
</xtce:AliasSet>
|
|
1770
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
1771
|
+
</xtce:Parameter>
|
|
1772
|
+
<xtce:Parameter name="IDX__TXHDRHVPSHKCH2" parameterTypeRef="IDX__TXHDRHVPSHKCH2_Type" shortDescription="Measurements from channel 2 from HVPS ADC">
|
|
1773
|
+
<xtce:AliasSet>
|
|
1774
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
1775
|
+
<xtce:Alias alias="TXHDRHVPSHKCH2" nameSpace="itemName"/>
|
|
1776
|
+
</xtce:AliasSet>
|
|
1777
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
1778
|
+
</xtce:Parameter>
|
|
1779
|
+
<xtce:Parameter name="IDX__TXHDRSP14" parameterTypeRef="IDX__TXHDRSP14_Type" shortDescription="Spare">
|
|
1780
|
+
<xtce:AliasSet>
|
|
1781
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
1782
|
+
<xtce:Alias alias="TXHDRSP14" nameSpace="itemName"/>
|
|
1783
|
+
</xtce:AliasSet>
|
|
1784
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
1785
|
+
</xtce:Parameter>
|
|
1786
|
+
<xtce:Parameter name="IDX__TXHDRHVPSHKCH3" parameterTypeRef="IDX__TXHDRHVPSHKCH3_Type" shortDescription="Measurements from channel 3 from HVPS ADC">
|
|
1787
|
+
<xtce:AliasSet>
|
|
1788
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
1789
|
+
<xtce:Alias alias="TXHDRHVPSHKCH3" nameSpace="itemName"/>
|
|
1790
|
+
</xtce:AliasSet>
|
|
1791
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
1792
|
+
</xtce:Parameter>
|
|
1793
|
+
<xtce:Parameter name="IDX__TXHDRSP15" parameterTypeRef="IDX__TXHDRSP15_Type" shortDescription="Spare">
|
|
1794
|
+
<xtce:AliasSet>
|
|
1795
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
1796
|
+
<xtce:Alias alias="TXHDRSP15" nameSpace="itemName"/>
|
|
1797
|
+
</xtce:AliasSet>
|
|
1798
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
1799
|
+
</xtce:Parameter>
|
|
1800
|
+
<xtce:Parameter name="IDX__TXHDRHVPSHKCH4" parameterTypeRef="IDX__TXHDRHVPSHKCH4_Type" shortDescription="Measurements from channel 4 from HVPS ADC">
|
|
1801
|
+
<xtce:AliasSet>
|
|
1802
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
1803
|
+
<xtce:Alias alias="TXHDRHVPSHKCH4" nameSpace="itemName"/>
|
|
1804
|
+
</xtce:AliasSet>
|
|
1805
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
1806
|
+
</xtce:Parameter>
|
|
1807
|
+
<xtce:Parameter name="IDX__TXHDRSP16" parameterTypeRef="IDX__TXHDRSP16_Type" shortDescription="Spare">
|
|
1808
|
+
<xtce:AliasSet>
|
|
1809
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
1810
|
+
<xtce:Alias alias="TXHDRSP16" nameSpace="itemName"/>
|
|
1811
|
+
</xtce:AliasSet>
|
|
1812
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
1813
|
+
</xtce:Parameter>
|
|
1814
|
+
<xtce:Parameter name="IDX__TXHDRHVPSHKCH5" parameterTypeRef="IDX__TXHDRHVPSHKCH5_Type" shortDescription="Measurements from channel 5 from HVPS ADC">
|
|
1815
|
+
<xtce:AliasSet>
|
|
1816
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
1817
|
+
<xtce:Alias alias="TXHDRHVPSHKCH5" nameSpace="itemName"/>
|
|
1818
|
+
</xtce:AliasSet>
|
|
1819
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
1820
|
+
</xtce:Parameter>
|
|
1821
|
+
<xtce:Parameter name="IDX__TXHDRSP17" parameterTypeRef="IDX__TXHDRSP17_Type" shortDescription="Spare">
|
|
1822
|
+
<xtce:AliasSet>
|
|
1823
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
1824
|
+
<xtce:Alias alias="TXHDRSP17" nameSpace="itemName"/>
|
|
1825
|
+
</xtce:AliasSet>
|
|
1826
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
1827
|
+
</xtce:Parameter>
|
|
1828
|
+
<xtce:Parameter name="IDX__TXHDRHVPSHKCH6" parameterTypeRef="IDX__TXHDRHVPSHKCH6_Type" shortDescription="Measurements from channel 6 from HVPS ADC">
|
|
1829
|
+
<xtce:AliasSet>
|
|
1830
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
1831
|
+
<xtce:Alias alias="TXHDRHVPSHKCH6" nameSpace="itemName"/>
|
|
1832
|
+
</xtce:AliasSet>
|
|
1833
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
1834
|
+
</xtce:Parameter>
|
|
1835
|
+
<xtce:Parameter name="IDX__TXHDRSP18" parameterTypeRef="IDX__TXHDRSP18_Type" shortDescription="Spare">
|
|
1836
|
+
<xtce:AliasSet>
|
|
1837
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
1838
|
+
<xtce:Alias alias="TXHDRSP18" nameSpace="itemName"/>
|
|
1839
|
+
</xtce:AliasSet>
|
|
1840
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
1841
|
+
</xtce:Parameter>
|
|
1842
|
+
<xtce:Parameter name="IDX__TXHDRHVPSHKCH7" parameterTypeRef="IDX__TXHDRHVPSHKCH7_Type" shortDescription="Measurements from channel 7 from HVPS ADC">
|
|
1843
|
+
<xtce:AliasSet>
|
|
1844
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
1845
|
+
<xtce:Alias alias="TXHDRHVPSHKCH7" nameSpace="itemName"/>
|
|
1846
|
+
</xtce:AliasSet>
|
|
1847
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
1848
|
+
</xtce:Parameter>
|
|
1849
|
+
<xtce:Parameter name="IDX__TXHDRLVHK0CH01" parameterTypeRef="IDX__TXHDRLVHK0CH01_Type" shortDescription="Measurements from channels 0 and 1 from LVPS ADC #2">
|
|
1850
|
+
<xtce:AliasSet>
|
|
1851
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
1852
|
+
<xtce:Alias alias="TXHDRLVHK0CH01" nameSpace="itemName"/>
|
|
1853
|
+
</xtce:AliasSet>
|
|
1854
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
1855
|
+
</xtce:Parameter>
|
|
1856
|
+
<xtce:Parameter name="IDX__TXHDRLVHK0CH23" parameterTypeRef="IDX__TXHDRLVHK0CH23_Type" shortDescription="Measurements from channels 2 and 3 from LVPS ADC #2">
|
|
1857
|
+
<xtce:AliasSet>
|
|
1858
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
1859
|
+
<xtce:Alias alias="TXHDRLVHK0CH23" nameSpace="itemName"/>
|
|
1860
|
+
</xtce:AliasSet>
|
|
1861
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
1862
|
+
</xtce:Parameter>
|
|
1863
|
+
<xtce:Parameter name="IDX__TXHDRLVHK0CH45" parameterTypeRef="IDX__TXHDRLVHK0CH45_Type" shortDescription="Measurements from channels 4 and 5 from LVPS ADC #2">
|
|
1864
|
+
<xtce:AliasSet>
|
|
1865
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
1866
|
+
<xtce:Alias alias="TXHDRLVHK0CH45" nameSpace="itemName"/>
|
|
1867
|
+
</xtce:AliasSet>
|
|
1868
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
1869
|
+
</xtce:Parameter>
|
|
1870
|
+
<xtce:Parameter name="IDX__TXHDRLVHK0CH67" parameterTypeRef="IDX__TXHDRLVHK0CH67_Type" shortDescription="Measurements from channels 6 and 7 from LVPS ADC #2">
|
|
1871
|
+
<xtce:AliasSet>
|
|
1872
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
1873
|
+
<xtce:Alias alias="TXHDRLVHK0CH67" nameSpace="itemName"/>
|
|
1874
|
+
</xtce:AliasSet>
|
|
1875
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
1876
|
+
</xtce:Parameter>
|
|
1877
|
+
<xtce:Parameter name="IDX__TXHDRLVHK1CH01" parameterTypeRef="IDX__TXHDRLVHK1CH01_Type" shortDescription="Measurements from channels 0 and 1 from LVPS ADC #2">
|
|
1878
|
+
<xtce:AliasSet>
|
|
1879
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
1880
|
+
<xtce:Alias alias="TXHDRLVHK1CH01" nameSpace="itemName"/>
|
|
1881
|
+
</xtce:AliasSet>
|
|
1882
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
1883
|
+
</xtce:Parameter>
|
|
1884
|
+
<xtce:Parameter name="IDX__TXHDRLVHK1CH23" parameterTypeRef="IDX__TXHDRLVHK1CH23_Type" shortDescription="Measurements from channels 2 and 3 from LVPS ADC #2">
|
|
1885
|
+
<xtce:AliasSet>
|
|
1886
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
1887
|
+
<xtce:Alias alias="TXHDRLVHK1CH23" nameSpace="itemName"/>
|
|
1888
|
+
</xtce:AliasSet>
|
|
1889
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
1890
|
+
</xtce:Parameter>
|
|
1891
|
+
<xtce:Parameter name="IDX__TXHDRLVHK1CH45" parameterTypeRef="IDX__TXHDRLVHK1CH45_Type" shortDescription="Measurements from channels 4 and 5 from LVPS ADC #2">
|
|
1892
|
+
<xtce:AliasSet>
|
|
1893
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
1894
|
+
<xtce:Alias alias="TXHDRLVHK1CH45" nameSpace="itemName"/>
|
|
1895
|
+
</xtce:AliasSet>
|
|
1896
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
1897
|
+
</xtce:Parameter>
|
|
1898
|
+
<xtce:Parameter name="IDX__TXHDRLVHK1CH67" parameterTypeRef="IDX__TXHDRLVHK1CH67_Type" shortDescription="Measurements from channels 6 and 7 from LVPS ADC #2">
|
|
1899
|
+
<xtce:AliasSet>
|
|
1900
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
1901
|
+
<xtce:Alias alias="TXHDRLVHK1CH67" nameSpace="itemName"/>
|
|
1902
|
+
</xtce:AliasSet>
|
|
1903
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
1904
|
+
</xtce:Parameter>
|
|
1905
|
+
<xtce:Parameter name="IDX__TXHDRLVHK2CH01" parameterTypeRef="IDX__TXHDRLVHK2CH01_Type" shortDescription="Measurements from channels 0 and 1 from LVPS ADC #2">
|
|
1906
|
+
<xtce:AliasSet>
|
|
1907
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
1908
|
+
<xtce:Alias alias="TXHDRLVHK2CH01" nameSpace="itemName"/>
|
|
1909
|
+
</xtce:AliasSet>
|
|
1910
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
1911
|
+
</xtce:Parameter>
|
|
1912
|
+
<xtce:Parameter name="IDX__TXHDRLVHK2CH23" parameterTypeRef="IDX__TXHDRLVHK2CH23_Type" shortDescription="Measurements from channels 2 and 3 from LVPS ADC #2">
|
|
1913
|
+
<xtce:AliasSet>
|
|
1914
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
1915
|
+
<xtce:Alias alias="TXHDRLVHK2CH23" nameSpace="itemName"/>
|
|
1916
|
+
</xtce:AliasSet>
|
|
1917
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
1918
|
+
</xtce:Parameter>
|
|
1919
|
+
<xtce:Parameter name="IDX__TXHDRLVHK2CH45" parameterTypeRef="IDX__TXHDRLVHK2CH45_Type" shortDescription="Measurements from channels 4 and 5 from LVPS ADC #2">
|
|
1920
|
+
<xtce:AliasSet>
|
|
1921
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
1922
|
+
<xtce:Alias alias="TXHDRLVHK2CH45" nameSpace="itemName"/>
|
|
1923
|
+
</xtce:AliasSet>
|
|
1924
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
1925
|
+
</xtce:Parameter>
|
|
1926
|
+
<xtce:Parameter name="IDX__TXHDRLVHK2CH67" parameterTypeRef="IDX__TXHDRLVHK2CH67_Type" shortDescription="Measurements from channels 6 and 7 from LVPS ADC #2">
|
|
1927
|
+
<xtce:AliasSet>
|
|
1928
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
1929
|
+
<xtce:Alias alias="TXHDRLVHK2CH67" nameSpace="itemName"/>
|
|
1930
|
+
</xtce:AliasSet>
|
|
1931
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
1932
|
+
</xtce:Parameter>
|
|
1933
|
+
<xtce:Parameter name="IDX__TXHDRSP09" parameterTypeRef="IDX__TXHDRSP09_Type" shortDescription="Spare">
|
|
1934
|
+
<xtce:AliasSet>
|
|
1935
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
1936
|
+
<xtce:Alias alias="TXHDRSP09" nameSpace="itemName"/>
|
|
1937
|
+
</xtce:AliasSet>
|
|
1938
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
1939
|
+
</xtce:Parameter>
|
|
1940
|
+
<xtce:Parameter name="IDX__TXHDRSP10" parameterTypeRef="IDX__TXHDRSP10_Type" shortDescription="Spare">
|
|
1941
|
+
<xtce:AliasSet>
|
|
1942
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
1943
|
+
<xtce:Alias alias="TXHDRSP10" nameSpace="itemName"/>
|
|
1944
|
+
</xtce:AliasSet>
|
|
1945
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
1946
|
+
</xtce:Parameter>
|
|
1947
|
+
<xtce:Parameter name="IDX__TXHDRFSWAIDCOPY" parameterTypeRef="IDX__TXHDRFSWAIDCOPY_Type" shortDescription="Another copy of the AID">
|
|
1948
|
+
<xtce:AliasSet>
|
|
1949
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
1950
|
+
<xtce:Alias alias="TXHDRFSWAIDCOPY" nameSpace="itemName"/>
|
|
1951
|
+
</xtce:AliasSet>
|
|
1952
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
1953
|
+
</xtce:Parameter>
|
|
1954
|
+
<xtce:Parameter name="IDX__TXHDRFSWBINCOPY" parameterTypeRef="IDX__TXHDRFSWBINCOPY_Type" shortDescription="Another copy of the filter/bin">
|
|
1955
|
+
<xtce:AliasSet>
|
|
1956
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
1957
|
+
<xtce:Alias alias="TXHDRFSWBINCOPY" nameSpace="itemName"/>
|
|
1958
|
+
</xtce:AliasSet>
|
|
1959
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
1960
|
+
</xtce:Parameter>
|
|
1961
|
+
<xtce:Parameter name="IDX__TXHDRFSWMAJOR" parameterTypeRef="IDX__TXHDRFSWMAJOR_Type" shortDescription="Major version number for FSW">
|
|
1962
|
+
<xtce:AliasSet>
|
|
1963
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
1964
|
+
<xtce:Alias alias="TXHDRFSWMAJOR" nameSpace="itemName"/>
|
|
1965
|
+
</xtce:AliasSet>
|
|
1966
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
1967
|
+
</xtce:Parameter>
|
|
1968
|
+
<xtce:Parameter name="IDX__TXHDRFSWMINOR" parameterTypeRef="IDX__TXHDRFSWMINOR_Type" shortDescription="Minor version number for FSW">
|
|
1969
|
+
<xtce:AliasSet>
|
|
1970
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
1971
|
+
<xtce:Alias alias="TXHDRFSWMINOR" nameSpace="itemName"/>
|
|
1972
|
+
</xtce:AliasSet>
|
|
1973
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
1974
|
+
</xtce:Parameter>
|
|
1975
|
+
<xtce:Parameter name="IDX__TXHDRFSWPATCH" parameterTypeRef="IDX__TXHDRFSWPATCH_Type" shortDescription="Patch version number for FSW">
|
|
1976
|
+
<xtce:AliasSet>
|
|
1977
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
1978
|
+
<xtce:Alias alias="TXHDRFSWPATCH" nameSpace="itemName"/>
|
|
1979
|
+
</xtce:AliasSet>
|
|
1980
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
1981
|
+
</xtce:Parameter>
|
|
1982
|
+
<xtce:Parameter name="IDX__TXHDRFSWHVSTAT" parameterTypeRef="IDX__TXHDRFSWHVSTAT_Type" shortDescription="HVPS polarity setting and status">
|
|
1983
|
+
<xtce:AliasSet>
|
|
1984
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
1985
|
+
<xtce:Alias alias="TXHDRFSWHVSTAT" nameSpace="itemName"/>
|
|
1986
|
+
</xtce:AliasSet>
|
|
1987
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
1988
|
+
</xtce:Parameter>
|
|
1989
|
+
<xtce:Parameter name="IDX__TXHDRFSWMEM0" parameterTypeRef="IDX__TXHDRFSWMEM0_Type" shortDescription="Read from address specified in param table">
|
|
1990
|
+
<xtce:AliasSet>
|
|
1991
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
1992
|
+
<xtce:Alias alias="TXHDRFSWMEM0" nameSpace="itemName"/>
|
|
1993
|
+
</xtce:AliasSet>
|
|
1994
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
1995
|
+
</xtce:Parameter>
|
|
1996
|
+
<xtce:Parameter name="IDX__TXHDRFSWMEM1" parameterTypeRef="IDX__TXHDRFSWMEM1_Type" shortDescription="Read from address specified in param table">
|
|
1997
|
+
<xtce:AliasSet>
|
|
1998
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
1999
|
+
<xtce:Alias alias="TXHDRFSWMEM1" nameSpace="itemName"/>
|
|
2000
|
+
</xtce:AliasSet>
|
|
2001
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
2002
|
+
</xtce:Parameter>
|
|
2003
|
+
<xtce:Parameter name="IDX__TXHDRFSWPT0" parameterTypeRef="IDX__TXHDRFSWPT0_Type" shortDescription="Value copied from param table">
|
|
2004
|
+
<xtce:AliasSet>
|
|
2005
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
2006
|
+
<xtce:Alias alias="TXHDRFSWPT0" nameSpace="itemName"/>
|
|
2007
|
+
</xtce:AliasSet>
|
|
2008
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
2009
|
+
</xtce:Parameter>
|
|
2010
|
+
<xtce:Parameter name="IDX__TXHDRFSWPT1" parameterTypeRef="IDX__TXHDRFSWPT1_Type" shortDescription="Value copied from param table">
|
|
2011
|
+
<xtce:AliasSet>
|
|
2012
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
2013
|
+
<xtce:Alias alias="TXHDRFSWPT1" nameSpace="itemName"/>
|
|
2014
|
+
</xtce:AliasSet>
|
|
2015
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
2016
|
+
</xtce:Parameter>
|
|
2017
|
+
<xtce:Parameter name="IDX__TXHDRFSWPT2" parameterTypeRef="IDX__TXHDRFSWPT2_Type" shortDescription="Value copied from param table">
|
|
2018
|
+
<xtce:AliasSet>
|
|
2019
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
2020
|
+
<xtce:Alias alias="TXHDRFSWPT2" nameSpace="itemName"/>
|
|
2021
|
+
</xtce:AliasSet>
|
|
2022
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
2023
|
+
</xtce:Parameter>
|
|
2024
|
+
<xtce:Parameter name="IDX__TXHDRFSWPT3" parameterTypeRef="IDX__TXHDRFSWPT3_Type" shortDescription="Value copied from param table">
|
|
2025
|
+
<xtce:AliasSet>
|
|
2026
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
2027
|
+
<xtce:Alias alias="TXHDRFSWPT3" nameSpace="itemName"/>
|
|
2028
|
+
</xtce:AliasSet>
|
|
2029
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
2030
|
+
</xtce:Parameter>
|
|
2031
|
+
<xtce:Parameter name="IDX__TXHDRFSWPT4" parameterTypeRef="IDX__TXHDRFSWPT4_Type" shortDescription="Value copied from param table">
|
|
2032
|
+
<xtce:AliasSet>
|
|
2033
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
2034
|
+
<xtce:Alias alias="TXHDRFSWPT4" nameSpace="itemName"/>
|
|
2035
|
+
</xtce:AliasSet>
|
|
2036
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
2037
|
+
</xtce:Parameter>
|
|
2038
|
+
<xtce:Parameter name="IDX__TXHDRFSWPT5" parameterTypeRef="IDX__TXHDRFSWPT5_Type" shortDescription="Value copied from param table">
|
|
2039
|
+
<xtce:AliasSet>
|
|
2040
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
2041
|
+
<xtce:Alias alias="TXHDRFSWPT5" nameSpace="itemName"/>
|
|
2042
|
+
</xtce:AliasSet>
|
|
2043
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
2044
|
+
</xtce:Parameter>
|
|
2045
|
+
<xtce:Parameter name="IDX__TXHDRFSWPT6" parameterTypeRef="IDX__TXHDRFSWPT6_Type" shortDescription="Value copied from param table">
|
|
2046
|
+
<xtce:AliasSet>
|
|
2047
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
2048
|
+
<xtce:Alias alias="TXHDRFSWPT6" nameSpace="itemName"/>
|
|
2049
|
+
</xtce:AliasSet>
|
|
2050
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
2051
|
+
</xtce:Parameter>
|
|
2052
|
+
<xtce:Parameter name="IDX__TXHDRFSWPT7" parameterTypeRef="IDX__TXHDRFSWPT7_Type" shortDescription="Value copied from param table">
|
|
2053
|
+
<xtce:AliasSet>
|
|
2054
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
2055
|
+
<xtce:Alias alias="TXHDRFSWPT7" nameSpace="itemName"/>
|
|
2056
|
+
</xtce:AliasSet>
|
|
2057
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
2058
|
+
</xtce:Parameter>
|
|
2059
|
+
<xtce:Parameter name="IDX__TXHDRFSWPT8" parameterTypeRef="IDX__TXHDRFSWPT8_Type" shortDescription="Value copied from param table">
|
|
2060
|
+
<xtce:AliasSet>
|
|
2061
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
2062
|
+
<xtce:Alias alias="TXHDRFSWPT8" nameSpace="itemName"/>
|
|
2063
|
+
</xtce:AliasSet>
|
|
2064
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
2065
|
+
</xtce:Parameter>
|
|
2066
|
+
<xtce:Parameter name="IDX__TXHDRFSWPT9" parameterTypeRef="IDX__TXHDRFSWPT9_Type" shortDescription="Value copied from param table">
|
|
2067
|
+
<xtce:AliasSet>
|
|
2068
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
2069
|
+
<xtce:Alias alias="TXHDRFSWPT9" nameSpace="itemName"/>
|
|
2070
|
+
</xtce:AliasSet>
|
|
2071
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
2072
|
+
</xtce:Parameter>
|
|
2073
|
+
<xtce:Parameter name="IDX__TXHDRFPGAVER" parameterTypeRef="IDX__TXHDRFPGAVER_Type" shortDescription="Version number of the FPGA version as date code">
|
|
2074
|
+
<xtce:AliasSet>
|
|
2075
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
2076
|
+
<xtce:Alias alias="TXHDRFPGAVER" nameSpace="itemName"/>
|
|
2077
|
+
</xtce:AliasSet>
|
|
2078
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
2079
|
+
</xtce:Parameter>
|
|
2080
|
+
<xtce:Parameter name="IDX__SYNCSCI0PKT" parameterTypeRef="IDX__SYNCSCI0PKT_Type" shortDescription="Synchronization marker">
|
|
2081
|
+
<xtce:AliasSet>
|
|
2082
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
2083
|
+
<xtce:Alias alias="SYNCSCI0PKT" nameSpace="itemName"/>
|
|
2084
|
+
</xtce:AliasSet>
|
|
2085
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
2086
|
+
</xtce:Parameter>
|
|
2087
|
+
<xtce:Parameter name="IDX__CRCSCI0PKT" parameterTypeRef="IDX__CRCSCI0PKT_Type" shortDescription="CRC CCITT-16">
|
|
2088
|
+
<xtce:AliasSet>
|
|
2089
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
2090
|
+
<xtce:Alias alias="CRCSCI0PKT" nameSpace="itemName"/>
|
|
2091
|
+
</xtce:AliasSet>
|
|
2092
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
2093
|
+
</xtce:Parameter>
|
|
2094
|
+
<xtce:Parameter name="IDX__SCI0RAW" parameterTypeRef="IDX__SCI0RAW_Type" shortDescription="">
|
|
2095
|
+
<xtce:AliasSet>
|
|
2096
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
2097
|
+
<xtce:Alias alias="SCI0RAW" nameSpace="itemName"/>
|
|
2098
|
+
</xtce:AliasSet>
|
|
2099
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
2100
|
+
</xtce:Parameter>
|
|
2101
|
+
<xtce:Parameter name="IDX__SCIFETCHAID" parameterTypeRef="IDX__SCIFETCHAID_Type" shortDescription="Accountability Identifier">
|
|
2102
|
+
<xtce:AliasSet>
|
|
2103
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
2104
|
+
<xtce:Alias alias="SCIFETCHAID" nameSpace="itemName"/>
|
|
2105
|
+
</xtce:AliasSet>
|
|
2106
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
2107
|
+
</xtce:Parameter>
|
|
2108
|
+
<xtce:Parameter name="IDX__SCIFETCHTYPE" parameterTypeRef="IDX__SCIFETCHTYPE_Type" shortDescription="Packet Data Content Type">
|
|
2109
|
+
<xtce:AliasSet>
|
|
2110
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
2111
|
+
<xtce:Alias alias="SCIFETCHTYPE" nameSpace="itemName"/>
|
|
2112
|
+
</xtce:AliasSet>
|
|
2113
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
2114
|
+
</xtce:Parameter>
|
|
2115
|
+
<xtce:Parameter name="IDX__SCIFETCHCONT" parameterTypeRef="IDX__SCIFETCHCONT_Type" shortDescription="Channels Included in Downlink">
|
|
2116
|
+
<xtce:AliasSet>
|
|
2117
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
2118
|
+
<xtce:Alias alias="SCIFETCHCONT" nameSpace="itemName"/>
|
|
2119
|
+
</xtce:AliasSet>
|
|
2120
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
2121
|
+
</xtce:Parameter>
|
|
2122
|
+
<xtce:Parameter name="IDX__SCIFETCHSPARE1" parameterTypeRef="IDX__SCIFETCHSPARE1_Type" shortDescription="">
|
|
2123
|
+
<xtce:AliasSet>
|
|
2124
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
2125
|
+
<xtce:Alias alias="SCIFETCHSPARE1" nameSpace="itemName"/>
|
|
2126
|
+
</xtce:AliasSet>
|
|
2127
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
2128
|
+
</xtce:Parameter>
|
|
2129
|
+
<xtce:Parameter name="IDX__SCIFETCHPACK" parameterTypeRef="IDX__SCIFETCHPACK_Type" shortDescription="Data Packed">
|
|
2130
|
+
<xtce:AliasSet>
|
|
2131
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
2132
|
+
<xtce:Alias alias="SCIFETCHPACK" nameSpace="itemName"/>
|
|
2133
|
+
</xtce:AliasSet>
|
|
2134
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
2135
|
+
</xtce:Parameter>
|
|
2136
|
+
<xtce:Parameter name="IDX__SCIFETCHFRAG" parameterTypeRef="IDX__SCIFETCHFRAG_Type" shortDescription="Data Fragemented">
|
|
2137
|
+
<xtce:AliasSet>
|
|
2138
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
2139
|
+
<xtce:Alias alias="SCIFETCHFRAG" nameSpace="itemName"/>
|
|
2140
|
+
</xtce:AliasSet>
|
|
2141
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
2142
|
+
</xtce:Parameter>
|
|
2143
|
+
<xtce:Parameter name="IDX__SCIFETCHCOMP" parameterTypeRef="IDX__SCIFETCHCOMP_Type" shortDescription="Data Compression">
|
|
2144
|
+
<xtce:AliasSet>
|
|
2145
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
2146
|
+
<xtce:Alias alias="SCIFETCHCOMP" nameSpace="itemName"/>
|
|
2147
|
+
</xtce:AliasSet>
|
|
2148
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
2149
|
+
</xtce:Parameter>
|
|
2150
|
+
<xtce:Parameter name="IDX__SCIFETCHEVTNUM" parameterTypeRef="IDX__SCIFETCHEVTNUM_Type" shortDescription="Event Time">
|
|
2151
|
+
<xtce:AliasSet>
|
|
2152
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
2153
|
+
<xtce:Alias alias="SCIFETCHEVTNUM" nameSpace="itemName"/>
|
|
2154
|
+
</xtce:AliasSet>
|
|
2155
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
2156
|
+
</xtce:Parameter>
|
|
2157
|
+
<xtce:Parameter name="IDX__SCIFETCHCAT" parameterTypeRef="IDX__SCIFETCHCAT_Type" shortDescription="Category">
|
|
2158
|
+
<xtce:AliasSet>
|
|
2159
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
2160
|
+
<xtce:Alias alias="SCIFETCHCAT" nameSpace="itemName"/>
|
|
2161
|
+
</xtce:AliasSet>
|
|
2162
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
2163
|
+
</xtce:Parameter>
|
|
2164
|
+
<xtce:Parameter name="IDX__SCIFETCHQUAL" parameterTypeRef="IDX__SCIFETCHQUAL_Type" shortDescription="Quality">
|
|
2165
|
+
<xtce:AliasSet>
|
|
2166
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
2167
|
+
<xtce:Alias alias="SCIFETCHQUAL" nameSpace="itemName"/>
|
|
2168
|
+
</xtce:AliasSet>
|
|
2169
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
2170
|
+
</xtce:Parameter>
|
|
2171
|
+
<xtce:Parameter name="IDX__SCIFETCHFRAGOFF" parameterTypeRef="IDX__SCIFETCHFRAGOFF_Type" shortDescription="Fragmentation Offset">
|
|
2172
|
+
<xtce:AliasSet>
|
|
2173
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
2174
|
+
<xtce:Alias alias="SCIFETCHFRAGOFF" nameSpace="itemName"/>
|
|
2175
|
+
</xtce:AliasSet>
|
|
2176
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
2177
|
+
</xtce:Parameter>
|
|
2178
|
+
<xtce:Parameter name="IDX__SCIFETCHVER" parameterTypeRef="IDX__SCIFETCHVER_Type" shortDescription="Science Version">
|
|
2179
|
+
<xtce:AliasSet>
|
|
2180
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
2181
|
+
<xtce:Alias alias="SCIFETCHVER" nameSpace="itemName"/>
|
|
2182
|
+
</xtce:AliasSet>
|
|
2183
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
2184
|
+
</xtce:Parameter>
|
|
2185
|
+
<xtce:Parameter name="IDX__SCIFETCHTIME32" parameterTypeRef="IDX__SCIFETCHTIME32_Type" shortDescription="Event Time">
|
|
2186
|
+
<xtce:AliasSet>
|
|
2187
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
2188
|
+
<xtce:Alias alias="SCIFETCHTIME32" nameSpace="itemName"/>
|
|
2189
|
+
</xtce:AliasSet>
|
|
2190
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
2191
|
+
</xtce:Parameter>
|
|
2192
|
+
<xtce:Parameter name="IDX__SCIFETCHSPARE2" parameterTypeRef="IDX__SCIFETCHSPARE2_Type" shortDescription="">
|
|
2193
|
+
<xtce:AliasSet>
|
|
2194
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
2195
|
+
<xtce:Alias alias="SCIFETCHSPARE2" nameSpace="itemName"/>
|
|
2196
|
+
</xtce:AliasSet>
|
|
2197
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
2198
|
+
</xtce:Parameter>
|
|
2199
|
+
<xtce:Parameter name="IDX__SCIFETCHSPARE3" parameterTypeRef="IDX__SCIFETCHSPARE3_Type" shortDescription="">
|
|
2200
|
+
<xtce:AliasSet>
|
|
2201
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
2202
|
+
<xtce:Alias alias="SCIFETCHSPARE3" nameSpace="itemName"/>
|
|
2203
|
+
</xtce:AliasSet>
|
|
2204
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
2205
|
+
</xtce:Parameter>
|
|
2206
|
+
<xtce:Parameter name="IDX__SCIFETCHSPARE4" parameterTypeRef="IDX__SCIFETCHSPARE4_Type" shortDescription="">
|
|
2207
|
+
<xtce:AliasSet>
|
|
2208
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
2209
|
+
<xtce:Alias alias="SCIFETCHSPARE4" nameSpace="itemName"/>
|
|
2210
|
+
</xtce:AliasSet>
|
|
2211
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
2212
|
+
</xtce:Parameter>
|
|
2213
|
+
<xtce:Parameter name="IDX__FETHDRSCIEVTLEN" parameterTypeRef="IDX__FETHDRSCIEVTLEN_Type" shortDescription="Length of sci data for this event (all 6 channels), in dwords">
|
|
2214
|
+
<xtce:AliasSet>
|
|
2215
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
2216
|
+
<xtce:Alias alias="FETHDRSCIEVTLEN" nameSpace="itemName"/>
|
|
2217
|
+
</xtce:AliasSet>
|
|
2218
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
2219
|
+
</xtce:Parameter>
|
|
2220
|
+
<xtce:Parameter name="IDX__FETHDRSP00" parameterTypeRef="IDX__FETHDRSP00_Type" shortDescription="Spare">
|
|
2221
|
+
<xtce:AliasSet>
|
|
2222
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
2223
|
+
<xtce:Alias alias="FETHDRSP00" nameSpace="itemName"/>
|
|
2224
|
+
</xtce:AliasSet>
|
|
2225
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
2226
|
+
</xtce:Parameter>
|
|
2227
|
+
<xtce:Parameter name="IDX__FETHDRTIMESEC1" parameterTypeRef="IDX__FETHDRTIMESEC1_Type" shortDescription="Trigger time, bits 31:16 of the coarse timestamp (integer seconds since epoch)">
|
|
2228
|
+
<xtce:AliasSet>
|
|
2229
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
2230
|
+
<xtce:Alias alias="FETHDRTIMESEC1" nameSpace="itemName"/>
|
|
2231
|
+
</xtce:AliasSet>
|
|
2232
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
2233
|
+
</xtce:Parameter>
|
|
2234
|
+
<xtce:Parameter name="IDX__FETHDRTIMESEC2" parameterTypeRef="IDX__FETHDRTIMESEC2_Type" shortDescription="Trigger time, bits 15:0 of the coarse timestamp (integer seconds since epoch)">
|
|
2235
|
+
<xtce:AliasSet>
|
|
2236
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
2237
|
+
<xtce:Alias alias="FETHDRTIMESEC2" nameSpace="itemName"/>
|
|
2238
|
+
</xtce:AliasSet>
|
|
2239
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
2240
|
+
</xtce:Parameter>
|
|
2241
|
+
<xtce:Parameter name="IDX__FETHDRTIMESUBS" parameterTypeRef="IDX__FETHDRTIMESUBS_Type" shortDescription="Trigger time, subseconds field">
|
|
2242
|
+
<xtce:AliasSet>
|
|
2243
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
2244
|
+
<xtce:Alias alias="FETHDRTIMESUBS" nameSpace="itemName"/>
|
|
2245
|
+
</xtce:AliasSet>
|
|
2246
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
2247
|
+
</xtce:Parameter>
|
|
2248
|
+
<xtce:Parameter name="IDX__FETHDRSP01" parameterTypeRef="IDX__FETHDRSP01_Type" shortDescription="Spare">
|
|
2249
|
+
<xtce:AliasSet>
|
|
2250
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
2251
|
+
<xtce:Alias alias="FETHDRSP01" nameSpace="itemName"/>
|
|
2252
|
+
</xtce:AliasSet>
|
|
2253
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
2254
|
+
</xtce:Parameter>
|
|
2255
|
+
<xtce:Parameter name="IDX__FETHDRTRIGOFFSET" parameterTypeRef="IDX__FETHDRTRIGOFFSET_Type" shortDescription="Trigger offset">
|
|
2256
|
+
<xtce:AliasSet>
|
|
2257
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
2258
|
+
<xtce:Alias alias="FETHDRTRIGOFFSET" nameSpace="itemName"/>
|
|
2259
|
+
</xtce:AliasSet>
|
|
2260
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
2261
|
+
</xtce:Parameter>
|
|
2262
|
+
<xtce:Parameter name="IDX__FETHDRSP02" parameterTypeRef="IDX__FETHDRSP02_Type" shortDescription="Spare">
|
|
2263
|
+
<xtce:AliasSet>
|
|
2264
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
2265
|
+
<xtce:Alias alias="FETHDRSP02" nameSpace="itemName"/>
|
|
2266
|
+
</xtce:AliasSet>
|
|
2267
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
2268
|
+
</xtce:Parameter>
|
|
2269
|
+
<xtce:Parameter name="IDX__FETHDRTRIGID" parameterTypeRef="IDX__FETHDRTRIGID_Type" shortDescription="Identifies which channel(s) caused this event to be captured">
|
|
2270
|
+
<xtce:AliasSet>
|
|
2271
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
2272
|
+
<xtce:Alias alias="FETHDRTRIGID" nameSpace="itemName"/>
|
|
2273
|
+
</xtce:AliasSet>
|
|
2274
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
2275
|
+
</xtce:Parameter>
|
|
2276
|
+
<xtce:Parameter name="IDX__FETHDREVTNUM" parameterTypeRef="IDX__FETHDREVTNUM_Type" shortDescription="Event number, an incrementing counter to uniquely identify one event in dataset">
|
|
2277
|
+
<xtce:AliasSet>
|
|
2278
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
2279
|
+
<xtce:Alias alias="FETHDREVTNUM" nameSpace="itemName"/>
|
|
2280
|
+
</xtce:AliasSet>
|
|
2281
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
2282
|
+
</xtce:Parameter>
|
|
2283
|
+
<xtce:Parameter name="IDX__FETHDRBLOCKS" parameterTypeRef="IDX__FETHDRBLOCKS_Type" shortDescription="Defines size of pre/post trigger blocks, see FPGA N Blocks register">
|
|
2284
|
+
<xtce:AliasSet>
|
|
2285
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
2286
|
+
<xtce:Alias alias="FETHDRBLOCKS" nameSpace="itemName"/>
|
|
2287
|
+
</xtce:AliasSet>
|
|
2288
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
2289
|
+
</xtce:Parameter>
|
|
2290
|
+
<xtce:Parameter name="IDX__FETHDRHGTRIGCTRL1" parameterTypeRef="IDX__FETHDRHGTRIGCTRL1_Type" shortDescription="Settings for High Gain TOF ADC triggering, part 1">
|
|
2291
|
+
<xtce:AliasSet>
|
|
2292
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
2293
|
+
<xtce:Alias alias="FETHDRHGTRIGCTRL1" nameSpace="itemName"/>
|
|
2294
|
+
</xtce:AliasSet>
|
|
2295
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
2296
|
+
</xtce:Parameter>
|
|
2297
|
+
<xtce:Parameter name="IDX__FETHDRHGTRIGCTRL2" parameterTypeRef="IDX__FETHDRHGTRIGCTRL2_Type" shortDescription="Settings for High Gain TOF ADC triggering, part 2">
|
|
2298
|
+
<xtce:AliasSet>
|
|
2299
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
2300
|
+
<xtce:Alias alias="FETHDRHGTRIGCTRL2" nameSpace="itemName"/>
|
|
2301
|
+
</xtce:AliasSet>
|
|
2302
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
2303
|
+
</xtce:Parameter>
|
|
2304
|
+
<xtce:Parameter name="IDX__FETHDRLGTRIGCTRL1" parameterTypeRef="IDX__FETHDRLGTRIGCTRL1_Type" shortDescription="Settings for Low Gain TOF ADC triggering, part 1">
|
|
2305
|
+
<xtce:AliasSet>
|
|
2306
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
2307
|
+
<xtce:Alias alias="FETHDRLGTRIGCTRL1" nameSpace="itemName"/>
|
|
2308
|
+
</xtce:AliasSet>
|
|
2309
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
2310
|
+
</xtce:Parameter>
|
|
2311
|
+
<xtce:Parameter name="IDX__FETHDRLGTRIGCTRL2" parameterTypeRef="IDX__FETHDRLGTRIGCTRL2_Type" shortDescription="Settings for Low Gain TOF ADC triggering, part 2">
|
|
2312
|
+
<xtce:AliasSet>
|
|
2313
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
2314
|
+
<xtce:Alias alias="FETHDRLGTRIGCTRL2" nameSpace="itemName"/>
|
|
2315
|
+
</xtce:AliasSet>
|
|
2316
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
2317
|
+
</xtce:Parameter>
|
|
2318
|
+
<xtce:Parameter name="IDX__FETHDRMGTRIGCTRL1" parameterTypeRef="IDX__FETHDRMGTRIGCTRL1_Type" shortDescription="Settings for Mid Gain TOF ADC triggering, part 1">
|
|
2319
|
+
<xtce:AliasSet>
|
|
2320
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
2321
|
+
<xtce:Alias alias="FETHDRMGTRIGCTRL1" nameSpace="itemName"/>
|
|
2322
|
+
</xtce:AliasSet>
|
|
2323
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
2324
|
+
</xtce:Parameter>
|
|
2325
|
+
<xtce:Parameter name="IDX__FETHDRMGTRIGCTRL2" parameterTypeRef="IDX__FETHDRMGTRIGCTRL2_Type" shortDescription="Settings for Mid Gain TOF ADC triggering, part 2">
|
|
2326
|
+
<xtce:AliasSet>
|
|
2327
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
2328
|
+
<xtce:Alias alias="FETHDRMGTRIGCTRL2" nameSpace="itemName"/>
|
|
2329
|
+
</xtce:AliasSet>
|
|
2330
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
2331
|
+
</xtce:Parameter>
|
|
2332
|
+
<xtce:Parameter name="IDX__FETHDRSP03" parameterTypeRef="IDX__FETHDRSP03_Type" shortDescription="Spare">
|
|
2333
|
+
<xtce:AliasSet>
|
|
2334
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
2335
|
+
<xtce:Alias alias="FETHDRSP03" nameSpace="itemName"/>
|
|
2336
|
+
</xtce:AliasSet>
|
|
2337
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
2338
|
+
</xtce:Parameter>
|
|
2339
|
+
<xtce:Parameter name="IDX__FETHDRLSADC" parameterTypeRef="IDX__FETHDRLSADC_Type" shortDescription="Settings for Low Speed (target) ADC triggering">
|
|
2340
|
+
<xtce:AliasSet>
|
|
2341
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
2342
|
+
<xtce:Alias alias="FETHDRLSADC" nameSpace="itemName"/>
|
|
2343
|
+
</xtce:AliasSet>
|
|
2344
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
2345
|
+
</xtce:Parameter>
|
|
2346
|
+
<xtce:Parameter name="IDX__FETHDRPOLSTAT" parameterTypeRef="IDX__FETHDRPOLSTAT_Type" shortDescription="Status of HVPS polarity">
|
|
2347
|
+
<xtce:AliasSet>
|
|
2348
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
2349
|
+
<xtce:Alias alias="FETHDRPOLSTAT" nameSpace="itemName"/>
|
|
2350
|
+
</xtce:AliasSet>
|
|
2351
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
2352
|
+
</xtce:Parameter>
|
|
2353
|
+
<xtce:Parameter name="IDX__FETHDRSP04" parameterTypeRef="IDX__FETHDRSP04_Type" shortDescription="Spare">
|
|
2354
|
+
<xtce:AliasSet>
|
|
2355
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
2356
|
+
<xtce:Alias alias="FETHDRSP04" nameSpace="itemName"/>
|
|
2357
|
+
</xtce:AliasSet>
|
|
2358
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
2359
|
+
</xtce:Parameter>
|
|
2360
|
+
<xtce:Parameter name="IDX__FETHDRPOLCTRL" parameterTypeRef="IDX__FETHDRPOLCTRL_Type" shortDescription="Reading from HVPS polarity">
|
|
2361
|
+
<xtce:AliasSet>
|
|
2362
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
2363
|
+
<xtce:Alias alias="FETHDRPOLCTRL" nameSpace="itemName"/>
|
|
2364
|
+
</xtce:AliasSet>
|
|
2365
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
2366
|
+
</xtce:Parameter>
|
|
2367
|
+
<xtce:Parameter name="IDX__FETHDRCOINENA" parameterTypeRef="IDX__FETHDRCOINENA_Type" shortDescription="LS coincidence setting">
|
|
2368
|
+
<xtce:AliasSet>
|
|
2369
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
2370
|
+
<xtce:Alias alias="FETHDRCOINENA" nameSpace="itemName"/>
|
|
2371
|
+
</xtce:AliasSet>
|
|
2372
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
2373
|
+
</xtce:Parameter>
|
|
2374
|
+
<xtce:Parameter name="IDX__FETHDRLSTRIGMODE" parameterTypeRef="IDX__FETHDRLSTRIGMODE_Type" shortDescription="Trigger mode for low speed (target) channel">
|
|
2375
|
+
<xtce:AliasSet>
|
|
2376
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
2377
|
+
<xtce:Alias alias="FETHDRLSTRIGMODE" nameSpace="itemName"/>
|
|
2378
|
+
</xtce:AliasSet>
|
|
2379
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
2380
|
+
</xtce:Parameter>
|
|
2381
|
+
<xtce:Parameter name="IDX__FETHDRMGTRIGMODE" parameterTypeRef="IDX__FETHDRMGTRIGMODE_Type" shortDescription="Trigger mode for mid-gain TOF channel">
|
|
2382
|
+
<xtce:AliasSet>
|
|
2383
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
2384
|
+
<xtce:Alias alias="FETHDRMGTRIGMODE" nameSpace="itemName"/>
|
|
2385
|
+
</xtce:AliasSet>
|
|
2386
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
2387
|
+
</xtce:Parameter>
|
|
2388
|
+
<xtce:Parameter name="IDX__FETHDRLGTRIGMODE" parameterTypeRef="IDX__FETHDRLGTRIGMODE_Type" shortDescription="Trigger mode for low-gain TOF channel">
|
|
2389
|
+
<xtce:AliasSet>
|
|
2390
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
2391
|
+
<xtce:Alias alias="FETHDRLGTRIGMODE" nameSpace="itemName"/>
|
|
2392
|
+
</xtce:AliasSet>
|
|
2393
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
2394
|
+
</xtce:Parameter>
|
|
2395
|
+
<xtce:Parameter name="IDX__FETHDRHGTRIGMODE" parameterTypeRef="IDX__FETHDRHGTRIGMODE_Type" shortDescription="Trigger mode for high-gain TOF channel">
|
|
2396
|
+
<xtce:AliasSet>
|
|
2397
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
2398
|
+
<xtce:Alias alias="FETHDRHGTRIGMODE" nameSpace="itemName"/>
|
|
2399
|
+
</xtce:AliasSet>
|
|
2400
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
2401
|
+
</xtce:Parameter>
|
|
2402
|
+
<xtce:Parameter name="IDX__FETHDRSP05" parameterTypeRef="IDX__FETHDRSP05_Type" shortDescription="Spare">
|
|
2403
|
+
<xtce:AliasSet>
|
|
2404
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
2405
|
+
<xtce:Alias alias="FETHDRSP05" nameSpace="itemName"/>
|
|
2406
|
+
</xtce:AliasSet>
|
|
2407
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
2408
|
+
</xtce:Parameter>
|
|
2409
|
+
<xtce:Parameter name="IDX__FETHDRSP06" parameterTypeRef="IDX__FETHDRSP06_Type" shortDescription="Spare">
|
|
2410
|
+
<xtce:AliasSet>
|
|
2411
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
2412
|
+
<xtce:Alias alias="FETHDRSP06" nameSpace="itemName"/>
|
|
2413
|
+
</xtce:AliasSet>
|
|
2414
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
2415
|
+
</xtce:Parameter>
|
|
2416
|
+
<xtce:Parameter name="IDX__FETHDRSP07" parameterTypeRef="IDX__FETHDRSP07_Type" shortDescription="Spare">
|
|
2417
|
+
<xtce:AliasSet>
|
|
2418
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
2419
|
+
<xtce:Alias alias="FETHDRSP07" nameSpace="itemName"/>
|
|
2420
|
+
</xtce:AliasSet>
|
|
2421
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
2422
|
+
</xtce:Parameter>
|
|
2423
|
+
<xtce:Parameter name="IDX__FETHDRSP08" parameterTypeRef="IDX__FETHDRSP08_Type" shortDescription="Spare">
|
|
2424
|
+
<xtce:AliasSet>
|
|
2425
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
2426
|
+
<xtce:Alias alias="FETHDRSP08" nameSpace="itemName"/>
|
|
2427
|
+
</xtce:AliasSet>
|
|
2428
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
2429
|
+
</xtce:Parameter>
|
|
2430
|
+
<xtce:Parameter name="IDX__FETHDRTOFMAX" parameterTypeRef="IDX__FETHDRTOFMAX_Type" shortDescription="Maximum HS ADC readings when first trigger happened">
|
|
2431
|
+
<xtce:AliasSet>
|
|
2432
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
2433
|
+
<xtce:Alias alias="FETHDRTOFMAX" nameSpace="itemName"/>
|
|
2434
|
+
</xtce:AliasSet>
|
|
2435
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
2436
|
+
</xtce:Parameter>
|
|
2437
|
+
<xtce:Parameter name="IDX__FETHDRTOFMIN" parameterTypeRef="IDX__FETHDRTOFMIN_Type" shortDescription="Minimum HS ADC readings when first trigger happened">
|
|
2438
|
+
<xtce:AliasSet>
|
|
2439
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
2440
|
+
<xtce:Alias alias="FETHDRTOFMIN" nameSpace="itemName"/>
|
|
2441
|
+
</xtce:AliasSet>
|
|
2442
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
2443
|
+
</xtce:Parameter>
|
|
2444
|
+
<xtce:Parameter name="IDX__FETHDRLS0MAXMIN" parameterTypeRef="IDX__FETHDRLS0MAXMIN_Type" shortDescription="LS ADC channel 0 min and max when first trigger happened">
|
|
2445
|
+
<xtce:AliasSet>
|
|
2446
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
2447
|
+
<xtce:Alias alias="FETHDRLS0MAXMIN" nameSpace="itemName"/>
|
|
2448
|
+
</xtce:AliasSet>
|
|
2449
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
2450
|
+
</xtce:Parameter>
|
|
2451
|
+
<xtce:Parameter name="IDX__FETHDRLS1MAXMIN" parameterTypeRef="IDX__FETHDRLS1MAXMIN_Type" shortDescription="LS ADC channel 1 min and max when first trigger happened">
|
|
2452
|
+
<xtce:AliasSet>
|
|
2453
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
2454
|
+
<xtce:Alias alias="FETHDRLS1MAXMIN" nameSpace="itemName"/>
|
|
2455
|
+
</xtce:AliasSet>
|
|
2456
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
2457
|
+
</xtce:Parameter>
|
|
2458
|
+
<xtce:Parameter name="IDX__FETHDRLS2MAXMIN" parameterTypeRef="IDX__FETHDRLS2MAXMIN_Type" shortDescription="LS ADC channel 2 min and max when first trigger happened">
|
|
2459
|
+
<xtce:AliasSet>
|
|
2460
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
2461
|
+
<xtce:Alias alias="FETHDRLS2MAXMIN" nameSpace="itemName"/>
|
|
2462
|
+
</xtce:AliasSet>
|
|
2463
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
2464
|
+
</xtce:Parameter>
|
|
2465
|
+
<xtce:Parameter name="IDX__FETHDRFIFODELAY" parameterTypeRef="IDX__FETHDRFIFODELAY_Type" shortDescription="FPGA FIFO delay register when first trigger happened">
|
|
2466
|
+
<xtce:AliasSet>
|
|
2467
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
2468
|
+
<xtce:Alias alias="FETHDRFIFODELAY" nameSpace="itemName"/>
|
|
2469
|
+
</xtce:AliasSet>
|
|
2470
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
2471
|
+
</xtce:Parameter>
|
|
2472
|
+
<xtce:Parameter name="IDX__FETHDRSAMPDELAY" parameterTypeRef="IDX__FETHDRSAMPDELAY_Type" shortDescription="FPGA sample delay register when first trigger happened">
|
|
2473
|
+
<xtce:AliasSet>
|
|
2474
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
2475
|
+
<xtce:Alias alias="FETHDRSAMPDELAY" nameSpace="itemName"/>
|
|
2476
|
+
</xtce:AliasSet>
|
|
2477
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
2478
|
+
</xtce:Parameter>
|
|
2479
|
+
<xtce:Parameter name="IDX__FETHDRTRANSCNT" parameterTypeRef="IDX__FETHDRTRANSCNT_Type" shortDescription="FPGA transition count register when first trigger happened">
|
|
2480
|
+
<xtce:AliasSet>
|
|
2481
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
2482
|
+
<xtce:Alias alias="FETHDRTRANSCNT" nameSpace="itemName"/>
|
|
2483
|
+
</xtce:AliasSet>
|
|
2484
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
2485
|
+
</xtce:Parameter>
|
|
2486
|
+
<xtce:Parameter name="IDX__FETHDRPROCHKCH01" parameterTypeRef="IDX__FETHDRPROCHKCH01_Type" shortDescription="Measurements from channels 0 and 1 from Processor ADC">
|
|
2487
|
+
<xtce:AliasSet>
|
|
2488
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
2489
|
+
<xtce:Alias alias="FETHDRPROCHKCH01" nameSpace="itemName"/>
|
|
2490
|
+
</xtce:AliasSet>
|
|
2491
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
2492
|
+
</xtce:Parameter>
|
|
2493
|
+
<xtce:Parameter name="IDX__FETHDRPROCHKCH23" parameterTypeRef="IDX__FETHDRPROCHKCH23_Type" shortDescription="Measurements from channels 2 and 3 from Processor ADC">
|
|
2494
|
+
<xtce:AliasSet>
|
|
2495
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
2496
|
+
<xtce:Alias alias="FETHDRPROCHKCH23" nameSpace="itemName"/>
|
|
2497
|
+
</xtce:AliasSet>
|
|
2498
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
2499
|
+
</xtce:Parameter>
|
|
2500
|
+
<xtce:Parameter name="IDX__FETHDRPROCHKCH45" parameterTypeRef="IDX__FETHDRPROCHKCH45_Type" shortDescription="Measurements from channels 4 and 5 from Processor ADC">
|
|
2501
|
+
<xtce:AliasSet>
|
|
2502
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
2503
|
+
<xtce:Alias alias="FETHDRPROCHKCH45" nameSpace="itemName"/>
|
|
2504
|
+
</xtce:AliasSet>
|
|
2505
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
2506
|
+
</xtce:Parameter>
|
|
2507
|
+
<xtce:Parameter name="IDX__FETHDRPROCHKCH67" parameterTypeRef="IDX__FETHDRPROCHKCH67_Type" shortDescription="Measurements from channels 6 and 7 from Processor ADC">
|
|
2508
|
+
<xtce:AliasSet>
|
|
2509
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
2510
|
+
<xtce:Alias alias="FETHDRPROCHKCH67" nameSpace="itemName"/>
|
|
2511
|
+
</xtce:AliasSet>
|
|
2512
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
2513
|
+
</xtce:Parameter>
|
|
2514
|
+
<xtce:Parameter name="IDX__FETHDRHVPSHKCH01" parameterTypeRef="IDX__FETHDRHVPSHKCH01_Type" shortDescription="Measurements from channels 0 and 1 from HVPS ADC">
|
|
2515
|
+
<xtce:AliasSet>
|
|
2516
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
2517
|
+
<xtce:Alias alias="FETHDRHVPSHKCH01" nameSpace="itemName"/>
|
|
2518
|
+
</xtce:AliasSet>
|
|
2519
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
2520
|
+
</xtce:Parameter>
|
|
2521
|
+
<xtce:Parameter name="IDX__FETHDRHVPSHKCH23" parameterTypeRef="IDX__FETHDRHVPSHKCH23_Type" shortDescription="Measurements from channels 2 and 3 from HVPS ADC">
|
|
2522
|
+
<xtce:AliasSet>
|
|
2523
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
2524
|
+
<xtce:Alias alias="FETHDRHVPSHKCH23" nameSpace="itemName"/>
|
|
2525
|
+
</xtce:AliasSet>
|
|
2526
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
2527
|
+
</xtce:Parameter>
|
|
2528
|
+
<xtce:Parameter name="IDX__FETHDRHVPSHKCH45" parameterTypeRef="IDX__FETHDRHVPSHKCH45_Type" shortDescription="Measurements from channels 4 and 5 from HVPS ADC">
|
|
2529
|
+
<xtce:AliasSet>
|
|
2530
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
2531
|
+
<xtce:Alias alias="FETHDRHVPSHKCH45" nameSpace="itemName"/>
|
|
2532
|
+
</xtce:AliasSet>
|
|
2533
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
2534
|
+
</xtce:Parameter>
|
|
2535
|
+
<xtce:Parameter name="IDX__FETHDRHVPSHKCH67" parameterTypeRef="IDX__FETHDRHVPSHKCH67_Type" shortDescription="Measurements from channels 6 and 7 from HVPS ADC">
|
|
2536
|
+
<xtce:AliasSet>
|
|
2537
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
2538
|
+
<xtce:Alias alias="FETHDRHVPSHKCH67" nameSpace="itemName"/>
|
|
2539
|
+
</xtce:AliasSet>
|
|
2540
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
2541
|
+
</xtce:Parameter>
|
|
2542
|
+
<xtce:Parameter name="IDX__FETHDRLVHK0CH01" parameterTypeRef="IDX__FETHDRLVHK0CH01_Type" shortDescription="Measurements from channels 0 and 1 from LVPS ADC #2">
|
|
2543
|
+
<xtce:AliasSet>
|
|
2544
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
2545
|
+
<xtce:Alias alias="FETHDRLVHK0CH01" nameSpace="itemName"/>
|
|
2546
|
+
</xtce:AliasSet>
|
|
2547
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
2548
|
+
</xtce:Parameter>
|
|
2549
|
+
<xtce:Parameter name="IDX__FETHDRLVHK0CH23" parameterTypeRef="IDX__FETHDRLVHK0CH23_Type" shortDescription="Measurements from channels 2 and 3 from LVPS ADC #2">
|
|
2550
|
+
<xtce:AliasSet>
|
|
2551
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
2552
|
+
<xtce:Alias alias="FETHDRLVHK0CH23" nameSpace="itemName"/>
|
|
2553
|
+
</xtce:AliasSet>
|
|
2554
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
2555
|
+
</xtce:Parameter>
|
|
2556
|
+
<xtce:Parameter name="IDX__FETHDRLVHK0CH45" parameterTypeRef="IDX__FETHDRLVHK0CH45_Type" shortDescription="Measurements from channels 4 and 5 from LVPS ADC #2">
|
|
2557
|
+
<xtce:AliasSet>
|
|
2558
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
2559
|
+
<xtce:Alias alias="FETHDRLVHK0CH45" nameSpace="itemName"/>
|
|
2560
|
+
</xtce:AliasSet>
|
|
2561
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
2562
|
+
</xtce:Parameter>
|
|
2563
|
+
<xtce:Parameter name="IDX__FETHDRLVHK0CH67" parameterTypeRef="IDX__FETHDRLVHK0CH67_Type" shortDescription="Measurements from channels 6 and 7 from LVPS ADC #2">
|
|
2564
|
+
<xtce:AliasSet>
|
|
2565
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
2566
|
+
<xtce:Alias alias="FETHDRLVHK0CH67" nameSpace="itemName"/>
|
|
2567
|
+
</xtce:AliasSet>
|
|
2568
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
2569
|
+
</xtce:Parameter>
|
|
2570
|
+
<xtce:Parameter name="IDX__FETHDRLVHK1CH01" parameterTypeRef="IDX__FETHDRLVHK1CH01_Type" shortDescription="Measurements from channels 0 and 1 from LVPS ADC #2">
|
|
2571
|
+
<xtce:AliasSet>
|
|
2572
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
2573
|
+
<xtce:Alias alias="FETHDRLVHK1CH01" nameSpace="itemName"/>
|
|
2574
|
+
</xtce:AliasSet>
|
|
2575
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
2576
|
+
</xtce:Parameter>
|
|
2577
|
+
<xtce:Parameter name="IDX__FETHDRLVHK1CH23" parameterTypeRef="IDX__FETHDRLVHK1CH23_Type" shortDescription="Measurements from channels 2 and 3 from LVPS ADC #2">
|
|
2578
|
+
<xtce:AliasSet>
|
|
2579
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
2580
|
+
<xtce:Alias alias="FETHDRLVHK1CH23" nameSpace="itemName"/>
|
|
2581
|
+
</xtce:AliasSet>
|
|
2582
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
2583
|
+
</xtce:Parameter>
|
|
2584
|
+
<xtce:Parameter name="IDX__FETHDRLVHK1CH45" parameterTypeRef="IDX__FETHDRLVHK1CH45_Type" shortDescription="Measurements from channels 4 and 5 from LVPS ADC #2">
|
|
2585
|
+
<xtce:AliasSet>
|
|
2586
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
2587
|
+
<xtce:Alias alias="FETHDRLVHK1CH45" nameSpace="itemName"/>
|
|
2588
|
+
</xtce:AliasSet>
|
|
2589
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
2590
|
+
</xtce:Parameter>
|
|
2591
|
+
<xtce:Parameter name="IDX__FETHDRLVHK1CH67" parameterTypeRef="IDX__FETHDRLVHK1CH67_Type" shortDescription="Measurements from channels 6 and 7 from LVPS ADC #2">
|
|
2592
|
+
<xtce:AliasSet>
|
|
2593
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
2594
|
+
<xtce:Alias alias="FETHDRLVHK1CH67" nameSpace="itemName"/>
|
|
2595
|
+
</xtce:AliasSet>
|
|
2596
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
2597
|
+
</xtce:Parameter>
|
|
2598
|
+
<xtce:Parameter name="IDX__FETHDRLVHK2CH01" parameterTypeRef="IDX__FETHDRLVHK2CH01_Type" shortDescription="Measurements from channels 0 and 1 from LVPS ADC #2">
|
|
2599
|
+
<xtce:AliasSet>
|
|
2600
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
2601
|
+
<xtce:Alias alias="FETHDRLVHK2CH01" nameSpace="itemName"/>
|
|
2602
|
+
</xtce:AliasSet>
|
|
2603
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
2604
|
+
</xtce:Parameter>
|
|
2605
|
+
<xtce:Parameter name="IDX__FETHDRLVHK2CH23" parameterTypeRef="IDX__FETHDRLVHK2CH23_Type" shortDescription="Measurements from channels 2 and 3 from LVPS ADC #2">
|
|
2606
|
+
<xtce:AliasSet>
|
|
2607
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
2608
|
+
<xtce:Alias alias="FETHDRLVHK2CH23" nameSpace="itemName"/>
|
|
2609
|
+
</xtce:AliasSet>
|
|
2610
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
2611
|
+
</xtce:Parameter>
|
|
2612
|
+
<xtce:Parameter name="IDX__FETHDRLVHK2CH45" parameterTypeRef="IDX__FETHDRLVHK2CH45_Type" shortDescription="Measurements from channels 4 and 5 from LVPS ADC #2">
|
|
2613
|
+
<xtce:AliasSet>
|
|
2614
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
2615
|
+
<xtce:Alias alias="FETHDRLVHK2CH45" nameSpace="itemName"/>
|
|
2616
|
+
</xtce:AliasSet>
|
|
2617
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
2618
|
+
</xtce:Parameter>
|
|
2619
|
+
<xtce:Parameter name="IDX__FETHDRLVHK2CH67" parameterTypeRef="IDX__FETHDRLVHK2CH67_Type" shortDescription="Measurements from channels 6 and 7 from LVPS ADC #2">
|
|
2620
|
+
<xtce:AliasSet>
|
|
2621
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
2622
|
+
<xtce:Alias alias="FETHDRLVHK2CH67" nameSpace="itemName"/>
|
|
2623
|
+
</xtce:AliasSet>
|
|
2624
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
2625
|
+
</xtce:Parameter>
|
|
2626
|
+
<xtce:Parameter name="IDX__FETHDRSP09" parameterTypeRef="IDX__FETHDRSP09_Type" shortDescription="Spare">
|
|
2627
|
+
<xtce:AliasSet>
|
|
2628
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
2629
|
+
<xtce:Alias alias="FETHDRSP09" nameSpace="itemName"/>
|
|
2630
|
+
</xtce:AliasSet>
|
|
2631
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
2632
|
+
</xtce:Parameter>
|
|
2633
|
+
<xtce:Parameter name="IDX__FETHDRSP10" parameterTypeRef="IDX__FETHDRSP10_Type" shortDescription="Spare">
|
|
2634
|
+
<xtce:AliasSet>
|
|
2635
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
2636
|
+
<xtce:Alias alias="FETHDRSP10" nameSpace="itemName"/>
|
|
2637
|
+
</xtce:AliasSet>
|
|
2638
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
2639
|
+
</xtce:Parameter>
|
|
2640
|
+
<xtce:Parameter name="IDX__FETHDRFSWAIDCOPY" parameterTypeRef="IDX__FETHDRFSWAIDCOPY_Type" shortDescription="Another copy of the AID">
|
|
2641
|
+
<xtce:AliasSet>
|
|
2642
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
2643
|
+
<xtce:Alias alias="FETHDRFSWAIDCOPY" nameSpace="itemName"/>
|
|
2644
|
+
</xtce:AliasSet>
|
|
2645
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
2646
|
+
</xtce:Parameter>
|
|
2647
|
+
<xtce:Parameter name="IDX__FETHDRFSWBINCOPY" parameterTypeRef="IDX__FETHDRFSWBINCOPY_Type" shortDescription="Another copy of the filter/bin">
|
|
2648
|
+
<xtce:AliasSet>
|
|
2649
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
2650
|
+
<xtce:Alias alias="FETHDRFSWBINCOPY" nameSpace="itemName"/>
|
|
2651
|
+
</xtce:AliasSet>
|
|
2652
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
2653
|
+
</xtce:Parameter>
|
|
2654
|
+
<xtce:Parameter name="IDX__FETHDRFSWMAJOR" parameterTypeRef="IDX__FETHDRFSWMAJOR_Type" shortDescription="Major version number for FSW">
|
|
2655
|
+
<xtce:AliasSet>
|
|
2656
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
2657
|
+
<xtce:Alias alias="FETHDRFSWMAJOR" nameSpace="itemName"/>
|
|
2658
|
+
</xtce:AliasSet>
|
|
2659
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
2660
|
+
</xtce:Parameter>
|
|
2661
|
+
<xtce:Parameter name="IDX__FETHDRFSWMINOR" parameterTypeRef="IDX__FETHDRFSWMINOR_Type" shortDescription="Minor version number for FSW">
|
|
2662
|
+
<xtce:AliasSet>
|
|
2663
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
2664
|
+
<xtce:Alias alias="FETHDRFSWMINOR" nameSpace="itemName"/>
|
|
2665
|
+
</xtce:AliasSet>
|
|
2666
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
2667
|
+
</xtce:Parameter>
|
|
2668
|
+
<xtce:Parameter name="IDX__FETHDRFSWPATCH" parameterTypeRef="IDX__FETHDRFSWPATCH_Type" shortDescription="Patch version number for FSW">
|
|
2669
|
+
<xtce:AliasSet>
|
|
2670
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
2671
|
+
<xtce:Alias alias="FETHDRFSWPATCH" nameSpace="itemName"/>
|
|
2672
|
+
</xtce:AliasSet>
|
|
2673
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
2674
|
+
</xtce:Parameter>
|
|
2675
|
+
<xtce:Parameter name="IDX__FETHDRFSWHVSTAT" parameterTypeRef="IDX__FETHDRFSWHVSTAT_Type" shortDescription="HVPS polarity setting and status">
|
|
2676
|
+
<xtce:AliasSet>
|
|
2677
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
2678
|
+
<xtce:Alias alias="FETHDRFSWHVSTAT" nameSpace="itemName"/>
|
|
2679
|
+
</xtce:AliasSet>
|
|
2680
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
2681
|
+
</xtce:Parameter>
|
|
2682
|
+
<xtce:Parameter name="IDX__FETHDRFSWMEM0" parameterTypeRef="IDX__FETHDRFSWMEM0_Type" shortDescription="Read from address specified in param table">
|
|
2683
|
+
<xtce:AliasSet>
|
|
2684
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
2685
|
+
<xtce:Alias alias="FETHDRFSWMEM0" nameSpace="itemName"/>
|
|
2686
|
+
</xtce:AliasSet>
|
|
2687
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
2688
|
+
</xtce:Parameter>
|
|
2689
|
+
<xtce:Parameter name="IDX__FETHDRFSWMEM1" parameterTypeRef="IDX__FETHDRFSWMEM1_Type" shortDescription="Read from address specified in param table">
|
|
2690
|
+
<xtce:AliasSet>
|
|
2691
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
2692
|
+
<xtce:Alias alias="FETHDRFSWMEM1" nameSpace="itemName"/>
|
|
2693
|
+
</xtce:AliasSet>
|
|
2694
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
2695
|
+
</xtce:Parameter>
|
|
2696
|
+
<xtce:Parameter name="IDX__FETHDRFSWPT0" parameterTypeRef="IDX__FETHDRFSWPT0_Type" shortDescription="Value copied from param table">
|
|
2697
|
+
<xtce:AliasSet>
|
|
2698
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
2699
|
+
<xtce:Alias alias="FETHDRFSWPT0" nameSpace="itemName"/>
|
|
2700
|
+
</xtce:AliasSet>
|
|
2701
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
2702
|
+
</xtce:Parameter>
|
|
2703
|
+
<xtce:Parameter name="IDX__FETHDRFSWPT1" parameterTypeRef="IDX__FETHDRFSWPT1_Type" shortDescription="Value copied from param table">
|
|
2704
|
+
<xtce:AliasSet>
|
|
2705
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
2706
|
+
<xtce:Alias alias="FETHDRFSWPT1" nameSpace="itemName"/>
|
|
2707
|
+
</xtce:AliasSet>
|
|
2708
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
2709
|
+
</xtce:Parameter>
|
|
2710
|
+
<xtce:Parameter name="IDX__FETHDRFSWPT2" parameterTypeRef="IDX__FETHDRFSWPT2_Type" shortDescription="Value copied from param table">
|
|
2711
|
+
<xtce:AliasSet>
|
|
2712
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
2713
|
+
<xtce:Alias alias="FETHDRFSWPT2" nameSpace="itemName"/>
|
|
2714
|
+
</xtce:AliasSet>
|
|
2715
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
2716
|
+
</xtce:Parameter>
|
|
2717
|
+
<xtce:Parameter name="IDX__FETHDRFSWPT3" parameterTypeRef="IDX__FETHDRFSWPT3_Type" shortDescription="Value copied from param table">
|
|
2718
|
+
<xtce:AliasSet>
|
|
2719
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
2720
|
+
<xtce:Alias alias="FETHDRFSWPT3" nameSpace="itemName"/>
|
|
2721
|
+
</xtce:AliasSet>
|
|
2722
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
2723
|
+
</xtce:Parameter>
|
|
2724
|
+
<xtce:Parameter name="IDX__FETHDRFSWPT4" parameterTypeRef="IDX__FETHDRFSWPT4_Type" shortDescription="Value copied from param table">
|
|
2725
|
+
<xtce:AliasSet>
|
|
2726
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
2727
|
+
<xtce:Alias alias="FETHDRFSWPT4" nameSpace="itemName"/>
|
|
2728
|
+
</xtce:AliasSet>
|
|
2729
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
2730
|
+
</xtce:Parameter>
|
|
2731
|
+
<xtce:Parameter name="IDX__FETHDRFSWPT5" parameterTypeRef="IDX__FETHDRFSWPT5_Type" shortDescription="Value copied from param table">
|
|
2732
|
+
<xtce:AliasSet>
|
|
2733
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
2734
|
+
<xtce:Alias alias="FETHDRFSWPT5" nameSpace="itemName"/>
|
|
2735
|
+
</xtce:AliasSet>
|
|
2736
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
2737
|
+
</xtce:Parameter>
|
|
2738
|
+
<xtce:Parameter name="IDX__FETHDRFSWPT6" parameterTypeRef="IDX__FETHDRFSWPT6_Type" shortDescription="Value copied from param table">
|
|
2739
|
+
<xtce:AliasSet>
|
|
2740
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
2741
|
+
<xtce:Alias alias="FETHDRFSWPT6" nameSpace="itemName"/>
|
|
2742
|
+
</xtce:AliasSet>
|
|
2743
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
2744
|
+
</xtce:Parameter>
|
|
2745
|
+
<xtce:Parameter name="IDX__FETHDRFSWPT7" parameterTypeRef="IDX__FETHDRFSWPT7_Type" shortDescription="Value copied from param table">
|
|
2746
|
+
<xtce:AliasSet>
|
|
2747
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
2748
|
+
<xtce:Alias alias="FETHDRFSWPT7" nameSpace="itemName"/>
|
|
2749
|
+
</xtce:AliasSet>
|
|
2750
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
2751
|
+
</xtce:Parameter>
|
|
2752
|
+
<xtce:Parameter name="IDX__FETHDRFSWPT8" parameterTypeRef="IDX__FETHDRFSWPT8_Type" shortDescription="Value copied from param table">
|
|
2753
|
+
<xtce:AliasSet>
|
|
2754
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
2755
|
+
<xtce:Alias alias="FETHDRFSWPT8" nameSpace="itemName"/>
|
|
2756
|
+
</xtce:AliasSet>
|
|
2757
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
2758
|
+
</xtce:Parameter>
|
|
2759
|
+
<xtce:Parameter name="IDX__FETHDRFSWPT9" parameterTypeRef="IDX__FETHDRFSWPT9_Type" shortDescription="Value copied from param table">
|
|
2760
|
+
<xtce:AliasSet>
|
|
2761
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
2762
|
+
<xtce:Alias alias="FETHDRFSWPT9" nameSpace="itemName"/>
|
|
2763
|
+
</xtce:AliasSet>
|
|
2764
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
2765
|
+
</xtce:Parameter>
|
|
2766
|
+
<xtce:Parameter name="IDX__FETHDRFPGAVER" parameterTypeRef="IDX__FETHDRFPGAVER_Type" shortDescription="Version number of the FPGA version as date code">
|
|
2767
|
+
<xtce:AliasSet>
|
|
2768
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
2769
|
+
<xtce:Alias alias="FETHDRFPGAVER" nameSpace="itemName"/>
|
|
2770
|
+
</xtce:AliasSet>
|
|
2771
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
2772
|
+
</xtce:Parameter>
|
|
2773
|
+
<xtce:Parameter name="IDX__SCIFETCHRAW" parameterTypeRef="IDX__SCIFETCHRAW_Type" shortDescription="">
|
|
2774
|
+
<xtce:AliasSet>
|
|
2775
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
2776
|
+
<xtce:Alias alias="SCIFETCHRAW" nameSpace="itemName"/>
|
|
2777
|
+
</xtce:AliasSet>
|
|
2778
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
2779
|
+
</xtce:Parameter>
|
|
2780
|
+
<xtce:Parameter name="IDX__SYNCSCIFETCHPKT" parameterTypeRef="IDX__SYNCSCIFETCHPKT_Type" shortDescription="Synchronization marker">
|
|
2781
|
+
<xtce:AliasSet>
|
|
2782
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
2783
|
+
<xtce:Alias alias="SYNCSCIFETCHPKT" nameSpace="itemName"/>
|
|
2784
|
+
</xtce:AliasSet>
|
|
2785
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
2786
|
+
</xtce:Parameter>
|
|
2787
|
+
<xtce:Parameter name="IDX__CRCSCIFETCHPKT" parameterTypeRef="IDX__CRCSCIFETCHPKT_Type" shortDescription="CRC CCITT-16">
|
|
2788
|
+
<xtce:AliasSet>
|
|
2789
|
+
<xtce:Alias alias="IDX" nameSpace="externalElement"/>
|
|
2790
|
+
<xtce:Alias alias="CRCSCIFETCHPKT" nameSpace="itemName"/>
|
|
2791
|
+
</xtce:AliasSet>
|
|
2792
|
+
<xtce:ParameterProperties dataSource="telemetered"/>
|
|
2793
|
+
</xtce:Parameter>
|
|
2794
|
+
</xtce:ParameterSet>
|
|
2795
|
+
<xtce:ContainerSet>
|
|
2796
|
+
<xtce:SequenceContainer abstract="true" name="CCSDSPacket">
|
|
2797
|
+
<xtce:LongDescription>Super-container for telemetry and command packets</xtce:LongDescription>
|
|
2798
|
+
<xtce:AncillaryDataSet>
|
|
2799
|
+
<xtce:AncillaryData name="topLevelPacket">false</xtce:AncillaryData>
|
|
2800
|
+
</xtce:AncillaryDataSet>
|
|
2801
|
+
<xtce:EntryList>
|
|
2802
|
+
<xtce:ParameterRefEntry parameterRef="VERSION"/>
|
|
2803
|
+
<xtce:ParameterRefEntry parameterRef="TYPE"/>
|
|
2804
|
+
<xtce:ParameterRefEntry parameterRef="SEC_HDR_FLG"/>
|
|
2805
|
+
<xtce:ParameterRefEntry parameterRef="PKT_APID"/>
|
|
2806
|
+
<xtce:ParameterRefEntry parameterRef="SEQ_FLGS"/>
|
|
2807
|
+
<xtce:ParameterRefEntry parameterRef="SRC_SEQ_CTR"/>
|
|
2808
|
+
<xtce:ParameterRefEntry parameterRef="PKT_LEN"/>
|
|
2809
|
+
</xtce:EntryList>
|
|
2810
|
+
</xtce:SequenceContainer>
|
|
2811
|
+
<xtce:SequenceContainer abstract="true" name="CCSDSTelemetryPacket">
|
|
2812
|
+
<xtce:LongDescription>Super-container for all telemetry packets</xtce:LongDescription>
|
|
2813
|
+
<xtce:AncillaryDataSet>
|
|
2814
|
+
<xtce:AncillaryData name="topLevelPacket">false</xtce:AncillaryData>
|
|
2815
|
+
</xtce:AncillaryDataSet>
|
|
2816
|
+
<xtce:EntryList/>
|
|
2817
|
+
<xtce:BaseContainer containerRef="CCSDSPacket">
|
|
2818
|
+
<xtce:RestrictionCriteria>
|
|
2819
|
+
<xtce:ComparisonList>
|
|
2820
|
+
<xtce:Comparison value="0" parameterRef="VERSION" useCalibratedValue="false"/>
|
|
2821
|
+
<xtce:Comparison value="0" parameterRef="TYPE" useCalibratedValue="false"/>
|
|
2822
|
+
</xtce:ComparisonList>
|
|
2823
|
+
</xtce:RestrictionCriteria>
|
|
2824
|
+
</xtce:BaseContainer>
|
|
2825
|
+
</xtce:SequenceContainer>
|
|
2826
|
+
<xtce:SequenceContainer abstract="true" name="SecondaryHeaderContainer">
|
|
2827
|
+
<xtce:LongDescription>Container for telemetry secondary header items</xtce:LongDescription>
|
|
2828
|
+
<xtce:AncillaryDataSet>
|
|
2829
|
+
<xtce:AncillaryData name="topLevelPacket">false</xtce:AncillaryData>
|
|
2830
|
+
</xtce:AncillaryDataSet>
|
|
2831
|
+
<xtce:EntryList>
|
|
2832
|
+
<xtce:ParameterRefEntry parameterRef="SHCOARSE"/>
|
|
2833
|
+
<xtce:ParameterRefEntry parameterRef="SHFINE"/>
|
|
2834
|
+
</xtce:EntryList>
|
|
2835
|
+
</xtce:SequenceContainer>
|
|
2836
|
+
<xtce:SequenceContainer abstract="true" name="IDX_SCI0" shortDescription="Science pkts resulting from Transmit cmd">
|
|
2837
|
+
<xtce:LongDescription></xtce:LongDescription>
|
|
2838
|
+
<xtce:AliasSet>
|
|
2839
|
+
<xtce:Alias alias="IDX_SCI0" nameSpace="streamName"/>
|
|
2840
|
+
<xtce:Alias alias="IDX" nameSpace="packetElement"/>
|
|
2841
|
+
</xtce:AliasSet>
|
|
2842
|
+
<xtce:AncillaryDataSet>
|
|
2843
|
+
<xtce:AncillaryData name="topLevelPacket">true</xtce:AncillaryData>
|
|
2844
|
+
</xtce:AncillaryDataSet>
|
|
2845
|
+
<xtce:EntryList>
|
|
2846
|
+
<xtce:ContainerRefEntry containerRef="SecondaryHeaderContainer"/>
|
|
2847
|
+
<xtce:ParameterRefEntry parameterRef="IDX__SCI0AID"/>
|
|
2848
|
+
<xtce:ParameterRefEntry parameterRef="IDX__SCI0TYPE"/>
|
|
2849
|
+
<xtce:ParameterRefEntry parameterRef="IDX__SCI0CONT"/>
|
|
2850
|
+
<xtce:ParameterRefEntry parameterRef="IDX__SCI0SPARE1"/>
|
|
2851
|
+
<xtce:ParameterRefEntry parameterRef="IDX__SCI0PACK"/>
|
|
2852
|
+
<xtce:ParameterRefEntry parameterRef="IDX__SCI0FRAG"/>
|
|
2853
|
+
<xtce:ParameterRefEntry parameterRef="IDX__SCI0COMP"/>
|
|
2854
|
+
<xtce:ParameterRefEntry parameterRef="IDX__SCI0EVTNUM"/>
|
|
2855
|
+
<xtce:ParameterRefEntry parameterRef="IDX__SCI0CAT"/>
|
|
2856
|
+
<xtce:ParameterRefEntry parameterRef="IDX__SCI0QUAL"/>
|
|
2857
|
+
<xtce:ParameterRefEntry parameterRef="IDX__SCI0FRAGOFF"/>
|
|
2858
|
+
<xtce:ParameterRefEntry parameterRef="IDX__SCI0VER"/>
|
|
2859
|
+
<xtce:ParameterRefEntry parameterRef="IDX__SCI0TIME32"/>
|
|
2860
|
+
<xtce:ParameterRefEntry parameterRef="IDX__SCI0SPARE2"/>
|
|
2861
|
+
<xtce:ParameterRefEntry parameterRef="IDX__SCI0SPARE3"/>
|
|
2862
|
+
<xtce:ParameterRefEntry parameterRef="IDX__SCI0SPARE4"/>
|
|
2863
|
+
</xtce:EntryList>
|
|
2864
|
+
<xtce:BaseContainer containerRef="CCSDSTelemetryPacket">
|
|
2865
|
+
<xtce:RestrictionCriteria>
|
|
2866
|
+
<xtce:ComparisonList>
|
|
2867
|
+
<xtce:Comparison value="1424" parameterRef="PKT_APID" useCalibratedValue="false"/>
|
|
2868
|
+
</xtce:ComparisonList>
|
|
2869
|
+
</xtce:RestrictionCriteria>
|
|
2870
|
+
</xtce:BaseContainer>
|
|
2871
|
+
</xtce:SequenceContainer>
|
|
2872
|
+
<xtce:SequenceContainer name="Sci0TypeZero">
|
|
2873
|
+
<xtce:EntryList>
|
|
2874
|
+
<xtce:ParameterRefEntry parameterRef="IDX__TXHDRSCIEVTLEN"/>
|
|
2875
|
+
<xtce:ParameterRefEntry parameterRef="IDX__TXHDRSP00"/>
|
|
2876
|
+
<xtce:ParameterRefEntry parameterRef="IDX__TXHDRTIMESEC1"/>
|
|
2877
|
+
<xtce:ParameterRefEntry parameterRef="IDX__TXHDRTIMESEC2"/>
|
|
2878
|
+
<xtce:ParameterRefEntry parameterRef="IDX__TXHDRTIMESUBS"/>
|
|
2879
|
+
<xtce:ParameterRefEntry parameterRef="IDX__TXHDRSP01"/>
|
|
2880
|
+
<xtce:ParameterRefEntry parameterRef="IDX__TXHDRTRIGOFFSET"/>
|
|
2881
|
+
<xtce:ParameterRefEntry parameterRef="IDX__TXHDRSP02"/>
|
|
2882
|
+
<xtce:ParameterRefEntry parameterRef="IDX__TXHDRTRIGID"/>
|
|
2883
|
+
<xtce:ParameterRefEntry parameterRef="IDX__TXHDREVTNUM"/>
|
|
2884
|
+
<xtce:ParameterRefEntry parameterRef="IDX__TXHDRHSBLOCKSERROR"/>
|
|
2885
|
+
<xtce:ParameterRefEntry parameterRef="IDX__TXHDRLSBLOCKSERROR"/>
|
|
2886
|
+
<xtce:ParameterRefEntry parameterRef="IDX__TXHDRDEADBLOCKSBASE"/>
|
|
2887
|
+
<xtce:ParameterRefEntry parameterRef="IDX__TXHDRDEADBLOCKSSHIFT"/>
|
|
2888
|
+
<xtce:ParameterRefEntry parameterRef="IDX__TXHDRHSPREBLOCKS"/>
|
|
2889
|
+
<xtce:ParameterRefEntry parameterRef="IDX__TXHDRHSPOSTBLOCKS"/>
|
|
2890
|
+
<xtce:ParameterRefEntry parameterRef="IDX__TXHDRLSPREBLOCKS"/>
|
|
2891
|
+
<xtce:ParameterRefEntry parameterRef="IDX__TXHDRLSPOSTBLOCKS"/>
|
|
2892
|
+
<xtce:ParameterRefEntry parameterRef="IDX__TXHDRHGTRIGLVL"/>
|
|
2893
|
+
<xtce:ParameterRefEntry parameterRef="IDX__TXHDRHGTRIGNMAX12"/>
|
|
2894
|
+
<xtce:ParameterRefEntry parameterRef="IDX__TXHDRHGTRIGNMIN12"/>
|
|
2895
|
+
<xtce:ParameterRefEntry parameterRef="IDX__TXHDRHGTRIGNMAX2"/>
|
|
2896
|
+
<xtce:ParameterRefEntry parameterRef="IDX__TXHDRHGTRIGNMIN2"/>
|
|
2897
|
+
<xtce:ParameterRefEntry parameterRef="IDX__TXHDRHGTRIGNMAX1"/>
|
|
2898
|
+
<xtce:ParameterRefEntry parameterRef="IDX__TXHDRHGTRIGNMIN1"/>
|
|
2899
|
+
<xtce:ParameterRefEntry parameterRef="IDX__TXHDRLGTRIGLVL"/>
|
|
2900
|
+
<xtce:ParameterRefEntry parameterRef="IDX__TXHDRLGTRIGNMAX12"/>
|
|
2901
|
+
<xtce:ParameterRefEntry parameterRef="IDX__TXHDRLGTRIGNMIN12"/>
|
|
2902
|
+
<xtce:ParameterRefEntry parameterRef="IDX__TXHDRLGTRIGNMAX2"/>
|
|
2903
|
+
<xtce:ParameterRefEntry parameterRef="IDX__TXHDRLGTRIGNMIN2"/>
|
|
2904
|
+
<xtce:ParameterRefEntry parameterRef="IDX__TXHDRLGTRIGNMAX1"/>
|
|
2905
|
+
<xtce:ParameterRefEntry parameterRef="IDX__TXHDRLGTRIGNMIN1"/>
|
|
2906
|
+
<xtce:ParameterRefEntry parameterRef="IDX__TXHDRMGTRIGLVL"/>
|
|
2907
|
+
<xtce:ParameterRefEntry parameterRef="IDX__TXHDRMGTRIGNMAX12"/>
|
|
2908
|
+
<xtce:ParameterRefEntry parameterRef="IDX__TXHDRMGTRIGNMIN12"/>
|
|
2909
|
+
<xtce:ParameterRefEntry parameterRef="IDX__TXHDRMGTRIGNMAX2"/>
|
|
2910
|
+
<xtce:ParameterRefEntry parameterRef="IDX__TXHDRMGTRIGNMIN2"/>
|
|
2911
|
+
<xtce:ParameterRefEntry parameterRef="IDX__TXHDRMGTRIGNMAX1"/>
|
|
2912
|
+
<xtce:ParameterRefEntry parameterRef="IDX__TXHDRMGTRIGNMIN1"/>
|
|
2913
|
+
<xtce:ParameterRefEntry parameterRef="IDX__TXHDRSP03"/>
|
|
2914
|
+
<xtce:ParameterRefEntry parameterRef="IDX__TXHDRLSTRIGCMBLOCKS"/>
|
|
2915
|
+
<xtce:ParameterRefEntry parameterRef="IDX__TXHDRLSTRIGPOL"/>
|
|
2916
|
+
<xtce:ParameterRefEntry parameterRef="IDX__TXHDRLSTRIGLVL"/>
|
|
2917
|
+
<xtce:ParameterRefEntry parameterRef="IDX__TXHDRLSTRIGNMIN"/>
|
|
2918
|
+
<xtce:ParameterRefEntry parameterRef="IDX__TXHDRPOLSTAT"/>
|
|
2919
|
+
<xtce:ParameterRefEntry parameterRef="IDX__TXHDRSTIMPULSE"/>
|
|
2920
|
+
<xtce:ParameterRefEntry parameterRef="IDX__TXHDRSP04"/>
|
|
2921
|
+
<xtce:ParameterRefEntry parameterRef="IDX__TXHDRPOLCTRL"/>
|
|
2922
|
+
<xtce:ParameterRefEntry parameterRef="IDX__TXHDRCOINENA"/>
|
|
2923
|
+
<xtce:ParameterRefEntry parameterRef="IDX__TXHDRLSTRIGMODE"/>
|
|
2924
|
+
<xtce:ParameterRefEntry parameterRef="IDX__TXHDRMGTRIGMODE"/>
|
|
2925
|
+
<xtce:ParameterRefEntry parameterRef="IDX__TXHDRLGTRIGMODE"/>
|
|
2926
|
+
<xtce:ParameterRefEntry parameterRef="IDX__TXHDRHGTRIGMODE"/>
|
|
2927
|
+
<xtce:ParameterRefEntry parameterRef="IDX__TXHDRSP05"/>
|
|
2928
|
+
<xtce:ParameterRefEntry parameterRef="IDX__TXHDRSP06"/>
|
|
2929
|
+
<xtce:ParameterRefEntry parameterRef="IDX__TXHDRSP07"/>
|
|
2930
|
+
<xtce:ParameterRefEntry parameterRef="IDX__TXHDRSP08"/>
|
|
2931
|
+
<xtce:ParameterRefEntry parameterRef="IDX__TXHDRTOFMAX"/>
|
|
2932
|
+
<xtce:ParameterRefEntry parameterRef="IDX__TXHDRTOFMIN"/>
|
|
2933
|
+
<xtce:ParameterRefEntry parameterRef="IDX__TXHDRLS0MAXMIN"/>
|
|
2934
|
+
<xtce:ParameterRefEntry parameterRef="IDX__TXHDRLS1MAXMIN"/>
|
|
2935
|
+
<xtce:ParameterRefEntry parameterRef="IDX__TXHDRLS2MAXMIN"/>
|
|
2936
|
+
<xtce:ParameterRefEntry parameterRef="IDX__TXHDRFIFODELAY"/>
|
|
2937
|
+
<xtce:ParameterRefEntry parameterRef="IDX__TXHDRSP19"/>
|
|
2938
|
+
<xtce:ParameterRefEntry parameterRef="IDX__TXHDRADC0IDELAY"/>
|
|
2939
|
+
<xtce:ParameterRefEntry parameterRef="IDX__TXHDRADC0QDELAY"/>
|
|
2940
|
+
<xtce:ParameterRefEntry parameterRef="IDX__TXHDRADC1QDELAY"/>
|
|
2941
|
+
<xtce:ParameterRefEntry parameterRef="IDX__TXHDRTRANSCNT"/>
|
|
2942
|
+
<xtce:ParameterRefEntry parameterRef="IDX__TXHDRPROCHKCH01"/>
|
|
2943
|
+
<xtce:ParameterRefEntry parameterRef="IDX__TXHDRPROCHKCH23"/>
|
|
2944
|
+
<xtce:ParameterRefEntry parameterRef="IDX__TXHDRPROCHKCH45"/>
|
|
2945
|
+
<xtce:ParameterRefEntry parameterRef="IDX__TXHDRPROCHKCH67"/>
|
|
2946
|
+
<xtce:ParameterRefEntry parameterRef="IDX__TXHDRSP11"/>
|
|
2947
|
+
<xtce:ParameterRefEntry parameterRef="IDX__TXHDRHVPSHKCH0"/>
|
|
2948
|
+
<xtce:ParameterRefEntry parameterRef="IDX__TXHDRSP12"/>
|
|
2949
|
+
<xtce:ParameterRefEntry parameterRef="IDX__TXHDRHVPSHKCH1"/>
|
|
2950
|
+
<xtce:ParameterRefEntry parameterRef="IDX__TXHDRSP13"/>
|
|
2951
|
+
<xtce:ParameterRefEntry parameterRef="IDX__TXHDRHVPSHKCH2"/>
|
|
2952
|
+
<xtce:ParameterRefEntry parameterRef="IDX__TXHDRSP14"/>
|
|
2953
|
+
<xtce:ParameterRefEntry parameterRef="IDX__TXHDRHVPSHKCH3"/>
|
|
2954
|
+
<xtce:ParameterRefEntry parameterRef="IDX__TXHDRSP15"/>
|
|
2955
|
+
<xtce:ParameterRefEntry parameterRef="IDX__TXHDRHVPSHKCH4"/>
|
|
2956
|
+
<xtce:ParameterRefEntry parameterRef="IDX__TXHDRSP16"/>
|
|
2957
|
+
<xtce:ParameterRefEntry parameterRef="IDX__TXHDRHVPSHKCH5"/>
|
|
2958
|
+
<xtce:ParameterRefEntry parameterRef="IDX__TXHDRSP17"/>
|
|
2959
|
+
<xtce:ParameterRefEntry parameterRef="IDX__TXHDRHVPSHKCH6"/>
|
|
2960
|
+
<xtce:ParameterRefEntry parameterRef="IDX__TXHDRSP18"/>
|
|
2961
|
+
<xtce:ParameterRefEntry parameterRef="IDX__TXHDRHVPSHKCH7"/>
|
|
2962
|
+
<xtce:ParameterRefEntry parameterRef="IDX__TXHDRLVHK0CH01"/>
|
|
2963
|
+
<xtce:ParameterRefEntry parameterRef="IDX__TXHDRLVHK0CH23"/>
|
|
2964
|
+
<xtce:ParameterRefEntry parameterRef="IDX__TXHDRLVHK0CH45"/>
|
|
2965
|
+
<xtce:ParameterRefEntry parameterRef="IDX__TXHDRLVHK0CH67"/>
|
|
2966
|
+
<xtce:ParameterRefEntry parameterRef="IDX__TXHDRLVHK1CH01"/>
|
|
2967
|
+
<xtce:ParameterRefEntry parameterRef="IDX__TXHDRLVHK1CH23"/>
|
|
2968
|
+
<xtce:ParameterRefEntry parameterRef="IDX__TXHDRLVHK1CH45"/>
|
|
2969
|
+
<xtce:ParameterRefEntry parameterRef="IDX__TXHDRLVHK1CH67"/>
|
|
2970
|
+
<xtce:ParameterRefEntry parameterRef="IDX__TXHDRLVHK2CH01"/>
|
|
2971
|
+
<xtce:ParameterRefEntry parameterRef="IDX__TXHDRLVHK2CH23"/>
|
|
2972
|
+
<xtce:ParameterRefEntry parameterRef="IDX__TXHDRLVHK2CH45"/>
|
|
2973
|
+
<xtce:ParameterRefEntry parameterRef="IDX__TXHDRLVHK2CH67"/>
|
|
2974
|
+
<xtce:ParameterRefEntry parameterRef="IDX__TXHDRSP09"/>
|
|
2975
|
+
<xtce:ParameterRefEntry parameterRef="IDX__TXHDRSP10"/>
|
|
2976
|
+
<xtce:ParameterRefEntry parameterRef="IDX__TXHDRFSWAIDCOPY"/>
|
|
2977
|
+
<xtce:ParameterRefEntry parameterRef="IDX__TXHDRFSWBINCOPY"/>
|
|
2978
|
+
<xtce:ParameterRefEntry parameterRef="IDX__TXHDRFSWMAJOR"/>
|
|
2979
|
+
<xtce:ParameterRefEntry parameterRef="IDX__TXHDRFSWMINOR"/>
|
|
2980
|
+
<xtce:ParameterRefEntry parameterRef="IDX__TXHDRFSWPATCH"/>
|
|
2981
|
+
<xtce:ParameterRefEntry parameterRef="IDX__TXHDRFSWHVSTAT"/>
|
|
2982
|
+
<xtce:ParameterRefEntry parameterRef="IDX__TXHDRFSWMEM0"/>
|
|
2983
|
+
<xtce:ParameterRefEntry parameterRef="IDX__TXHDRFSWMEM1"/>
|
|
2984
|
+
<xtce:ParameterRefEntry parameterRef="IDX__TXHDRFSWPT0"/>
|
|
2985
|
+
<xtce:ParameterRefEntry parameterRef="IDX__TXHDRFSWPT1"/>
|
|
2986
|
+
<xtce:ParameterRefEntry parameterRef="IDX__TXHDRFSWPT2"/>
|
|
2987
|
+
<xtce:ParameterRefEntry parameterRef="IDX__TXHDRFSWPT3"/>
|
|
2988
|
+
<xtce:ParameterRefEntry parameterRef="IDX__TXHDRFSWPT4"/>
|
|
2989
|
+
<xtce:ParameterRefEntry parameterRef="IDX__TXHDRFSWPT5"/>
|
|
2990
|
+
<xtce:ParameterRefEntry parameterRef="IDX__TXHDRFSWPT6"/>
|
|
2991
|
+
<xtce:ParameterRefEntry parameterRef="IDX__TXHDRFSWPT7"/>
|
|
2992
|
+
<xtce:ParameterRefEntry parameterRef="IDX__TXHDRFSWPT8"/>
|
|
2993
|
+
<xtce:ParameterRefEntry parameterRef="IDX__TXHDRFSWPT9"/>
|
|
2994
|
+
<xtce:ParameterRefEntry parameterRef="IDX__TXHDRFPGAVER"/>
|
|
2995
|
+
<xtce:ParameterRefEntry parameterRef="IDX__SYNCSCI0PKT"/>
|
|
2996
|
+
<xtce:ParameterRefEntry parameterRef="IDX__CRCSCI0PKT"/>
|
|
2997
|
+
</xtce:EntryList>
|
|
2998
|
+
<xtce:BaseContainer containerRef="IDX_SCI0">
|
|
2999
|
+
<xtce:RestrictionCriteria>
|
|
3000
|
+
<xtce:ComparisonList>
|
|
3001
|
+
<xtce:Comparison parameterRef="IDX__SCI0TYPE" value="1" comparisonOperator="==" useCalibratedValue="false"/>
|
|
3002
|
+
</xtce:ComparisonList>
|
|
3003
|
+
</xtce:RestrictionCriteria>
|
|
3004
|
+
</xtce:BaseContainer>
|
|
3005
|
+
</xtce:SequenceContainer>
|
|
3006
|
+
<xtce:SequenceContainer name="Sci0TypeNonZero">
|
|
3007
|
+
<xtce:EntryList>
|
|
3008
|
+
<xtce:ParameterRefEntry parameterRef="IDX__SCI0RAW"/>
|
|
3009
|
+
<xtce:ParameterRefEntry parameterRef="IDX__SYNCSCI0PKT"/>
|
|
3010
|
+
<xtce:ParameterRefEntry parameterRef="IDX__CRCSCI0PKT"/>
|
|
3011
|
+
</xtce:EntryList>
|
|
3012
|
+
<xtce:BaseContainer containerRef="IDX_SCI0">
|
|
3013
|
+
<xtce:RestrictionCriteria>
|
|
3014
|
+
<xtce:ComparisonList>
|
|
3015
|
+
<xtce:Comparison parameterRef="IDX__SCI0TYPE" value="1" comparisonOperator=">" useCalibratedValue="false"/>
|
|
3016
|
+
</xtce:ComparisonList>
|
|
3017
|
+
</xtce:RestrictionCriteria>
|
|
3018
|
+
</xtce:BaseContainer>
|
|
3019
|
+
</xtce:SequenceContainer>
|
|
3020
|
+
<xtce:SequenceContainer name="IDX_SCIFETCH" shortDescription="Science pkts resulting from Fetch cmd">
|
|
3021
|
+
<xtce:LongDescription></xtce:LongDescription>
|
|
3022
|
+
<xtce:AliasSet>
|
|
3023
|
+
<xtce:Alias alias="IDX_SCIFETCH" nameSpace="streamName"/>
|
|
3024
|
+
<xtce:Alias alias="IDX" nameSpace="packetElement"/>
|
|
3025
|
+
</xtce:AliasSet>
|
|
3026
|
+
<xtce:EntryList>
|
|
3027
|
+
<xtce:ContainerRefEntry containerRef="SecondaryHeaderContainer"/>
|
|
3028
|
+
<xtce:ParameterRefEntry parameterRef="IDX__SCIFETCHAID"/>
|
|
3029
|
+
<xtce:ParameterRefEntry parameterRef="IDX__SCIFETCHTYPE"/>
|
|
3030
|
+
<xtce:ParameterRefEntry parameterRef="IDX__SCIFETCHCONT"/>
|
|
3031
|
+
<xtce:ParameterRefEntry parameterRef="IDX__SCIFETCHSPARE1"/>
|
|
3032
|
+
<xtce:ParameterRefEntry parameterRef="IDX__SCIFETCHPACK"/>
|
|
3033
|
+
<xtce:ParameterRefEntry parameterRef="IDX__SCIFETCHFRAG"/>
|
|
3034
|
+
<xtce:ParameterRefEntry parameterRef="IDX__SCIFETCHCOMP"/>
|
|
3035
|
+
<xtce:ParameterRefEntry parameterRef="IDX__SCIFETCHEVTNUM"/>
|
|
3036
|
+
<xtce:ParameterRefEntry parameterRef="IDX__SCIFETCHCAT"/>
|
|
3037
|
+
<xtce:ParameterRefEntry parameterRef="IDX__SCIFETCHQUAL"/>
|
|
3038
|
+
<xtce:ParameterRefEntry parameterRef="IDX__SCIFETCHFRAGOFF"/>
|
|
3039
|
+
<xtce:ParameterRefEntry parameterRef="IDX__SCIFETCHVER"/>
|
|
3040
|
+
<xtce:ParameterRefEntry parameterRef="IDX__SCIFETCHTIME32"/>
|
|
3041
|
+
<xtce:ParameterRefEntry parameterRef="IDX__SCIFETCHSPARE2"/>
|
|
3042
|
+
<xtce:ParameterRefEntry parameterRef="IDX__SCIFETCHSPARE3"/>
|
|
3043
|
+
<xtce:ParameterRefEntry parameterRef="IDX__SCIFETCHSPARE4"/>
|
|
3044
|
+
</xtce:EntryList>
|
|
3045
|
+
<xtce:BaseContainer containerRef="CCSDSTelemetryPacket">
|
|
3046
|
+
<xtce:RestrictionCriteria>
|
|
3047
|
+
<xtce:ComparisonList>
|
|
3048
|
+
<xtce:Comparison value="1425" parameterRef="PKT_APID" useCalibratedValue="false"/>
|
|
3049
|
+
</xtce:ComparisonList>
|
|
3050
|
+
</xtce:RestrictionCriteria>
|
|
3051
|
+
</xtce:BaseContainer>
|
|
3052
|
+
</xtce:SequenceContainer>
|
|
3053
|
+
<xtce:SequenceContainer name="SciFetchTypeZero">
|
|
3054
|
+
<xtce:EntryList>
|
|
3055
|
+
<xtce:ParameterRefEntry parameterRef="IDX__FETHDRSCIEVTLEN"/>
|
|
3056
|
+
<xtce:ParameterRefEntry parameterRef="IDX__FETHDRSP00"/>
|
|
3057
|
+
<xtce:ParameterRefEntry parameterRef="IDX__FETHDRTIMESEC1"/>
|
|
3058
|
+
<xtce:ParameterRefEntry parameterRef="IDX__FETHDRTIMESEC2"/>
|
|
3059
|
+
<xtce:ParameterRefEntry parameterRef="IDX__FETHDRTIMESUBS"/>
|
|
3060
|
+
<xtce:ParameterRefEntry parameterRef="IDX__FETHDRSP01"/>
|
|
3061
|
+
<xtce:ParameterRefEntry parameterRef="IDX__FETHDRTRIGOFFSET"/>
|
|
3062
|
+
<xtce:ParameterRefEntry parameterRef="IDX__FETHDRSP02"/>
|
|
3063
|
+
<xtce:ParameterRefEntry parameterRef="IDX__FETHDRTRIGID"/>
|
|
3064
|
+
<xtce:ParameterRefEntry parameterRef="IDX__FETHDREVTNUM"/>
|
|
3065
|
+
<xtce:ParameterRefEntry parameterRef="IDX__FETHDRBLOCKS"/>
|
|
3066
|
+
<xtce:ParameterRefEntry parameterRef="IDX__FETHDRHGTRIGCTRL1"/>
|
|
3067
|
+
<xtce:ParameterRefEntry parameterRef="IDX__FETHDRHGTRIGCTRL2"/>
|
|
3068
|
+
<xtce:ParameterRefEntry parameterRef="IDX__FETHDRLGTRIGCTRL1"/>
|
|
3069
|
+
<xtce:ParameterRefEntry parameterRef="IDX__FETHDRLGTRIGCTRL2"/>
|
|
3070
|
+
<xtce:ParameterRefEntry parameterRef="IDX__FETHDRMGTRIGCTRL1"/>
|
|
3071
|
+
<xtce:ParameterRefEntry parameterRef="IDX__FETHDRMGTRIGCTRL2"/>
|
|
3072
|
+
<xtce:ParameterRefEntry parameterRef="IDX__FETHDRSP03"/>
|
|
3073
|
+
<xtce:ParameterRefEntry parameterRef="IDX__FETHDRLSADC"/>
|
|
3074
|
+
<xtce:ParameterRefEntry parameterRef="IDX__FETHDRPOLSTAT"/>
|
|
3075
|
+
<xtce:ParameterRefEntry parameterRef="IDX__FETHDRSP04"/>
|
|
3076
|
+
<xtce:ParameterRefEntry parameterRef="IDX__FETHDRPOLCTRL"/>
|
|
3077
|
+
<xtce:ParameterRefEntry parameterRef="IDX__FETHDRCOINENA"/>
|
|
3078
|
+
<xtce:ParameterRefEntry parameterRef="IDX__FETHDRLSTRIGMODE"/>
|
|
3079
|
+
<xtce:ParameterRefEntry parameterRef="IDX__FETHDRMGTRIGMODE"/>
|
|
3080
|
+
<xtce:ParameterRefEntry parameterRef="IDX__FETHDRLGTRIGMODE"/>
|
|
3081
|
+
<xtce:ParameterRefEntry parameterRef="IDX__FETHDRHGTRIGMODE"/>
|
|
3082
|
+
<xtce:ParameterRefEntry parameterRef="IDX__FETHDRSP05"/>
|
|
3083
|
+
<xtce:ParameterRefEntry parameterRef="IDX__FETHDRSP06"/>
|
|
3084
|
+
<xtce:ParameterRefEntry parameterRef="IDX__FETHDRSP07"/>
|
|
3085
|
+
<xtce:ParameterRefEntry parameterRef="IDX__FETHDRSP08"/>
|
|
3086
|
+
<xtce:ParameterRefEntry parameterRef="IDX__FETHDRTOFMAX"/>
|
|
3087
|
+
<xtce:ParameterRefEntry parameterRef="IDX__FETHDRTOFMIN"/>
|
|
3088
|
+
<xtce:ParameterRefEntry parameterRef="IDX__FETHDRLS0MAXMIN"/>
|
|
3089
|
+
<xtce:ParameterRefEntry parameterRef="IDX__FETHDRLS1MAXMIN"/>
|
|
3090
|
+
<xtce:ParameterRefEntry parameterRef="IDX__FETHDRLS2MAXMIN"/>
|
|
3091
|
+
<xtce:ParameterRefEntry parameterRef="IDX__FETHDRFIFODELAY"/>
|
|
3092
|
+
<xtce:ParameterRefEntry parameterRef="IDX__FETHDRSAMPDELAY"/>
|
|
3093
|
+
<xtce:ParameterRefEntry parameterRef="IDX__FETHDRTRANSCNT"/>
|
|
3094
|
+
<xtce:ParameterRefEntry parameterRef="IDX__FETHDRPROCHKCH01"/>
|
|
3095
|
+
<xtce:ParameterRefEntry parameterRef="IDX__FETHDRPROCHKCH23"/>
|
|
3096
|
+
<xtce:ParameterRefEntry parameterRef="IDX__FETHDRPROCHKCH45"/>
|
|
3097
|
+
<xtce:ParameterRefEntry parameterRef="IDX__FETHDRPROCHKCH67"/>
|
|
3098
|
+
<xtce:ParameterRefEntry parameterRef="IDX__FETHDRHVPSHKCH01"/>
|
|
3099
|
+
<xtce:ParameterRefEntry parameterRef="IDX__FETHDRHVPSHKCH23"/>
|
|
3100
|
+
<xtce:ParameterRefEntry parameterRef="IDX__FETHDRHVPSHKCH45"/>
|
|
3101
|
+
<xtce:ParameterRefEntry parameterRef="IDX__FETHDRHVPSHKCH67"/>
|
|
3102
|
+
<xtce:ParameterRefEntry parameterRef="IDX__FETHDRLVHK0CH01"/>
|
|
3103
|
+
<xtce:ParameterRefEntry parameterRef="IDX__FETHDRLVHK0CH23"/>
|
|
3104
|
+
<xtce:ParameterRefEntry parameterRef="IDX__FETHDRLVHK0CH45"/>
|
|
3105
|
+
<xtce:ParameterRefEntry parameterRef="IDX__FETHDRLVHK0CH67"/>
|
|
3106
|
+
<xtce:ParameterRefEntry parameterRef="IDX__FETHDRLVHK1CH01"/>
|
|
3107
|
+
<xtce:ParameterRefEntry parameterRef="IDX__FETHDRLVHK1CH23"/>
|
|
3108
|
+
<xtce:ParameterRefEntry parameterRef="IDX__FETHDRLVHK1CH45"/>
|
|
3109
|
+
<xtce:ParameterRefEntry parameterRef="IDX__FETHDRLVHK1CH67"/>
|
|
3110
|
+
<xtce:ParameterRefEntry parameterRef="IDX__FETHDRLVHK2CH01"/>
|
|
3111
|
+
<xtce:ParameterRefEntry parameterRef="IDX__FETHDRLVHK2CH23"/>
|
|
3112
|
+
<xtce:ParameterRefEntry parameterRef="IDX__FETHDRLVHK2CH45"/>
|
|
3113
|
+
<xtce:ParameterRefEntry parameterRef="IDX__FETHDRLVHK2CH67"/>
|
|
3114
|
+
<xtce:ParameterRefEntry parameterRef="IDX__FETHDRSP09"/>
|
|
3115
|
+
<xtce:ParameterRefEntry parameterRef="IDX__FETHDRSP10"/>
|
|
3116
|
+
<xtce:ParameterRefEntry parameterRef="IDX__FETHDRFSWAIDCOPY"/>
|
|
3117
|
+
<xtce:ParameterRefEntry parameterRef="IDX__FETHDRFSWBINCOPY"/>
|
|
3118
|
+
<xtce:ParameterRefEntry parameterRef="IDX__FETHDRFSWMAJOR"/>
|
|
3119
|
+
<xtce:ParameterRefEntry parameterRef="IDX__FETHDRFSWMINOR"/>
|
|
3120
|
+
<xtce:ParameterRefEntry parameterRef="IDX__FETHDRFSWPATCH"/>
|
|
3121
|
+
<xtce:ParameterRefEntry parameterRef="IDX__FETHDRFSWHVSTAT"/>
|
|
3122
|
+
<xtce:ParameterRefEntry parameterRef="IDX__FETHDRFSWMEM0"/>
|
|
3123
|
+
<xtce:ParameterRefEntry parameterRef="IDX__FETHDRFSWMEM1"/>
|
|
3124
|
+
<xtce:ParameterRefEntry parameterRef="IDX__FETHDRFSWPT0"/>
|
|
3125
|
+
<xtce:ParameterRefEntry parameterRef="IDX__FETHDRFSWPT1"/>
|
|
3126
|
+
<xtce:ParameterRefEntry parameterRef="IDX__FETHDRFSWPT2"/>
|
|
3127
|
+
<xtce:ParameterRefEntry parameterRef="IDX__FETHDRFSWPT3"/>
|
|
3128
|
+
<xtce:ParameterRefEntry parameterRef="IDX__FETHDRFSWPT4"/>
|
|
3129
|
+
<xtce:ParameterRefEntry parameterRef="IDX__FETHDRFSWPT5"/>
|
|
3130
|
+
<xtce:ParameterRefEntry parameterRef="IDX__FETHDRFSWPT6"/>
|
|
3131
|
+
<xtce:ParameterRefEntry parameterRef="IDX__FETHDRFSWPT7"/>
|
|
3132
|
+
<xtce:ParameterRefEntry parameterRef="IDX__FETHDRFSWPT8"/>
|
|
3133
|
+
<xtce:ParameterRefEntry parameterRef="IDX__FETHDRFSWPT9"/>
|
|
3134
|
+
<xtce:ParameterRefEntry parameterRef="IDX__FETHDRFPGAVER"/>
|
|
3135
|
+
<xtce:ParameterRefEntry parameterRef="IDX__SYNCSCIFETCHPKT"/>
|
|
3136
|
+
<xtce:ParameterRefEntry parameterRef="IDX__CRCSCIFETCHPKT"/>
|
|
3137
|
+
</xtce:EntryList>
|
|
3138
|
+
<xtce:BaseContainer containerRef="IDX_SCIFETCH">
|
|
3139
|
+
<xtce:RestrictionCriteria>
|
|
3140
|
+
<xtce:ComparisonList>
|
|
3141
|
+
<xtce:Comparison parameterRef="IDX__SCIFETCHTYPE" value="1" comparisonOperator="==" useCalibratedValue="false"/>
|
|
3142
|
+
</xtce:ComparisonList>
|
|
3143
|
+
</xtce:RestrictionCriteria>
|
|
3144
|
+
</xtce:BaseContainer>
|
|
3145
|
+
</xtce:SequenceContainer>
|
|
3146
|
+
<xtce:SequenceContainer name="SciFetchTypeNonZero">
|
|
3147
|
+
<xtce:EntryList>
|
|
3148
|
+
<xtce:ParameterRefEntry parameterRef="IDX__SCIFETCHRAW"/>
|
|
3149
|
+
<xtce:ParameterRefEntry parameterRef="IDX__SYNCSCIFETCHPKT"/>
|
|
3150
|
+
<xtce:ParameterRefEntry parameterRef="IDX__CRCSCIFETCHPKT"/>
|
|
3151
|
+
</xtce:EntryList>
|
|
3152
|
+
<xtce:BaseContainer containerRef="IDX_SCIFETCH">
|
|
3153
|
+
<xtce:RestrictionCriteria>
|
|
3154
|
+
<xtce:ComparisonList>
|
|
3155
|
+
<xtce:Comparison parameterRef="IDX__SCIFETCHTYPE" value="1" comparisonOperator=">" useCalibratedValue="false"/>
|
|
3156
|
+
</xtce:ComparisonList>
|
|
3157
|
+
</xtce:RestrictionCriteria>
|
|
3158
|
+
</xtce:BaseContainer>
|
|
3159
|
+
</xtce:SequenceContainer>
|
|
3160
|
+
</xtce:ContainerSet>
|
|
3161
|
+
</xtce:TelemetryMetaData>
|
|
3162
|
+
</xtce:SpaceSystem>
|