source: BAORadio/AmasNancay/trunk/submit2bqs-anagainmaker.sh @ 576

Last change on this file since 576 was 576, checked in by campagne, 13 years ago

u_irods_baoradio pour BQS (jec)

  • Property svn:executable set to *
File size: 787 bytes
Line 
1#!/bin/sh -xv
2
3#Process cmd line args: the -src option is mandatory (source name as Abell85)
4sourceRadio=
5#use -sim option to simulate processing (debug the script as if...)
6simulationMode=""
7while [ $# -gt 0 ]
8do
9  case "$1" in
10      -src)  sourceRadio=$2; shift;;
11      -sim) simulationMode="-sim";;
12        -h)
13            echo >&2 \
14            "usage: $0 -src souce [-sim]"
15            exit 1;;
16        *)  break;;     # terminate while loop
17    esac
18    shift
19done
20
21jobBatchName="gains-$sourceRadio"
22jobLogName="${jobBatchName}.log.$$"
23
24qsub -l u_sps_baoradio,u_irods,u_irods_baoradio,T=120000,M=1000MB,scratch=500MB,platform=LINUX -eo -o $jobLogName -N $jobBatchName -mb -me -mu ${LOGNAME}@lal.in2p3.fr <<EOF
25/afs/in2p3.fr/home/c/campagne/private/work/AmasNancay/gainmaker.sh  -src ${sourceRadio} ${simulationMode}
26EOF
Note: See TracBrowser for help on using the repository browser.