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