Skip to content

Commit 0dae294

Browse files
committed
Fix APS1 marker name
1 parent 63b23f3 commit 0dae294

File tree

1 file changed

+1
-13
lines changed

1 file changed

+1
-13
lines changed

QGL/ChannelLibraries.py

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -182,18 +182,6 @@ def qubits(self):
182182
def meas(self):
183183
return self.ent_by_type(Channels.Measurement)
184184

185-
def ls_receivers(self):
186-
return self.ent_by_type(Channels.Receiver, show=True)
187-
188-
def ls_transmitters(self):
189-
return self.ent_by_type(Channels.Transmitter, show=True)
190-
191-
def ls_qubits(self):
192-
return self.ent_by_type(Channels.Qubit, show=True)
193-
194-
def ls_measurements(self):
195-
return self.ent_by_type(Channels.Measurement, show=True)
196-
197185
@check_session_dirty
198186
def load(self, name, index=1):
199187
"""Load the latest instance for a particular name. Specifying index = 2 will select the second most recent instance """
@@ -311,7 +299,7 @@ def new_APS(self, label, address):
311299
chan2 = Channels.PhysicalQuadratureChannel(label=f"{label}-34", instrument=label, translator="APSPattern", channel_db=self.channelDatabase)
312300
m1 = Channels.PhysicalMarkerChannel(label=f"{label}-1m1", instrument=label, translator="APSPattern", channel_db=self.channelDatabase)
313301
m2 = Channels.PhysicalMarkerChannel(label=f"{label}-2m1", instrument=label, translator="APSPattern", channel_db=self.channelDatabase)
314-
m3 = Channels.PhysicalMarkerChannel(label=f"{label}-2m1", instrument=label, translator="APSPattern", channel_db=self.channelDatabase)
302+
m3 = Channels.PhysicalMarkerChannel(label=f"{label}-3m1", instrument=label, translator="APSPattern", channel_db=self.channelDatabase)
315303
m4 = Channels.PhysicalMarkerChannel(label=f"{label}-4m1", instrument=label, translator="APSPattern", channel_db=self.channelDatabase)
316304

317305
this_transmitter = Channels.Transmitter(label=label, model="APS", address=address, channels=[chan1, chan2, m1, m2, m3, m4], channel_db=self.channelDatabase)

0 commit comments

Comments
 (0)