-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Change to updated PVs and commented out ones which cannot be found #981
Conversation
MDecarabas
commented
May 29, 2024
•
edited by prjemian
Loading
edited by prjemian
- Closes aps_machine.py #972
@@ -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 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I wonder if I can find this PV (or its replacement) on one of the other screens...
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
A beamline-independent PV is not obvious. Another way is to do a recursive grep through the screen files, such as:
grep -R ShutterPermit . | grep ACIS
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
./asdops/screens/SRcomfort.adl: chan="ACIS:ShutterPermit"
./asdops/screens/SRcomfort.adl: chan="ACIS:ShutterPermit"
./asdops/screens/SRcomfort.adl: chan="ACIS:ShutterPermit"
./asdops/screens/checklist.adl: chan="ACIS:ShutterPermit"
./asdops/screens/checklist.adl: chan="ACIS:ShutterPermit"
./asdops/screens/checklist.adl: chan="ACIS:ShutterPermit"
./asdops/screens/checklist.adl: chan="ACIS:ShutterPermit"
./asdops/screens/checklist.adl: chan="ACIS:ShutterPermit"
./asdops/screens/checklist.adl: chan="ACIS:ShutterPermit"
./asdops/screens/checklist.adl: chan="ACIS:ShutterPermit"
./asdops/screens/checklist.adl: chan="ACIS:ShutterPermit"
./asdops/screens/SRInj24s.adl: chan="ACIS:ShutterPermit"
./asdops/screens/SRInjHybrid.adl: chan="ACIS:ShutterPermit"
./asdops/screens/SRcomfort_2015.adl: chan="ACIS:ShutterPermit"
./asdops/screens/SRcomfort_2015.adl: chan="ACIS:ShutterPermit"
./asdops/screens/SRInj324s.adl: chan="ACIS:ShutterPermit"
./asdops/screens/SRInj24s_P0.adl: chan="ACIS:ShutterPermit"
./asdops/screens/SRInj324s_P0.adl: chan="ACIS:ShutterPermit"
./asdops/screens/SRInjHybrid_P0.adl: chan="ACIS:ShutterPermit"
Yet, this PV does not respond to `caget`
I'll keep searching for some that applies to all beam lines. |
Is the move making the prefix part of the initialization and then having then we can keep just: |
The |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm fine with this as-is.