ROOTPWA
testPWAFit.sh
Go to the documentation of this file.
1 #!/bin/bash
2 
3 cd $ROOTPWA/src/pwafitTest
4 
5 ./runGamp.sh
6 
7 ./runPwaFit.sh
8 
9 root -b -q -l ./runCompareTFitBins.C
10 # function returns true if bins match; invert logic for exit status
11 if [[ "$?" -eq "1" ]]
12 then
13  exit 0
14 fi
15 
16 exit 1