12 lines
253 B
Bash
12 lines
253 B
Bash
declare -i i=0
|
|
while [[ $i -lt 24 ]]; do
|
|
cd ..
|
|
export flipa=$i
|
|
bash run_sx3.sh
|
|
cp results_run12.root results_run12_noflip_anodeoffset$i.root
|
|
#cp results_run21.root results_run21_anodeoffset$i.root
|
|
cd -
|
|
i=i+1
|
|
done
|
|
unset flipa
|