]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PWGPP/CalibMacros/CPass1/mergeMakeOCDB.sh
Improving printouts, minor changes, update according to current settings for T0 and...
[u/mrichter/AliRoot.git] / PWGPP / CalibMacros / CPass1 / mergeMakeOCDB.sh
CommitLineData
807998f3 1#!/bin/bash
2
3# Script to merge objects coming out of the calibration train:
4# Arguments:
5# 1 - directory on which to look for the files to be merged
40f73007 6# 2 - runNumber
807998f3 7# 3 - OCDB output path
40f73007 8# [4 - default OCDB]
807998f3 9
10# example:
40f73007 11# mergeMakeOCDB.sh /alice/cern.ch/user/a/aliprod/CPass0/output/ 120691 alien://folder=/alice/cern.ch/user/a/aliprod/CPass0/output
807998f3 12
13#ALIEN setting
14# $1 = directory where to perform the find
40f73007 15# $2 = runNumber
807998f3 16# $3 = OCDB path
17
40f73007 18path=$1
19runNumber=$2
20outputOCDB=$3
21
22# if fourth argument given, its the default OCDB, otherwise use the default raw://
23defaultOCDB="raw://"
24[[ -n $4 ]] && defaultOCDB=$4
25
807998f3 26if [ -f Run0_999999999_v3_s0.root ]; then
27 mkdir -p TPC/Calib/Correction
28 mv Run0_999999999_v3_s0.root TPC/Calib/Correction/
29fi
30
40f73007 31echo ">>>>>>> Running AliRoot to merge calib objects found in $path with pattern AliESDfriends_v1.root"
32aliroot -l -b -q "merge.C(\"$path\",\"AliESDfriends_v1.root\")" 2>&1 | tee merge.log
807998f3 33mv syswatch.log syswatch_merge.log
34
40f73007 35echo ">>>>>>> Extract OCDB entries for run = $runNumber, to be stored in $outputOCDB"
36aliroot -l -b -q "makeOCDB.C($runNumber,\"$outputOCDB\",\"$defaultOCDB\")" 2>&1 | tee ocdb.log
807998f3 37mv syswatch.log syswatch_makeOCDB.log