slsDetectorPackage/python/examples/threshold_scan.py
2020-08-20 11:46:35 +02:00

8 lines
148 B
Python

from slsdet import Eiger
d = Eiger()
threshold = range(0, 2000, 200)
for th in threshold:
print(f'{th=}')
d.vthreshold = th
d.acquire()