diff --git a/pxiii_bec/scans/__init__.py b/pxiii_bec/scans/__init__.py index e69de29..38dfc1b 100644 --- a/pxiii_bec/scans/__init__.py +++ b/pxiii_bec/scans/__init__.py @@ -0,0 +1 @@ +from .my_test_scan import MyScan \ No newline at end of file diff --git a/pxiii_bec/scans/my_test_scan.py b/pxiii_bec/scans/my_test_scan.py new file mode 100644 index 0000000..8246a2a --- /dev/null +++ b/pxiii_bec/scans/my_test_scan.py @@ -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() \ No newline at end of file