Source code for quantify_scheduler.enums

# Repository: https://gitlab.com/quantify-os/quantify-scheduler
# Licensed according to the LICENCE file on the main branch
"""Enums for quantify-scheduler."""

try:
    from enum import StrEnum, unique  # type: ignore
except ImportError:
    from enum import Enum, unique

[docs] class StrEnum(Enum): """Enum that can be directly serialized to string.""" def __str__(self): return self.value
@unique
[docs] class BinMode(StrEnum): # type: ignore """ Describes how to handle `Acquisitions` that write to the same `AcquisitionIndex`. A BinMode is a property of an `AcquisitionChannel` that describes how to handle multiple :class:`~quantify_scheduler.operations.acquisition_library.Acquisition` s that write data to the same `AcquisitionIndex` on a channel. The most common use-case for this is when iterating over multiple repetitions of a :class:`~quantify_scheduler.schedules.schedule.Schedule` When the BinMode is set to `APPEND` new entries will be added as a list along the `repetitions` dimension. When the BinMode is set to `AVERAGE` the outcomes are averaged together into one value. Note that not all `AcquisitionProtocols` and backends support all possible BinModes. For more information, please see the :ref:`sec-acquisition-protocols` reference guide and some of the Qblox-specific :ref:`acquisition details <sec-qblox-acquisition-details>`. """
[docs] APPEND = "append"
[docs] AVERAGE = "average"
[docs] FIRST = "first"
# N.B. in principle it is possible to specify other behaviours for # BinMode such as `SUM` or `OVERWRITE` but these are not # currently supported by any backend.
[docs] class TimeSource(StrEnum): # type: ignore """ Selects the timetag data source for timetag (trace) acquisitions. See :class:`~quantify_scheduler.operations.acquisition_library.Timetag` and :class:`~quantify_scheduler.operations.acquisition_library.TimetagTrace`. """
[docs] FIRST = "first"
[docs] SECOND = "second"
[docs] LAST = "last"
[docs] class TimeRef(StrEnum): # type: ignore """ Selects the event that counts as a time reference (i.e. t=0) for timetags. See :class:`~quantify_scheduler.operations.acquisition_library.Timetag` and :class:`~quantify_scheduler.operations.acquisition_library.TimetagTrace`. """
[docs] START = "start"
[docs] END = "end"
[docs] FIRST = "first"
[docs] TIMESTAMP = "timestamp"