ROOTPWA
4fit.sh
Go to the documentation of this file.
1 #!/bin/bash
2 # start 4 fitting jobs simultaneusly!
3 
4 IDS=( 1 2 3 4 5 6 7 8 9 )
5 #IDS=( 5 6 7 8 )
6 #IDS=( 9 10 11 12 )
7 
8 for i in {1..6}; do
9 #for i in 0 ; do
10 export SGE_TASK_ID=${IDS[$i]}
11 echo "Starting Job $SGE_TASK_ID"
12 ./rootfitBatch.sge > batch$SGE_TASK_ID.log &
13 done