SuperKEKB XRM system |
Not logged in |
 |
|
Message ID: 3
Entry time: Tue May 3 08:11:06 2016
|
Author: |
M. Andrew |
Type: |
documentation |
Subject: |
what was done in January 2016 |
|
|
Here is a data dump of everything that happened on the asus laptop while getting the laste 2015 / early 2016 incarnation of the XRM tested before being delivered to KEK on the weekend of January 24th. Everything was done in bash and the firmware only addressed one carrier at a time, so the purpose of this elog entry is simply to archive the information. |
|
|
|
|
|
#!/bin/bash -e
# 2016-01-23 mza for XRM
declare destination="${HOME}/data/XRM/data"
#. ${HOME}/.bashrc
cd /home/idlab/LaserBranch/software/gigE/
source setup_env_template.sh
cd ScriptsWithCarrierAddressing
#gige2
car=0
asic=1
FB=110
#for car in $(seq 0 2); do
# for asic in $(seq 0 3); do
filename="${destination}/carrier${car}.asic${asic}.pedestals"
echo -n "${filename}"
if [ -e "${filename}" ]; then
echo " - found"
continue
else
#touch "${filename}"
echo
fi
python ../scripts_mod/irsxSetCarrierOn_Cal.py $car 0
./set_all_thresholds.sh $car $asic 0
./set_all_thresholds.sh $car $asic 0
./setupAsic_CA.sh $car $asic $FB
mv pedfile_RMS_0.txt "${filename}"
ls -lart "${filename}"
# done
#done
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|