Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or 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
| "Nano-positioners or Whatever This Name is for Humans": | |
| EpicsMotor: | |
| nptx: | |
| read_pv: XF:23ID1... | |
| upsample: 'linear' | |
| downsample: 'mean' | |
| npty: | |
| read_pv: XP:2dID1-ES{Dif... | |
| "Sample Positions": |
This file contains hidden or 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
| import re | |
| import tokenize | |
| import keyword | |
| import os | |
| import sys | |
| import yaml | |
| from ophyd import controls | |
| BEAMLINE_ALIASES = { | |
| # project beamlines |
This file contains hidden or 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
| import h5py | |
| class AD_HDF5Handler(object): | |
| def __init__(self, filename, frame_per_point): | |
| dataset_name = '/entry/data/data' | |
| f = h5py.File(filename) | |
| self.dataset = f[dataset_name] | |
| def __call__(self, point_number): | |
| return self.dataset[point_number, :, :] | |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.