Skip to content

Commit

Permalink
Merge pull request #981 from BCDA-APS/aps_machine
Browse files Browse the repository at this point in the history
Change to updated PVs and commented out ones which cannot be found
  • Loading branch information
prjemian authored Jul 1, 2024
2 parents a3cb039 + b0662ec commit 08c41fc
Showing 1 changed file with 11 additions and 5 deletions.
16 changes: 11 additions & 5 deletions apstools/devices/aps_machine.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ class ApsMachineParametersDevice(Device):
"""

current = Component(EpicsSignalRO, "S:SRcurrentAI")
current = Component(EpicsSignalRO, "S-DCCT:CurrentM")
lifetime = Component(EpicsSignalRO, "S:SRlifeTimeHrsCC")
aps_cycle = Component(ApsCycleDM)
machine_status = Component(EpicsSignalRO, "S:DesiredMode", string=True)
Expand All @@ -88,12 +88,18 @@ class ApsMachineParametersDevice(Device):
# 'Stored Beam',
# 'Delivered Beam',
# 'MAINTENANCE')
shutter_permit = Component(EpicsSignalRO, "ACIS:ShutterPermit", string=True)

# shutter_permit = Component(EpicsSignalRO, "ACIS:ShutterPermit", string=True) # Not Found

shutter_status = Component(EpicsSignalRO, "RF-ACIS:FePermit:Sect1To35IdM.RVAL", string = True)
shutters_open = Component(EpicsSignalRO, "NoOfShuttersOpenA")
fill_number = Component(EpicsSignalRO, "S:FillNumber")
orbit_correction = Component(EpicsSignalRO, "S:OrbitCorrection:CC")
global_feedback = Component(EpicsSignalRO, "SRFB:GBL:LoopStatusBI", string=True)
global_feedback_h = Component(EpicsSignalRO, "SRFB:GBL:HLoopStatusBI", string=True)
global_feedback_v = Component(EpicsSignalRO, "SRFB:GBL:VLoopStatusBI", string=True)

# global_feedback = Component(EpicsSignalRO, "SRFB:GBL:LoopStatusBI", string=True) # Not Found
# global_feedback_h = Component(EpicsSignalRO, "SRFB:GBL:HLoopStatusBI", string=True) # Not Found
# global_feedback_v = Component(EpicsSignalRO, "SRFB:GBL:VLoopStatusBI", string=True) # Not Found

operator_messages = Component(ApsOperatorMessagesDevice)

@property
Expand Down

0 comments on commit 08c41fc

Please sign in to comment.