enums#

Enums for quantify-scheduler.

Module Contents#

Classes#

StrEnum

This class functions to include explicit string serialization without adding str

BinMode

The acquisition protocol bin mode enum type.

class StrEnum[source]#

Bases: enum.Enum

This class functions to include explicit string serialization without adding str as a base class.

class BinMode[source]#

Bases: StrEnum

The acquisition protocol bin mode enum type.

Used to set the bin type to append or average respectively.

BinMode APPEND uses a list where every new result will be appended to the list.

BinMode AVERAGE incrementally stores the weighted average result.

APPEND = 'append'[source]#
AVERAGE = 'average'[source]#