Skip to content

Commit

Permalink
Minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
andrea-pasquale committed Oct 31, 2023
1 parent 6901c6b commit c6d5c4e
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -131,14 +131,14 @@ def _acquisition(
)

for qubit in qubits:
# average msr, phase, i and q over the number of shots defined in the runcard
result = results[sequence.ro_pulses[qubit].serial]
result = results[qubit]
# store the results
data.register_qubit(
ResSpecType,
(qubit, state),
dict(
freq=sequence.ro_pulses[qubit].frequency + delta_frequency_range,
freq=sequence.get_qubit_pulses(qubit).ro_pulses[0].frequency
+ delta_frequency_range,
msr=result.magnitude,
phase=result.phase,
),
Expand Down

0 comments on commit c6d5c4e

Please sign in to comment.