Skip to content
Snippets Groups Projects
Commit 9411fd27 authored by Sander de Snoo's avatar Sander de Snoo
Browse files

Fixed copying of segment_IQ

parent fea0012f
No related branches found
No related tags found
No related merge requests found
...@@ -47,6 +47,10 @@ class segment_IQ(segment_base): ...@@ -47,6 +47,10 @@ class segment_IQ(segment_base):
self._qubit_channel = qubit_channel self._qubit_channel = qubit_channel
def __copy__(self):
cpy = segment_IQ(self.name, self._qubit_channel, self._data_hvi_variable)
return self._copy(cpy)
@loop_controller @loop_controller
def add_global_phase(self,phase): def add_global_phase(self,phase):
""" """
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment