Trigger Realization¶

TriggerRealizations
are
generated once per SimulatedDrop
for each unique
TriggerModel
and contain information
about the synchronized simulated devices’ assumed time offsets.
- class TriggerRealization(num_offset_samples, sampling_rate)[source]¶
Bases:
Serializable
Realization of a trigger model.
A trigger realization will contain the offset between a drop start and the waveform frames contained within the drop.
- Parameters:
- Raises:
ValueError – For num_offset_samples smaller than zero.
ValueError – For a sampling_rate smaller or equal to zero.
- classmethod Deserialize(process)[source]¶
Deserialize an object’s state.
Objects cannot be deserialized directly, instead a
Factory
must be instructed to carry out the deserialization process.- Parameters:
process (
DeserializationProcess
) – The current stage of the deserialization process. This object is generated by theFactory
and provides an interface to deserialization methods supporting multiple backends.- Return type:
- Returns:
The deserialized object.
- compute_num_offset_samples(sampling_rate)[source]¶
Compute the number of realized offset samples for a custom sampling rate.
The result is rounded to the nearest smaller integer.
- Parameters:
sampling_rate (
float
) – Sampling rate of intereset in Hz.- Return type:
- Returns:
The number of trigger offset samples.
- Raises:
ValueError – For a sampling_rate smaller or equal to zero.
- serialize(process)[source]¶
Serialize this object’s state.
Objects cannot be serialized directly, instead a
Factory
must be instructed to carry out the serialization process.- Parameters:
process (
SerializationProcess
) – The current stage of the serialization process. This object is generated by theFactory
and provides an interface to serialization methods supporting multiple backends.- Return type: