Skip to content

Commit

Permalink
Fix measChan for cal seqs
Browse files Browse the repository at this point in the history
  • Loading branch information
Diego Ristè committed Jun 18, 2018
1 parent 24175c1 commit efcf427
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion QGL/BasicSequences/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def create_cal_seqs(qubits, numRepeats, measChans=None, waitcmp=False, delay=Non
for _ in range(numRepeats)]

#Add on the measurement operator.
measBlock = reduce(operator.mul, [MEAS(q) for q in qubits])
measBlock = reduce(operator.mul, [MEAS(q) for q in measChans])
#Add optional delay
full_cal_seqs = [[seq, Id(qubits[0], delay), measBlock] if delay else [seq, measBlock] for seq in cal_seqs]
if waitcmp:
Expand Down

0 comments on commit efcf427

Please sign in to comment.