Skip to content

Commit

Permalink
Add temperature parameters docstrings
Browse files Browse the repository at this point in the history
  • Loading branch information
panasee committed Feb 19, 2025
1 parent 05401a8 commit 51c63f7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/qcodes/instrument_drivers/oxford/MercuryiPS_VISA.py
Original file line number Diff line number Diff line change
Expand Up @@ -370,6 +370,7 @@ def __init__(
get_cmd="READ:" + self.magnet_temp_addr + ":SIG:TEMP?",
get_parser=_temp_parser
)
"""Parameter magnet temperature"""

self.pt1_temp: Parameter = self.add_parameter(
name='pt1_temp',
Expand All @@ -379,6 +380,7 @@ def __init__(
get_cmd="READ:" + self.pt1_temp_addr + ":SIG:TEMP?",
get_parser=_temp_parser
)
"""Parameter pt1 temperature"""

self.pt2_temp: Parameter = self.add_parameter(
name='pt2_temp',
Expand All @@ -388,7 +390,7 @@ def __init__(
get_cmd="READ:" + self.pt2_temp_addr + ":SIG:TEMP?",
get_parser=_temp_parser
)

"""Parameter pt2 temperature"""

for coord, unit in zip(
["x", "y", "z", "r", "theta", "phi", "rho"],
Expand Down

0 comments on commit 51c63f7

Please sign in to comment.