Last change
on this file since 595 was 583, checked in by torrento, 14 years ago |
Comment while in anagainmaker.sh; add date arg in submit2ge-anagainmaker.sh; minor cosmetic changes
|
-
Property svn:executable
set to
*
|
File size:
971 bytes
|
Rev | Line | |
---|
[580] | 1 | #!/bin/sh -xv
|
---|
| 2 |
|
---|
| 3 | #Process cmd line args: the -src option is mandatory (source name as Abell85)
|
---|
| 4 | sourceRadio=
|
---|
[583] | 5 | dateSelected=
|
---|
[580] | 6 | #use -sim option to simulate processing (debug the script as if...)
|
---|
| 7 | simulationMode=""
|
---|
| 8 | while [ $# -gt 0 ]
|
---|
| 9 | do
|
---|
| 10 | case "$1" in
|
---|
| 11 | -src) sourceRadio=$2; shift;;
|
---|
[583] | 12 | -date) dateSelected="-date $2"; dateJob="$2"; shift;;
|
---|
| 13 | -sim) simulationMode="-sim";;
|
---|
[580] | 14 | -h)
|
---|
| 15 | echo >&2 \
|
---|
[583] | 16 | "usage: $0 -src source -date YYYYMMDD [-sim]"
|
---|
[580] | 17 | exit 1;;
|
---|
| 18 | *) break;; # terminate while loop
|
---|
| 19 | esac
|
---|
| 20 | shift
|
---|
| 21 | done
|
---|
| 22 |
|
---|
[583] | 23 |
|
---|
| 24 | if [ "<${sourceRadio}>" = "<>" ]; then
|
---|
| 25 | $ECHO "FATAL: You have forgotten to select the source option (-src)"
|
---|
| 26 | exit 1
|
---|
| 27 | fi
|
---|
| 28 |
|
---|
| 29 | jobBatchName="gains-${sourceRadio}${dateJob}"
|
---|
[580] | 30 | jobLogName="${jobBatchName}.log.$$"
|
---|
| 31 |
|
---|
| 32 | qsub -P P_baoradio -l sps=1,irods=1,ct=2400,vmem=1000M,fsize=500M -o $jobLogName -j yes -N $jobBatchName -m be -M ${LOGNAME}@lal.in2p3.fr -V <<EOF
|
---|
| 33 |
|
---|
[583] | 34 | ${SCRIPTPATH}/anagainmaker.sh -src ${sourceRadio} ${dateSelected} ${simulationMode}
|
---|
[580] | 35 | EOF
|
---|
Note:
See
TracBrowser
for help on using the repository browser.