-
Notifications
You must be signed in to change notification settings - Fork 18
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
Showing
2 changed files
with
31 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 CBFMini support for the EIGER2 16M detector at CHESS beamline ID7B2, which has an inverted rotation axis. |
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,30 @@ | ||
from __future__ import annotations | ||
|
||
import sys | ||
|
||
from dxtbx.format.FormatCBFMiniEiger import FormatCBFMiniEiger | ||
|
||
|
||
class FormatCBFMiniEigerChessID7B2(FormatCBFMiniEiger): | ||
"""A class for reading mini CBF format Eiger16M images for S/N E-32-0123 | ||
installed at CHESS ID7B2, which has an inverted goniometer axis.""" | ||
|
||
@staticmethod | ||
def understand(image_file): | ||
"""Check to see if this looks like an Eiger mini CBF format image, | ||
i.e. we can make sense of it.""" | ||
|
||
header = FormatCBFMiniEiger.get_cbf_header(image_file) | ||
for record in header.split("\n"): | ||
if "# Detector: Dectris EIGER2 Si 16M, S/N E-32-0123" in record: | ||
return True | ||
|
||
return False | ||
|
||
def _goniometer(self): | ||
return self._goniometer_factory.known_axis((-1, 0, 0)) | ||
|
||
|
||
if __name__ == "__main__": | ||
for arg in sys.argv[1:]: | ||
print(FormatCBFMiniEigerChessID7B2.understand(arg)) |