This package provides a set of pure python functions for performing corrections on area detector data.
Install via PyPI with:
pip install adcorrA brief example of performing corrections using the library is presented below:
frames=load_my_frames()
mask=load_my_mask()
count_times=load_count_times()
frames=mask_frames(frames, mask)
frames=correct_deadtime(
frames,
count_times,
DETECTOR_MINIMUM_PULSE_SEPARATION,
DETECTOR_MINIMUM_ARRIVAL_SEPARATION,
)
frames=correct_dark_current(
frames,
count_times,
BASE_DARK_CURRENT,
TEMPORAL_DARK_CURRENT,
FLUX_DEPENDANT_DARK_CURRENT,
)
...| Library | Tests | Coverage |
| numcertain | ||
| Pint |
See https://DiamondLightSource.github.io/adcorr for more detailed documentation.