mirror of
https://github.com/paulscherrerinstitute/sf_daq_buffer.git
synced 2026-05-03 01:44:12 +02:00
core adjustments for eiger header. more debug msgs
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user