pybes3.digi_id
Warning
The pybes3.digi_id module is deprecated and will be removed in a future release. Use the pybes3.identifier module instead.
Parsing methods
These methods parse the given ID and return the corresponding components. They are useful for retrieving the components of an ID when you only have the ID itself.
parse_mdc_digi(mdc_digi, with_pos=False)
Parse MDC raw digi array. The raw digi array should contain [m_intId,
m_timeChannel, m_chargeChannel, m_trackIndex, m_overflow] fields.
Fields of the output:
gid: Global ID of the wire.wire: Local wire number.layer: Layer number.stereo: Stereo type. 0 for axial, -1 forphi_west < phi_east, 1 forphi_west > phi_east.is_stereo: Whether the wire is a stereo wire.superlayer: Superlayer number.charge_channel: Charge channel.time_channel: Time channel.track_index: Track index.overflow: Overflow flag.digi_id: Raw digi ID.
Optional fields of the output when with_pos is True:
mid_x: x position of the wire atz=0.mid_y: y position of the wire atz=0.west_x: x position of the west end of the wire.west_y: y position of the west end of the wire.west_z: z position of the west end of the wire.east_x: x position of the east end of the wire.east_y: y position of the east end of the wire.east_z: z position of the east end of the wire.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
mdc_digi
|
Record
|
The MDC raw digi array. |
required |
with_pos
|
bool
|
Whether to include the position information. |
False
|
Returns:
| Type | Description |
|---|---|
Record
|
The parsed MDC digi array. |
Source code in src/pybes3/digi_id.py
215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 | |
parse_emc_digi(emc_digi, with_pos=False)
Parse EMC raw digi array. The raw digi array should contain [m_intId,
m_timeChannel, m_chargeChannel, m_trackIndex, m_measure] fields.
Fields of the output:
gid: Global ID of the crystal.part: Part number, 0 for endcap0, 1 for barrel, 2 for endcap1.theta: Theta number.phi: Phi number.charge_channel: Charge channel.time_channel: Time channel.track_index: Track index.measure: Measure value.digi_id: Raw digi ID.
Optional fields of the output when with_pos is True:
front_center_x: x position of the front center of the crystal.front_center_y: y position of the front center of the crystal.front_center_z: z position of the front center of the crystal.center_x: x position of the center of the crystal.center_y: y position of the center of the crystal.center_z: z position of the center of the crystal.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
emc_digi
|
Record
|
The EMC raw digi array. |
required |
with_pos
|
bool
|
Whether to include the position information. |
False
|
Returns:
| Type | Description |
|---|---|
Record
|
The parsed EMC digi array. |
Source code in src/pybes3/digi_id.py
678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 | |
parse_mdc_digi_id(mdc_digi_id, with_pos=False)
Parse MDC digi ID.
When mdc_digi_id is an ak.Array, the result is an ak.Array, otherwise it is a dict.
Keys of the output:
gid: Global ID of the wire.wire: Local wire number.layer: Layer number.stereo: Stereo type. 0 for axial, -1 forphi_west < phi_east, 1 forphi_west > phi_east.is_stereo: Whether the wire is a stereo wire.superlayer: Superlayer number.
Optional keys of the output when with_pos is True:
mid_x: x position of the wire atz=0.mid_y: y position of the wire atz=0.west_x: x position of the west end of the wire.west_y: y position of the west end of the wire.west_z: z position of the west end of the wire.east_x: x position of the east end of the wire.east_y: y position of the east end of the wire.east_z: z position of the east end of the wire.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
mdc_digi_id
|
IntLike
|
The MDC digi ID. |
required |
with_pos
|
bool
|
Whether to include the position information. |
False
|
Returns:
| Type | Description |
|---|---|
Array | dict[str, Any]
|
The parsed result. |
Source code in src/pybes3/digi_id.py
173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 | |
parse_emc_digi_id(emc_digi_id, with_pos=False)
Parse EMC digi ID.
When emc_digi_id is an ak.Array, the result is an ak.Array, otherwise it is a dict.
Keys of the output:
gid: Global ID of the crystal.part: Part number, 0 for endcap0, 1 for barrel, 2 for endcap1.theta: Theta number.phi: Phi number.
Optional keys of the output when with_pos is True:
front_center_x: x position of the front center of the crystal.front_center_y: y position of the front center of the crystal.front_center_z: z position of the front center of the crystal.center_x: x position of the center of the crystal.center_y: y position of the center of the crystal.center_z: z position of the center of the crystal.
Info
The 8 points of the crystal will not be returned here.
If you need the 8 points of the crystal, use emc_gid_to_point_x, emc_gid_to_point_y
and emc_gid_to_point_z.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
emc_digi_id
|
IntLike
|
The EMC digi ID. |
required |
with_pos
|
bool
|
Whether to include the position information. |
False
|
Returns:
| Type | Description |
|---|---|
Array | dict[str, Any]
|
The parsed EMC digi ID. |
Source code in src/pybes3/digi_id.py
633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 | |
parse_tof_digi_id(tof_digi_id, flat=False, library='ak')
Parse TOF digi ID.
If library is ak, return ak.Array. If library is np, return dict[str, np.ndarray].
Available keys of the output:
part: The part number.0,1,2for scintillator endcap0, barrel, endcap1;3,4for MRPC endcap0, endcap1.layer_or_module: The scintillator layer or MRPC module number, based on the part number.phi_or_strip: The scintillator phi or MRPC strip ID, based on the part number.end: The readout end ID.
The return value is based on the part number.
Rows where part < 3 are scintillator and layer_or_module represents layer number, phi_or_strip represents phi number.
Rows where part >= 3 are MRPC and layer_or_module represents module number, phi_or_strip represents strip ID.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
tof_digi_id
|
IntLike
|
The TOF ID. |
required |
flat
|
bool
|
Whether to flatten the output. |
False
|
library
|
Literal['ak', 'np']
|
The library to use as output. |
'ak'
|
Returns:
| Type | Description |
|---|---|
Array | dict[str, ndarray] | dict[str, int_]
|
The parsed TOF ID. |
Source code in src/pybes3/digi_id.py
498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 | |
parse_muc_digi_id(muc_digi_id, flat=False, library='ak')
Parse MUC digi ID.
If library is ak, return ak.Array. If library is np, return dict[str, np.ndarray].
Available keys of the output:
part: The part number.segment: The segment number.layer: The layer number.channel: The channel number.gap: The gap number, which is equivalent to layer number.strip: The strip number, which is equivalent to channel number.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
muc_digi_id
|
IntLike
|
The MUC digi ID. |
required |
flat
|
bool
|
Whether to flatten the output. |
False
|
library
|
Literal['ak', 'np']
|
The library to use as output. |
'ak'
|
Returns:
| Type | Description |
|---|---|
Array | dict[str, ndarray] | dict[str, int_]
|
The parsed MUC digi ID. |
Source code in src/pybes3/digi_id.py
863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 | |
parse_cgem_digi_id(cgem_digi_id, flat=False, library='ak')
Parse CGEM digi ID.
If library is ak, return ak.Array. If library is np, return dict[str, np.ndarray].
Available keys of the output:
layer: The layer number.sheet: The sheet ID.strip_type: The strip type. 0 for X-strip, 1 for V-strip.strip: The strip ID.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
cgem_digi_id
|
IntLike
|
The CGEM digi ID. |
required |
flat
|
bool
|
Whether to flatten the output. |
False
|
library
|
Literal['ak', 'np']
|
The library to use as output. |
'ak'
|
Returns:
| Type | Description |
|---|---|
Array | dict[str, ndarray] | dict[str, int_]
|
The parsed CGEM digi ID. |
Source code in src/pybes3/digi_id.py
1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 | |
MDC
check_mdc_id(mdc_digi_id)
Check if the MDC digi ID is valid.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
mdc_digi_id
|
IntLike
|
The MDC digi ID array or value. |
required |
Returns:
| Type | Description |
|---|---|
BoolLike
|
Whether the digi ID is valid. |
Source code in src/pybes3/digi_id.py
90 91 92 93 94 95 96 97 98 99 100 101 | |
mdc_id_to_wire(mdc_digi_id)
Convert MDC digi ID to wire number.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
mdc_digi_id
|
IntLike
|
MDC digi ID array or value. |
required |
Returns:
| Type | Description |
|---|---|
IntLike
|
The wire number. |
Source code in src/pybes3/digi_id.py
104 105 106 107 108 109 110 111 112 113 114 115 | |
mdc_id_to_layer(mdc_digi_id)
Convert the MDC digi ID to the layer number.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
mdc_digi_id
|
IntLike
|
The MDC digi ID array or value. |
required |
Returns:
| Type | Description |
|---|---|
IntLike
|
The layer number. |
Source code in src/pybes3/digi_id.py
118 119 120 121 122 123 124 125 126 127 128 129 | |
mdc_id_to_is_stereo(mdc_digi_id)
Convert the MDC digi ID to whether it is a stereo wire.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
mdc_digi_id
|
IntLike
|
The MDC digi ID array or value. |
required |
Returns:
| Type | Description |
|---|---|
BoolLike
|
Whether the wire is a stereo wire. |
Source code in src/pybes3/digi_id.py
132 133 134 135 136 137 138 139 140 141 142 143 144 145 | |
get_mdc_digi_id(wire, layer, wire_type)
Generate MDC digi ID based on the wire number, layer number, and wire type.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
wire
|
IntLike
|
The wire number. |
required |
layer
|
IntLike
|
The layer number. |
required |
wire_type
|
IntLike
|
The wire type. |
required |
Returns:
| Type | Description |
|---|---|
IntLike
|
The MDC digi ID. |
Source code in src/pybes3/digi_id.py
148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 | |
TOF
check_tof_id(tof_digi_id)
Check if the TOF digi ID is valid.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
tof_digi_id
|
IntLike
|
The TOF digi ID array or value. |
required |
Returns:
| Type | Description |
|---|---|
BoolLike
|
Whether the digi ID is valid. |
Source code in src/pybes3/digi_id.py
284 285 286 287 288 289 290 291 292 293 294 295 | |
tof_id_to_part(tof_digi_id)
Convert TOF digi ID to part number. 0, 1, 2 for scintillator endcap0/barrel/endcap1, 3, 4 for MRPC endcap0/endcap1.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
tof_digi_id
|
IntLike
|
TOF digi ID array or value. |
required |
Returns:
| Type | Description |
|---|---|
IntLike
|
The part number. |
Source code in src/pybes3/digi_id.py
298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 | |
tof_id_to_end(tof_digi_id)
Convert the TOF digi ID to the readout end number.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
tof_digi_id
|
IntLike
|
The TOF digi ID array or value. |
required |
Returns:
| Type | Description |
|---|---|
IntLike
|
The readout end number. |
Source code in src/pybes3/digi_id.py
316 317 318 319 320 321 322 323 324 325 326 327 | |
tof_id_to_layer_or_module(tof_digi_id, part=None)
Convert the TOF digi ID to the scintillator layer or MRPC module number.
If part < 3, it is scintillator and the return value is layer number. Otherwise, it is
MRPC and the return value is module number.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
tof_digi_id
|
IntLike
|
The TOF digi ID array or value. |
required |
part
|
IntLike | None
|
The part number. If not provided, it will be calculated based on the TOF digi ID. |
None
|
Returns:
| Type | Description |
|---|---|
IntLike
|
The scintillator layer or MRPC module number. |
Source code in src/pybes3/digi_id.py
373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 | |
tof_id_to_phi_or_strip(tof_digi_id, part=None)
Convert the TOF digi ID to the scintillator phi or MRPC strip number, based on the part number.
If part < 3, it is scintillator and the return value is phi number. Otherwise, it is
MRPC and the return value is strip number.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
tof_digi_id
|
IntLike
|
The TOF digi ID array or value. |
required |
part
|
IntLike | None
|
The part number. If not provided, it will be calculated based on the TOF digi ID. |
None
|
Returns:
| Type | Description |
|---|---|
IntLike
|
The scintillator phi or MRPC strip number. |
Source code in src/pybes3/digi_id.py
438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 | |
get_tof_digi_id(part, layer_or_module, phi_or_strip, end)
Generate TOF scintillator ID based on the part number, layer number, phi number, and readout end number.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
part
|
IntLike
|
The part number. |
required |
layer_or_module
|
IntLike
|
The scintillator layer or MRPC module number. |
required |
phi_or_strip
|
IntLike
|
The scintillator phi or MRPC strip number. |
required |
end
|
IntLike
|
The readout end number. |
required |
Returns:
| Type | Description |
|---|---|
IntLike
|
The TOF digi ID. |
Source code in src/pybes3/digi_id.py
460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 | |
EMC
check_emc_id(emc_digi_id)
Check if the EMC digi ID is valid.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
emc_digi_id
|
IntLike
|
The EMC digi ID array or value. |
required |
Returns:
| Type | Description |
|---|---|
BoolLike
|
Whether the digi ID is valid. |
Source code in src/pybes3/digi_id.py
552 553 554 555 556 557 558 559 560 561 562 563 | |
emc_id_to_module(emc_digi_id)
Convert EMC digi ID to module number
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
emc_digi_id
|
IntLike
|
EMC digi ID array or value. |
required |
Returns:
| Type | Description |
|---|---|
IntLike
|
The module number. |
Source code in src/pybes3/digi_id.py
566 567 568 569 570 571 572 573 574 575 576 577 | |
emc_id_to_theta(emc_digi_id)
Convert the EMC digi ID to the theta number.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
emc_digi_id
|
IntLike
|
The EMC digi ID array or value. |
required |
Returns:
| Type | Description |
|---|---|
IntLike
|
The theta number. |
Source code in src/pybes3/digi_id.py
580 581 582 583 584 585 586 587 588 589 590 591 | |
emc_id_to_phi(emc_digi_id)
Convert the EMC digi ID to the phi number.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
emc_digi_id
|
IntLike
|
The EMC digi ID array or value. |
required |
Returns:
| Type | Description |
|---|---|
IntLike
|
The phi number. |
Source code in src/pybes3/digi_id.py
594 595 596 597 598 599 600 601 602 603 604 605 | |
get_emc_digi_id(module, theta, phi)
Generate EMC digi ID based on the module number, theta number, and phi number.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
module
|
IntLike
|
The module number. |
required |
theta
|
IntLike
|
The theta number. |
required |
phi
|
IntLike
|
The phi number. |
required |
Returns:
| Type | Description |
|---|---|
IntLike
|
The EMC digi ID. |
Source code in src/pybes3/digi_id.py
608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 | |
MUC
check_muc_id(muc_digi_id)
Check if the MUC digi ID is valid.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
muc_digi_id
|
IntLike
|
The MUC digi ID array or value. |
required |
Returns:
| Type | Description |
|---|---|
BoolLike
|
Whether the digi ID is valid. |
Source code in src/pybes3/digi_id.py
739 740 741 742 743 744 745 746 747 748 749 750 | |
muc_id_to_part(muc_digi_id)
Convert MUC digi ID to part number
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
muc_digi_id
|
IntLike
|
MUC digi ID array or value. |
required |
Returns:
| Type | Description |
|---|---|
IntLike
|
The part number. |
Source code in src/pybes3/digi_id.py
753 754 755 756 757 758 759 760 761 762 763 764 | |
muc_id_to_segment(muc_digi_id)
Convert the MUC digi ID to the segment number.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
muc_digi_id
|
IntLike
|
The MUC digi ID array or value. |
required |
Returns:
| Type | Description |
|---|---|
IntLike
|
The segment number. |
Source code in src/pybes3/digi_id.py
767 768 769 770 771 772 773 774 775 776 777 778 | |
muc_id_to_layer(muc_digi_id)
Convert the MUC digi ID to the layer number.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
muc_digi_id
|
IntLike
|
The MUC digi ID array or value. |
required |
Returns:
| Type | Description |
|---|---|
IntLike
|
The layer number. |
Source code in src/pybes3/digi_id.py
781 782 783 784 785 786 787 788 789 790 791 792 | |
muc_id_to_channel(muc_digi_id)
Convert the MUC digi ID to the channel number.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
muc_digi_id
|
IntLike
|
The MUC digi ID array or value. |
required |
Returns:
| Type | Description |
|---|---|
IntLike
|
The channel number. |
Source code in src/pybes3/digi_id.py
795 796 797 798 799 800 801 802 803 804 805 806 | |
get_muc_digi_id(part, segment, layer, channel)
Generate MUC digi ID based on the part number, segment number, layer number, and channel number.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
part
|
IntLike
|
The part number. |
required |
segment
|
IntLike
|
The segment number. |
required |
layer
|
IntLike
|
The layer number. |
required |
channel
|
IntLike
|
The channel number. |
required |
Returns:
| Type | Description |
|---|---|
IntLike
|
The MUC digi ID. |
Source code in src/pybes3/digi_id.py
809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 | |
muc_id_to_gap(muc_digi_id)
Convert the MUC digi ID to the gap ID, which is equivalent to layer number.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
muc_digi_id
|
IntLike
|
The MUC digi ID array or value. |
required |
Returns:
| Type | Description |
|---|---|
IntLike
|
The gap ID. |
Source code in src/pybes3/digi_id.py
837 838 839 840 841 842 843 844 845 846 847 | |
muc_id_to_strip(muc_digi_id)
Convert the MUC digi ID to the strip number, which is equivalent to channel number.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
muc_digi_id
|
IntLike
|
The MUC digi ID array or value. |
required |
Returns:
| Type | Description |
|---|---|
IntLike
|
The strip number. |
Source code in src/pybes3/digi_id.py
850 851 852 853 854 855 856 857 858 859 860 | |
CGEM
check_cgem_id(cgem_digi_id)
Check if the CGEM digi ID is valid.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
cgem_digi_id
|
IntLike
|
The CGEM digi ID array or value. |
required |
Returns:
| Type | Description |
|---|---|
BoolLike
|
Whether the digi ID is valid. |
Source code in src/pybes3/digi_id.py
919 920 921 922 923 924 925 926 927 928 929 930 | |
cgem_id_to_layer(cgem_digi_id)
Convert the CGEM digi ID to the layer number.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
cgem_digi_id
|
IntLike
|
The CGEM digi ID array or value. |
required |
Returns:
| Type | Description |
|---|---|
IntLike
|
The layer number. |
Source code in src/pybes3/digi_id.py
933 934 935 936 937 938 939 940 941 942 943 944 | |
cgem_id_to_sheet(cgem_digi_id)
Convert the CGEM digi ID to the sheet number.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
cgem_digi_id
|
IntLike
|
The CGEM digi ID array or value. |
required |
Returns:
| Type | Description |
|---|---|
IntLike
|
The sheet number. |
Source code in src/pybes3/digi_id.py
947 948 949 950 951 952 953 954 955 956 957 958 | |
cgem_id_to_strip_type(cgem_digi_id)
Convert the CGEM digi ID to the strip type. 0 for X-strip, 1 for V-strip.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
cgem_digi_id
|
IntLike
|
The CGEM digi ID array or value. |
required |
Returns:
| Type | Description |
|---|---|
IntLike
|
The strip type. 0 for X-strip, 1 for V-strip. |
Source code in src/pybes3/digi_id.py
961 962 963 964 965 966 967 968 969 970 971 972 | |
cgem_id_to_strip(cgem_digi_id)
Convert CGEM digi ID to strip number
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
cgem_digi_id
|
IntLike
|
CGEM digi ID array or value. |
required |
Returns:
| Type | Description |
|---|---|
IntLike
|
The strip number. |
Source code in src/pybes3/digi_id.py
975 976 977 978 979 980 981 982 983 984 985 986 | |
get_cgem_digi_id(layer, sheet, strip_type, strip)
Generate CGEM digi ID based on the strip number, strip type, sheet number, and layer number.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
layer
|
IntLike
|
The layer number. |
required |
sheet
|
IntLike
|
The sheet number. |
required |
strip_type
|
IntLike
|
The strip type. 0 for X-strip, 1 for V-strip. |
required |
strip
|
IntLike
|
The strip number. |
required |
Returns:
| Type | Description |
|---|---|
IntLike
|
The CGEM digi ID. |
Source code in src/pybes3/digi_id.py
989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 | |