libtcspc.BHSPC600_4096chEvent

class libtcspc.BHSPC600_4096chEvent[source]

Bases: EventType

Raw 48-bit FIFO record from Becker & Hickl SPC-600/630 in 4096-channel mode.

Typically appears upstream of DecodeBHSPC600_4096ch.

Notes

The corresponding C++ event has a single field std::array<std::byte, 6> bytes holding the raw record. Construct an instance from raw bytes (BHSPC600_4096chEvent().value(bytes=b"......")) and read them back as inst.bytes (a 6-byte bytes object).

Constructing and inspecting individual event values from Python is intended for debugging and learning only and is extremely slow; production graphs process events in compiled C++ and exchange bulk data via buckets.

See also

tcspc::bh_spc600_4096ch_event

The underlying C++ event type.