]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PWG1/CalibMacros/MergeCalibration/mergeCalibObjects.sh
Updates in D+ histos and ntuples (Renu, Francesco, Elena)
[u/mrichter/AliRoot.git] / PWG1 / CalibMacros / MergeCalibration / mergeCalibObjects.sh
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 
6
7 # example:
8 # mergeCalibObjects.sh /alice/cern.ch/user/z/zampolli/CalibTrain/output/
9
10 #ALIEN setting
11 # $1 = directory where to perform the find 
12 #runnum=$1
13
14 #echo Directory to look into = $1
15
16 echo ">>>>>>> Running AliRoot to merge calib objects found in $1"
17 aliroot -l -b -q merge.C\(\"$1\"\) 2>&1 | tee merge.log
18
19