Skip to content

Commit

Permalink
Fix missing pv
Browse files Browse the repository at this point in the history
  • Loading branch information
noemifrisina committed Jul 19, 2024
1 parent 80ea8e6 commit fb95488
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/mx_bluesky/I24/serial/setup_beamline/pv_abstract.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ class pv:
sequence_id = pv.eiger_seqID
beamx = pv.eiger_beamx
beamy = pv.eiger_beamy
bit_depth = pv.eiger_bitdepthrbv

def __str__(self) -> str:
return self.name
Expand Down
2 changes: 1 addition & 1 deletion src/mx_bluesky/I24/serial/write_nexus.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ def call_nexgen(
transmission = (float(caget(Eiger.pv.transmission)),)

if det_type == Eiger.name:
bit_depth = int(caget(pv.eiger_bitdepthrbv))
bit_depth = int(caget(Eiger.pv.bit_depth))
logger.debug(
f"Call to nexgen server with the following chip definition: \n{chip_prog_dict}"
)
Expand Down

0 comments on commit fb95488

Please sign in to comment.