core adjustments for eiger header. more debug msgs

This commit is contained in:
2021-02-17 16:08:59 +01:00
parent 1de8f66bdc
commit 150bf41bf2
15 changed files with 113 additions and 72 deletions
+4
View File
@@ -1,4 +1,8 @@
{
"streamvis_stream": "tcp://0.0.0.0:9006",
"streamvis_rate": 10,
"live_stream": "tcp://0.0.0.0:9106",
"live_rate": 10,
"detector_name": "Eiger",
"n_modules": 1,
"start_udp_port": 50200
+3 -3
View File
@@ -1,8 +1,8 @@
hostname localhost:2050+
0:udp_dstport 50100
0:udp_dstport2 50101
0:udp_dstport 50200
0:udp_dstport2 50201
0:udp_dstip 127.0.0.1
0:udp_dstmac 90:1b:0e:19:1c:ae
0:udp_srcip 129.129.130.177
0:udp_srcmac 90:1b:0e:19:1c:ae
0:udp_srcmac 90:1b:0e:19:1c:ae
+2
View File
@@ -1,5 +1,7 @@
#!/bin/bash
if [ -z ${SLS_DET_PACKAGE_PATH} ]; then SLS_DET_PACKAGE_PATH="/home/hax_l/software/sf_daq_buffer/slsDetectorPackage/build/bin/"; fi
${SLS_DET_PACKAGE_PATH}sls_detector_put triggers 1
${SLS_DET_PACKAGE_PATH}sls_detector_put timing trigger
${SLS_DET_PACKAGE_PATH}sls_detector_put exptime 0.000005
+4 -5
View File
@@ -3,20 +3,19 @@
if [ $# -lt 1 ]
then
echo "Usage : $0 <port>"
echo " DETECTOR_NAME: Eiger"
echo " tcp port : optional, default 2000"
exit
fi
SLS_DET_PACKAGE_PATH='/home/hax_l/software/sf_daq_buffer/slsDetectorPackage/build/bin/'
port=2000
PORT=2050
if [ $# == 2 ]
then
port=$1
PORT=$1
fi
echo "Starting the server..."
${SLS_DET_PACKAGE_PATH}eigerDetectorServerMaster_virtual -p port
echo ${SLS_DET_PACKAGE_PATH}eigerDetectorServerMaster_virtual -p ${PORT}