spidr4.tpx4tools

spidr4.tpx4tools Module

class spidr4.tpx4tools.ControlStatusPacket(*vargs, **kwargs)[source]
data = None
header = None
segment = None
top = None
class spidr4.tpx4tools.PC24Packet(*vargs, **kwargs)[source]
EoC = None
EventCount = None
Pixel = None
SPGroup = None
SPixel = None
Top = None
class spidr4.tpx4tools.PartialPixelUpdater(tpx4: Timepix4Stub, initial_cfg: Buffer | _SupportsArray[dtype[Any]] | _NestedSequence[_SupportsArray[dtype[Any]]] | bool | int | float | complex | str | bytes | _NestedSequence[bool | int | float | complex | str | bytes], idx: int = 0, spgaccess=False)[source]

Convenience class for (partially) updating a pixel matrix.

It works by initially programming the matrix with provided pixel config.

After this you can update the pixel-matrix by calling the update() function, which will only update those columns which are actually changed.

classmethod to_pp(h, c, s=0, data=None)[source]
update(pixel_cfg: Buffer | _SupportsArray[dtype[Any]] | _NestedSequence[_SupportsArray[dtype[Any]]] | bool | int | float | complex | str | bytes | _NestedSequence[bool | int | float | complex | str | bytes] | None, hold_off=False, validate=False)[source]
class spidr4.tpx4tools.PixelConfig(*vargs, **kwargs)[source]
dac = None
mask = None
power_enable = None
tp_enable = None
class spidr4.tpx4tools.SPGroupConfig(*vargs, **kwargs)[source]
bypass_down = None
bypass_up = None
digital_pixel_enable = None
mask_sp_0 = None
mask_sp_1 = None
mask_sp_2 = None
mask_sp_3 = None
vco_adj0 = None
vco_adj1 = None
vco_adj2 = None
vco_adj3 = None
class spidr4.tpx4tools.ToAToTPacket(*vargs, **kwargs)[source]
EoC = None
Pileup = None
Pixel = None
SPGroup = None
SPixel = None
ToA = None
ToT = None
Top = None
addr = None
fToA_fall = None
fToA_rise = None
ufToA_start = None
ufToA_stop = None
spidr4.tpx4tools.chip2logic_cfg_matrix(configblob)[source]

Converts a pixel configuration as returned by GetConfigPixels to a 2D array (rows x cols).

Parameters:

configblob – numpy array containing pixel configuration data

Returns:

A numpy array shape=(512,448), dtype=u8

matrix_response=tpx4.GetConfigPixels(

rpc.ChipIndex(idx=0)

)

pixelconfig=chip2logic_matrix(matrix_response.config)

print(pixel_config[5,5])

spidr4.tpx4tools.chip_coords2logic(top, eoc, spgroup, spixel, pixel, is_config=False)[source]

Coords to logic x,y position :param half: Half, 0 - bottom, 1 - top :param eoc: End of column 0..223 :param spgroup: Super pixel group 0..15 :param spixel: Super pixel 0..3 :param pixel: Pixel 0..7 :param is_config: Whether or not the coordinates are for a configuration :return:

spidr4.tpx4tools.chip_coords2logic_idx(half, eoc, spgroup, spixel, pixel, is_config=False)[source]
spidr4.tpx4tools.cs_lookup(header)[source]
spidr4.tpx4tools.decode_dd_packet(val, pc24=False)[source]

Decodes data-driven mode :param val: :return:

spidr4.tpx4tools.decode_eoc_mon(reg_value)[source]

Decodes an EoC monitoring column

Parameters:

reg_value – Reg value

Returns:

Tuple <DLL code>,<locked status>

spidr4.tpx4tools.disable_prbs(tpx4)[source]

Disables the PRBS generation :param tpx4: The gRPC service tpx4 stub

spidr4.tpx4tools.enable_prbs(tpx4, top_channels, bot_channels, mode)[source]

Enable PRBS for the channels you want :param tpx4: The gRPC service tpx4 stub :param top_channels: Bitmask of top channels to enable :param bot_channels: Bitmask of bottom channels to enable :param mode: The mode to select.

spidr4.tpx4tools.fb8_decode(pkt_gen)[source]

returns the first full frame found while scanning the packet generator.

A packet generator can be created through the use stream.unwrap_stream(strm).

Parameters:

pkt_gen – An iterator providing 64 bit packets.

Returns:

a 2D array (segment, pixel data)

spidr4.tpx4tools.fb_to_image(bottom, top)[source]

Converts frame-based acquisition arrays to an 448x512 pixel image.

Input was was received by fb8_decode or fb16_decode

Parameters:
  • bottom – Bottom frame-based segements

  • top – Top frame-based segments

Returns:

A pixel array of 512x448 pixels

spidr4.tpx4tools.logic2chip_cfg_matrix(pixelcfg)[source]

Converts a logical pixel configuration (numpy array shape=(512,448), dtype=u8) to a flat numpy array which can be fed into the tpx4.ConfigPixels() called.

Parameters:

pixelcfg (ndarray) – Pixel configuration in [rows,column] ordering

Retruns

ndarray

A flat array which can be fed to rpc.Tpx4PixelConfig()

— pixel_config = np.zeros(shape=(512, 448)) pixel_config[5, 5] = 0xF

config_blob = logic2chip_matrix(pixel_config)

tpx4.ConfigPixels(

rpc.Tpx4PixelConfig(idx = 0, config=config_blob.tobytes())

)

spidr4.tpx4tools.logic2chip_coords(x, y, is_config=False)[source]

x, y to coords

spidr4.tpx4tools.logic2chip_coords_idx(x, y, is_config=False, blob=False)[source]

Functions

chip2logic_cfg_matrix(configblob)

Converts a pixel configuration as returned by GetConfigPixels to a 2D array (rows x cols).

chip_coords2logic(top, eoc, spgroup, spixel, ...)

Coords to logic x,y position :param half: Half, 0 - bottom, 1 - top :param eoc: End of column 0..223 :param spgroup: Super pixel group 0..15 :param spixel: Super pixel 0..3 :param pixel: Pixel 0..7 :param is_config: Whether or not the coordinates are for a configuration :return:

chip_coords2logic_idx(half, eoc, spgroup, ...)

cs_lookup(header)

decode_dd_packet(val[, pc24])

Decodes data-driven mode :param val: :return:

decode_eoc_mon(reg_value)

Decodes an EoC monitoring column

disable_prbs(tpx4)

Disables the PRBS generation :param tpx4: The gRPC service tpx4 stub

enable_prbs(tpx4, top_channels, ...)

Enable PRBS for the channels you want :param tpx4: The gRPC service tpx4 stub :param top_channels: Bitmask of top channels to enable :param bot_channels: Bitmask of bottom channels to enable :param mode: The mode to select.

fb8_decode(pkt_gen)

returns the first full frame found while scanning the packet generator.

fb_to_image(bottom, top)

Converts frame-based acquisition arrays to an 448x512 pixel image.

logic2chip_cfg_matrix(pixelcfg)

Converts a logical pixel configuration (numpy array shape=(512,448), dtype=u8) to a flat numpy array which can be fed into the tpx4.ConfigPixels() called.

logic2chip_coords(x, y[, is_config])

x, y to coords

logic2chip_coords_idx(x, y[, is_config, blob])

Classes

BitField(*vargs, **kwargs)

A BitField is an abstraction to get/set bit-fields on a word.

ControlStatusPacket(*vargs, **kwargs)

Field(size, offset)

PC24Packet(*vargs, **kwargs)

PartialPixelUpdater(tpx4, initial_cfg[, ...])

Convenience class for (partially) updating a pixel matrix.

PixelConfig(*vargs, **kwargs)

SPGroupConfig(*vargs, **kwargs)

ToAToTPacket(*vargs, **kwargs)

Variables

ArrayLike

alias of Buffer | _SupportsArray[dtype[Any]] | _NestedSequence[_SupportsArray[dtype[Any]]] | bool | int | float | complex | str | bytes | _NestedSequence[bool | int | float | complex | str | bytes]

CS_CTRL_DATA_TEST

int([x]) -> integer int(x, base=10) -> integer

CS_FRAME_END

int([x]) -> integer int(x, base=10) -> integer

CS_FRAME_START

int([x]) -> integer int(x, base=10) -> integer

CS_HEARTBEAT

int([x]) -> integer int(x, base=10) -> integer

CS_IDLE

int([x]) -> integer int(x, base=10) -> integer

CS_SEGMENT_END

int([x]) -> integer int(x, base=10) -> integer

CS_SEGMENT_START

int([x]) -> integer int(x, base=10) -> integer

CS_SHUTTER_FALL

int([x]) -> integer int(x, base=10) -> integer

CS_SHUTTER_RISE

int([x]) -> integer int(x, base=10) -> integer

CS_SIGNAL_FALL

int([x]) -> integer int(x, base=10) -> integer

CS_SIGNAL_RISE

int([x]) -> integer int(x, base=10) -> integer

CS_T0_SYNC

int([x]) -> integer int(x, base=10) -> integer

HEIGHT

int([x]) -> integer int(x, base=10) -> integer

Optional

Optional[X] is equivalent to Union[X, None].

PACKETS_COUNT_FB_SEGMENT

int([x]) -> integer int(x, base=10) -> integer

PACKET_COUNT_FB16_HALF

int([x]) -> integer int(x, base=10) -> integer

PACKET_COUNT_FB8_HALF

int([x]) -> integer int(x, base=10) -> integer

WIDTH

int([x]) -> integer int(x, base=10) -> integer

Class Inheritance Diagram

Inheritance diagram of spidr4.tpx4tools.ControlStatusPacket, spidr4.tpx4tools.PC24Packet, spidr4.tpx4tools.PartialPixelUpdater, spidr4.tpx4tools.PixelConfig, spidr4.tpx4tools.SPGroupConfig, spidr4.tpx4tools.ToAToTPacket