ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/auterman/SusyScan/GeneratorScan/run
Revision: 1.2
Committed: Fri Nov 26 17:31:56 2010 UTC (14 years, 5 months ago) by auterman
Branch: MAIN
CVS Tags: HEAD
Changes since 1.1: +10 -10 lines
Error occurred while calculating annotation data.
Log Message:
*** empty log message ***

File Contents

# Content
1 #!/bin/bash
2 #echo "Input: m0, m12, tanb, A0, sign(mu)"
3 #echo $1 $2 $3 $4 $5
4 #echo 'runIsaPythia.sh $1 $2 $3 $4 $5'
5
6 mtop=170.9
7 tanb=10
8 A_zero=0
9 signmu=1
10 m_zero=0
11 while [ "$m_zero" -le 1000 ]
12 do
13 m_half=100
14 while [ "$m_half" -le 500 ]
15 do
16 echo "mzero = $m_zero, mhalf = $m_half"
17 ./runIsaPythia.sh $m_zero $m_half $tanb $A_zero $signmu
18 ./fill isa.out scan.dat
19 #runPythia.sh $m_zero $m_half $tanb $A_zero $signmu
20 #./fill_xsec pythia.out scan_xsec.dat
21 m_half=$(($m_half+10))
22 done
23
24 m_zero=$(($m_zero+10))
25 done
26