]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PWGPP/QA/detectorQAscripts/EXAMPLE.sh
Yvonne for the TPC-TOF MB pPb analysis
[u/mrichter/AliRoot.git] / PWGPP / QA / detectorQAscripts / EXAMPLE.sh
CommitLineData
f7707400 1# this is a simple template
2# it defines two functions: runLevelQA and periodLevelQA
3#
4#available variables:
5# $dataType e.g. data or sim
6# $year e.g. 2011
7# $period e.g. LHC13g
93e1d132 8# $runNumber e.g. 169123
f7707400 9# $pass e.g. cpass1,pass1,passMC
10
11runLevelQA()
12{
13 #full path of QAresults.root is provided
14 qaFile=$1
15
16 #aliroot....
17
18 #should produce a file trending.root
161409c5 19 #if not, a default one will be provided
f7707400 20}
21
22periodLevelQA()
23{
24 #path of the merged period trending.root is provided
25 trendingFile=$1
161409c5 26
27 #merged trending file in fact present in current dir
f7707400 28 #runs in the production dir: ...../LHCXXx/passX/
29 #the running dir contains all the run sub directories
30 #named like 000123123 with the outputs of runLevelQA
31
32 #aliroot...
33}