Skip to content
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

ENH: add class for mr1l1 #1175

Merged
merged 3 commits into from
Oct 16, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions docs/source/upcoming_release_notes/1175-mr1l1.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
1175 mrl1
#################

API Breaks
----------
- N/A

Features
--------
- N/A

Device Updates
--------------
- N/A

New Devices
-----------
- `XOffsetMirrorNoBend`

Bugfixes
--------
- N/A

Maintenance
-----------
- N/A

Contributors
------------
- nrwslac
20 changes: 20 additions & 0 deletions pcdsdevices/mirror.py
Original file line number Diff line number Diff line change
Expand Up @@ -737,6 +737,26 @@ class XOffsetMirrorRTDs(XOffsetMirror):
rtd_3 = Cpt(PytmcSignal, ':RTD:3', io='i', kind='normal')


class XOffsetMirrorNoBend(XOffsetMirror):
"""
X-ray Offset Mirror with no bender.

2nd gen Axilon designs with LCLS-II Beckhoff motion architecture.

Parameters
----------
prefix : str
Base PV for the mirror.

name : str

Currently (10/11/2023) services: mr1l1

"""
bender = None
bender_enc_rms = None


class XOffsetMirrorBend(XOffsetMirror):
"""
X-ray Offset Mirror with 2 bender acutators.
Expand Down