1 |
dkralph |
1.1 |
while read line; do
|
2 |
|
|
if echo $line | grep '^#' &> /dev/null; then continue; fi
|
3 |
|
|
if echo $line | grep '^\^' &> /dev/null; then continue; fi
|
4 |
|
|
|
5 |
|
|
haveMCdkr=`echo $line | awk '{print $7}'`
|
6 |
|
|
if [ "$haveMCdkr" == "0" ] && ! [ $interpolate ]; then continue; fi
|
7 |
|
|
mH=`echo $line | awk '{print $3}'`
|
8 |
|
|
if (( mH != 125 )); then continue; fi
|
9 |
|
|
echo $mH
|
10 |
|
|
root -b -l -q /home/dkralph/cms/cmssw/028/CMSSW_5_2_3_patch3/src/TMVA/test/efficiencies.C\(\"$mH\"\)
|
11 |
|
|
done < Angles/data/mHs.conf
|
12 |
|
|
|
13 |
|
|
~/bin/makeHtml.sh Angles/plots/training/comparisons |