pairing Module
pair(tb, pad)
Combine two integers into one integer
Uses Szudzik pairing function to combine Time Bucket and Pad into a id.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
tb
|
int
|
The time bucket of the data |
required |
pad
|
int
|
The pad id of the data |
required |
Returns:
Type | Description |
---|---|
int
|
The id of this data from the tb and pad |
Source code in src/attpc_engine/detector/pairing.py
unpair(id)
Inverse of the pairing function
This is the inverse pairing function for Szudzik pairing
Parameters:
Name | Type | Description | Default |
---|---|---|---|
id
|
int
|
A id generated from the pair function |
required |
Returns:
Type | Description |
---|---|
tuple[int, int]
|
A pair of numbers which was used to generate the original id. In our case the first is the time bucket, the second is the pad id. Note that the order is important! |