Source code for pymepix.channel.channel_types

from enum import Enum


[docs] class ChannelDataType(Enum): COMMAND = "comm" PIXEL = "pixel" TOF = "tof" CENTROID = "centroid"
[docs] class Commands(Enum): START_RECORD = "start_record" STOP_RECORD = "stop_record"