mirror of
https://github.com/paulscherrerinstitute/sf_daq_buffer.git
synced 2026-05-06 22:04:13 +02:00
13 lines
259 B
Bash
13 lines
259 B
Bash
#!/bin/bash
|
|
|
|
H=`echo ${HOSTNAME} | sed 's/.psi.ch//'`
|
|
case ${H} in
|
|
'sf-daq-4')
|
|
coreAssociated="33,34,35"
|
|
;;
|
|
*)
|
|
coreAssociated="12"
|
|
esac
|
|
|
|
taskset -c ${coreAssociated} /usr/local/bin/sf_stream /gpfs/photonics/swissfel/buffer/config/stream-JF02.json
|