Forked from
Computing / cbmroot
3805 commits behind the upstream repository.
-
Administrator authored
This version is an exact copy of the last revision of the trunk branch of the old SVN repository of CbmRoor at https://subversion.gsi.de/cbmsoft/cbmroot/trunk The old SVN repository will still be available for read access.
Administrator authoredThis version is an exact copy of the last revision of the trunk branch of the old SVN repository of CbmRoor at https://subversion.gsi.de/cbmsoft/cbmroot/trunk The old SVN repository will still be available for read access.
run_pi0.sh 858 B
#!/bin/bash
# NEVENTS can be between 1 and 500
NEVENTS=500
# NURQMD can be between 0 and 199
NURQMD=3
NTHREADS=0
MAXTHREADS=$(($NURQMD))
for (( i = 0; i <= $NURQMD; i++ )) do
NTHREADS=$(($NTHREADS+1))
echo "nice root -l -b -q run_sim_pi0.C'('${NEVENTS},${i}')' &" > mytemp
echo "nice root -l -b -q run_sim_pi0.C'('${NEVENTS},${i}')' &"
. mytemp &> data/logFile.${NEVENTS}.${i}eventsSim.txt
sleep 5
if [ "$NTHREADS" -ge "$MAXTHREADS" ]; then
wait ${!}
NTHREADS=0
fi
done
for (( i = 0; i <= $NURQMD; i++ )) do
NTHREADS=$(($NTHREADS+1))
echo "nice root -l -b -q run_reco_pi0.C'('${NEVENTS},${i}')' &" > mytemp
echo "nice root -l -b -q run_reco_pi0.C'('${NEVENTS},${i}')' &"
. mytemp &> data/logFile.${NEVENTS}.${i}eventsReco.txt
#/dev/null
sleep 5
if [ "$NTHREADS" -ge "$MAXTHREADS" ]; then
wait ${!}
NTHREADS=0
fi
done
rm mytemp