Skip to content

Commit

Permalink
multi channel parameter -> get_raw
Browse files Browse the repository at this point in the history
  • Loading branch information
jenshnielsen committed Oct 27, 2017
1 parent 5aad486 commit 084c594
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions qcodes/instrument/channel.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,15 +80,15 @@ def __init__(self,
self._channels = channels
self._param_name = param_name

def get(self) -> tuple:
def get_raw(self) -> tuple:
"""
Return a tuple containing the data from each of the channels in the
list
"""
return tuple(chan.parameters[self._param_name].get() for chan
in self._channels)

def set(self, value):
def set_raw(self, value):
"""
Set all parameters to this value
Expand Down

0 comments on commit 084c594

Please sign in to comment.