forked from cctbx/dxtbx
-
Notifications
You must be signed in to change notification settings - Fork 0
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
ea8e500
commit 6869e93
Showing
2 changed files
with
35 additions
and
0 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 @@ | ||
Add support for Eiger 9M on ESRF ID23-2, which has an undeclared vertical goniometer. |
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,34 @@ | ||
from __future__ import annotations | ||
|
||
import re | ||
|
||
import h5py | ||
|
||
from dxtbx.format.FormatNXmxEigerFilewriter import FormatNXmxEigerFilewriter | ||
|
||
DATA_FILE_RE = re.compile(r"data_\d{6}") | ||
|
||
|
||
class FormatNXmxEigerFilewriterESRFID232(FormatNXmxEigerFilewriter): | ||
_cached_file_handle = None | ||
|
||
@staticmethod | ||
def understand(image_file): | ||
with h5py.File(image_file) as handle: | ||
if "/entry/instrument/detector/detector_number" in handle: | ||
if ( | ||
handle["/entry/instrument/detector/detector_number"][()] | ||
== b"E-18-0133" | ||
): | ||
return True | ||
return False | ||
|
||
def __init__(self, image_file, **kwargs): | ||
"""Initialise the image structure from the given file.""" | ||
super().__init__(image_file, **kwargs) | ||
|
||
def _start(self): | ||
super()._start() | ||
|
||
def _goniometer(self): | ||
return self._goniometer_factory.known_axis((0, 1, 0)) |