Changeset 17089 for trunk/DataCheck


Ignore:
Timestamp:
09/06/13 15:46:14 (11 years ago)
Author:
Daniela Dorner
Message:
new macro paths, usage of getdates function, prepared script to be used in RunMoreNights.sh
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/DataCheck/Processing/FillAuxCtrDev.sh

    r15154 r17089  
    11#!/bin/bash
    22
    3 # option
    4 doupdate="yes" # update all entries (needed when new fields have been added)
    5 doupdate="no" # fill only entries which are not yet existing (default)
     3# option whether to fill all row or only those where information is missing
     4# $doupdate might be given as environment variable
     5if [ "$doupdate" = "" ]
     6then
     7   doupdate="yes" # update all entries (needed when new fields have been added)
     8   doupdate="no" # fill only entries which are not yet existing (default)
     9fi
    610
    711source `dirname $0`/../Sourcefile.sh
     
    2125fi
    2226
     27# get dates
     28if [ "$certaindate" != "" ]
     29then
     30   getdates $certaindate
     31else
     32   # get all night
     33   #getdates "all"
     34   # get last 6 nights
     35   getdates 6
     36fi
    2337
    24 # get last 3, 6 or 9 nights
    25 dates=( `date +%Y/%m/%d --date="-12hour"` `date +%Y/%m/%d --date="-36hour"` `date +%Y/%m/%d --date="-60hour"` \
    26 #        `date +%Y/%m/%d --date="-84hour"` `date +%Y/%m/%d --date="-108hour"` `date +%Y/%m/%d --date="-132hour"` \
    27 #        `date +%Y/%m/%d --date="-156hour"` `date +%Y/%m/%d --date="-180hour"` `date +%Y/%m/%d --date="-204hour"` \
    28         )
    29 dates=( `find -L $ziprawdata -mindepth 3 -type d | sort | sed "s/\${ziprawdata_for_sed}//g" | sed -e 's/^\///'` ) #all available dates in /loc_data/zipraw
    3038printprocesslog "INFO processing the following night(s): "${dates[@]}
    3139echo  `date`": processing the following night(s): "${dates[@]} >> $logfile 2>&1
     
    133141      if [ -e $trackingfile ] && [ $tracknumerrors -eq 0 ]
    134142      then
    135          ctrldevs=( `root -q -b -l fact/ctrldev.C\("\"$trackingfile\""\,$tstart\,$tstop\) | grep "result" | grep -E -o '[0-9]+[.]?[0-9]*'` )
     143         ctrldevs=( `root -q -b -l fact/processing/ctrldev.C\("\"$trackingfile\""\,$tstart\,$tstop\) | grep "result" | grep -E -o '[0-9]+[.]?[0-9]*'` )
    136144         if [ "${ctrldevs[0]}" == "" ]
    137145         then
     
    154162      query=$query" WHERE fNight="$runnumber" AND fRunID="$filenum
    155163     
    156       echo $query
    157164      # send query to DB
    158165      sendquery >/dev/null
Note: See TracChangeset for help on using the changeset viewer.