Ignore:
Timestamp:
08/25/06 22:09:49 (18 years ago)
Author:
Daniela Dorner
Message:
*** empty log message ***
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/datacenter/scripts/writesequencefiles

    r7938 r7944  
    3535#
    3636
     37source `dirname $0`/sourcefile
     38printprocesslog "INFO starting $0"
    3739program=writesequencefile
    38 source `dirname $0`/sourcefile
     40column=fSequenceFileWritten
    3941
    4042set -C
    4143
    42 column=fSequenceFileWritten
    43 
    44 lockfile=$lockpath/lock-$program.txt
    45 
    46 scriptlogpath=$runlogpath/$program
    47 makedir $scriptlogpath
    48 scriptlog=$scriptlogpath/run$program-$datetime.log
    49 
     44scriptlog=$runlogpath/$program-$datetime.log
    5045date >> $scriptlog 2>&1
    5146
    5247# check if script is already running
     48lockfile=$lockpath/lock-$program.txt
    5349checklock  >> $scriptlog 2>&1
    5450
     
    7167for sequence in ${sequences[@]}
    7268do
     69   printprocesslog "INFO write sequence files for sequence $sequence"
    7370   no=`printf %08d $sequence | cut -c 0-4`
    7471   no2=`printf %08d $sequence`
     
    8784   check2=`root -q -b $macrospath/writesequencefile.C+\($sequence\,"\"$sequpath\""\) | tee $writesequencefilelog | grep int | sed -e 's/(int)//'`
    8885   case $check2 in
    89       1)   echo " check2=$check2 -> everything ok " >> $scriptlog 2>&1 ;;
     86      1)   echo " check2=$check2 -> everything ok " >> $scriptlog 2>&1
     87           printprocesslog "INFO sequence file successfully written for sequence $sequence"
     88           ;;
    9089      0)   echo " check2=$check2 -> no connection to db -> continue..." >> $scriptlog 2>&1
     90           printprocesslog "WARN connection to DB failed"
    9191           check="no"
    9292           ;;
    9393      *)   echo " check2=$check2 -> ERROR -> step has to be repeated" >> $scriptlog 2>&1
     94           printprocesslog "ERROR $program.C failed for sequence $sequence"
    9495           com=$Fwritesequfile
    9596           check=$check2
Note: See TracChangeset for help on using the changeset viewer.