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

* added temp m3 settings files * renames settings noise to trim * get threshold for M3 * 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>
38 lines
963 B
Bash
Executable File
38 lines
963 B
Bash
Executable File
#echo $#
|
|
#if [ $# = 0 ]; then
|
|
# f=$0
|
|
#else
|
|
# f=$1
|
|
#fi
|
|
#echo $f
|
|
if [ "x${BASH_ARGV[0]}" = "x" ]; then
|
|
#if [ "x$f" = "x" ]; then
|
|
if [ ! -f this_build_bin_path.sh ]; then
|
|
f=$0
|
|
echo "aaaa"
|
|
#thispath=$(dirname ${BASH_ARGV[0]})
|
|
thispath=$(dirname $f)
|
|
p=$(cd ${thispath};pwd);
|
|
THIS_PATH="$p/build/bin/"
|
|
# echo "ERROR: must cd where/this/package/is before calling this_path.sh"
|
|
# echo "Try sourcing it"
|
|
else
|
|
echo "bbb"
|
|
THIS_PATH="$PWD/build/bin/";
|
|
fi
|
|
else
|
|
thispath=$(dirname ${BASH_ARGV[0]})
|
|
p=$(cd ${thispath};pwd);
|
|
THIS_PATH="$p/build/bin/"
|
|
echo "ccc"
|
|
fi
|
|
|
|
echo "this_path="$THIS_PATH
|
|
export PATH=$THIS_PATH:$PATH
|
|
export LD_LIBRARY_PATH=$THIS_PATH:$LD_LIBRARY_PATH
|
|
export PYTHONPATH=$THIS_PATH:$PYTHONPATH
|
|
|
|
echo "path="$PATH
|
|
echo "ld_library_path="$LD_LIBRARY_PATH
|
|
echo "pythonpath="$PYTHON_PATH
|