mirror of
https://github.com/nqrduck/quackseq-simulator.git
synced 2024-12-22 05:00:24 +00:00
Fixed bug with missing RX event.
This commit is contained in:
parent
820bdbebb7
commit
1e60e7e633
1 changed files with 1 additions and 1 deletions
|
@ -87,7 +87,7 @@ class SimulatorController(SpectrometerController):
|
||||||
else:
|
else:
|
||||||
measurement_data.add_dataset(tdx, result / simulation.averages)
|
measurement_data.add_dataset(tdx, result / simulation.averages)
|
||||||
|
|
||||||
if readout_scheme.any():
|
if (rx_begin and rx_stop) and readout_scheme.any():
|
||||||
measurement_data.phase_shift(readout_scheme[cycle][1], cycle)
|
measurement_data.phase_shift(readout_scheme[cycle][1], cycle)
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue