mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2025-04-20 02:40:03 +02:00

* Setting pattern from memory (#218) * ToString accepts c-style arrays * fixed patwait time bug in validation * Introduced pattern class * compile for servers too * Python binding for Pattern * added scanParameters in Python * slsReceiver: avoid potential memory leak around Implementation::generalData * additional constructors for scanPrameters in python * bugfix: avoid potentital memory leak in receiver if called outside constructor context * added scanParameters in Python * additional constructors for scanPrameters in python * M3defaultpattern (#227) * default pattern for m3 and moench including Python bindings * M3settings (#228) * some changes to compile on RH7 and in the server to load the default chip status register at startup * Updated mythen3DeectorServer_developer executable with correct initialization at startup Co-authored-by: Erik Frojdh <erik.frojdh@gmail.com> Co-authored-by: Anna Bergamaschi <anna.bergamaschi@psi.ch> * Pattern.h as a public header files (#229) * fixed buffer overflow but caused by using global instead of local enum * replacing out of range trimbits with edge values * replacing dac values that are out of range after interpolation * updated pybind11 to 2.6.2 * Mythen3 improved synchronization (#231) Disabling scans for multi module Mythen3, since there is no feedback of the detectors being ready startDetector first starts the slaves then the master acquire firs calls startDetector for the slaves then acquire on the master getMaster to read back from hardware which one is master * New server for JF to go with the new FW (#232) * Modified Jungfrau speed settings for HW1.0 - FW fix version 1.1.1, compilation date 210218 * Corrected bug. DBIT clk phase is implemented in both HW version 1.0 and 2.0. Previous version did not update the DBIT phase shift on the configuration of a speed. * fix for m3 scan with single module * m3 fw version * m3 server * bugfix for bottom when setting quad * new strategy for finding zmq based on cppzmq Co-authored-by: Dhanya Thattil <dhanya.thattil@psi.ch> Co-authored-by: Dhanya Thattil <33750417+thattil@users.noreply.github.com> Co-authored-by: Alejandro Homs Puron <ahoms@esrf.fr> Co-authored-by: Anna Bergamaschi <anna.bergamaschi@psi.ch> Co-authored-by: Xiaoqiang Wang <xiaoqiangwang@gmail.com> Co-authored-by: lopez_c <carlos.lopez-cuenca@psi.ch>
59 lines
1.5 KiB
Python
Executable File
59 lines
1.5 KiB
Python
Executable File
"""
|
|
Setup file for slsdet
|
|
Build upon the pybind11 example found here: https://github.com/pybind/python_example
|
|
"""
|
|
|
|
import os
|
|
import sys
|
|
sys.path.append('../libs/pybind11')
|
|
from setuptools import setup, find_packages
|
|
from pybind11.setup_helpers import Pybind11Extension, build_ext
|
|
|
|
__version__ = os.environ.get('GIT_DESCRIBE_TAG', 'developer')
|
|
|
|
|
|
def get_conda_path():
|
|
"""
|
|
Keep this a function if we need some fancier logic later
|
|
"""
|
|
print('Prefix: ', os.environ['CONDA_PREFIX'])
|
|
return os.environ['CONDA_PREFIX']
|
|
|
|
|
|
#TODO migrate to CMake build?
|
|
ext_modules = [
|
|
Pybind11Extension(
|
|
'_slsdet',
|
|
['src/main.cpp',
|
|
'src/enums.cpp',
|
|
'src/detector.cpp',
|
|
'src/network.cpp',
|
|
'src/pattern.cpp',
|
|
'src/scan.cpp',],
|
|
include_dirs=[
|
|
os.path.join('../libs/pybind11/include'),
|
|
os.path.join(get_conda_path(), 'include'),
|
|
|
|
],
|
|
libraries=['SlsDetector', 'SlsSupport', 'SlsReceiver', 'zmq'],
|
|
library_dirs=[
|
|
os.path.join(get_conda_path(), 'lib'),
|
|
],
|
|
language='c++'
|
|
),
|
|
]
|
|
|
|
setup(
|
|
name='slsdet',
|
|
version=__version__,
|
|
author='Erik Frojdh',
|
|
author_email='erik.frojdh@psi.ch',
|
|
url='https://github.com/slsdetectorgroup/slsDetectorPackage',
|
|
description='Detector API for SLS Detector Group detectors',
|
|
long_description='',
|
|
packages=find_packages(exclude=['contrib', 'docs', 'tests']),
|
|
ext_modules=ext_modules,
|
|
cmdclass={"build_ext": build_ext},
|
|
zip_safe=False,
|
|
)
|