]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PWGPP/QA/detectorQAscripts/EXAMPLE.sh.template
rename the script template to not trigger processing of the dummy detector
[u/mrichter/AliRoot.git] / PWGPP / QA / detectorQAscripts / EXAMPLE.sh.template
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
8 #  $runNumber     e.g. 169123
9 #  $pass         e.g. cpass1,pass1,passMC
10
11 runLevelQA()
12 {
13   #full path of QAresults.root is provided
14   qaFile=$1
15
16   #aliroot....
17
18   #should produce a file trending.root
19   #if not, a default one will be provided
20 }
21
22 periodLevelQA()
23 {
24   #path of the merged period trending.root is provided
25   trendingFile=$1 
26
27   #merged trending file in fact present in current dir
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 }
34
35 #########################################################
36 #########EXPERTS ONLY####################################
37 runLevelHighPtTreeQA()
38 {
39   #input is the high pt tree (if available)
40   highPtTree=$1
41 }