-
Notifications
You must be signed in to change notification settings - Fork 320
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0202b8b
commit 596dc59
Showing
108 changed files
with
1,047 additions
and
856 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
.. _parameters_api : | ||
|
||
qcodes.parameters | ||
================= | ||
|
||
.. automodule:: qcodes.parameters | ||
:autosummary: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,45 +1,49 @@ | ||
from .base import Instrument, find_or_create_instrument | ||
from .base import Instrument, InstrumentBase, find_or_create_instrument | ||
from .channel import ChannelList, ChannelTuple, InstrumentChannel, InstrumentModule | ||
from .function import Function | ||
from .group_parameter import Group, GroupParameter | ||
|
||
# todo which part of parameter should be exported here for backwards compatibility | ||
# from .group_parameter import Group, GroupParameter | ||
from .ip import IPInstrument | ||
from .parameter import ( | ||
ArrayParameter, | ||
CombinedParameter, | ||
DelegateParameter, | ||
ManualParameter, | ||
MultiParameter, | ||
Parameter, | ||
ParameterWithSetpoints, | ||
ScaledParameter, | ||
combine, | ||
) | ||
from .specialized_parameters import ElapsedTimeParameter | ||
from .sweep_values import SweepFixedValues, SweepValues | ||
|
||
# from .parameter import ( | ||
# ArrayParameter, | ||
# CombinedParameter, | ||
# DelegateParameter, | ||
# ManualParameter, | ||
# MultiParameter, | ||
# Parameter, | ||
# ParameterWithSetpoints, | ||
# ScaledParameter, | ||
# combine, | ||
# ) | ||
# from .specialized_parameters import ElapsedTimeParameter | ||
# from qcodes.parameters.sweep_values import SweepFixedValues, SweepValues | ||
from .visa import VisaInstrument | ||
|
||
__all__ = [ | ||
"ArrayParameter", | ||
# "ArrayParameter", | ||
"ChannelList", | ||
"ChannelTuple", | ||
"CombinedParameter", | ||
"DelegateParameter", | ||
"ElapsedTimeParameter", | ||
# "CombinedParameter", | ||
# "DelegateParameter", | ||
# "ElapsedTimeParameter", | ||
"Function", | ||
"Group", | ||
"GroupParameter", | ||
# "Group", | ||
# "GroupParameter", | ||
"IPInstrument", | ||
"Instrument", | ||
"InstrumentBase", | ||
"InstrumentChannel", | ||
"InstrumentModule", | ||
"ManualParameter", | ||
"MultiParameter", | ||
"Parameter", | ||
"ParameterWithSetpoints", | ||
"ScaledParameter", | ||
"SweepFixedValues", | ||
"SweepValues", | ||
# "ManualParameter", | ||
# "MultiParameter", | ||
# "Parameter", | ||
# "ParameterWithSetpoints", | ||
# "ScaledParameter", | ||
# "SweepFixedValues", | ||
# "SweepValues", | ||
"VisaInstrument", | ||
"combine", | ||
# "combine", | ||
"find_or_create_instrument", | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,6 @@ | ||
from qcodes.instrument.delegate.delegate_instrument import ( | ||
GroupedParameter, | ||
DelegateInstrument | ||
) | ||
from qcodes.instrument.delegate.instrument_group import InstrumentGroup | ||
|
||
from qcodes.instrument.delegate.delegate_channel_instrument import ( | ||
DelegateChannelInstrument | ||
DelegateChannelInstrument, | ||
) | ||
from qcodes.instrument.delegate.delegate_instrument import DelegateInstrument | ||
from qcodes.instrument.delegate.instrument_group import InstrumentGroup | ||
from qcodes.parameters.grouped_parameter import GroupedParameter |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.