BEC demo examples from Klaus

This commit is contained in:
gac-x06da
2025-01-21 15:42:37 +01:00
parent 434ddad89a
commit 1cd8760a13
2 changed files with 11 additions and 0 deletions

View File

@@ -0,0 +1 @@
from .my_test_scan import MyScan

View File

@@ -0,0 +1,10 @@
from bec_server.scan_server.scans import LineScan
class MyScan(LineScan):
scan_name = "test_scan"
def _calculate_positions(self):
return super()._calculate_positions()