-
Notifications
You must be signed in to change notification settings - Fork 1
/
prod.sh
61 lines (48 loc) · 2.42 KB
/
prod.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#!/bin/bash
export alien_CLOSE_SE=ALICE::UPB::EOS
# export alien_CLOSE_SE=ALICE::GSI::SE2
# export alien_CLOSE_SE=ALICE::FZK::SE
#ConfigFile="./configuration_22fpass4.json"
ConfigFile="./prod.json"
Prefix="feature-bininng-22m_pass4-"
Output="AnalysisResults.root"
OutputQA="QAResults.root"
Derived="FemtoAO2D"
echo "----------Start Job----------"
date
Start=$(date '+%s')
o2-analysis-timestamp -b --configuration json://$ConfigFile |
o2-analysis-event-selection -b --configuration json://$ConfigFile |
o2-analysis-multiplicity-table -b --configuration json://$ConfigFile |
#o2-analysis-centrality-table -b --configuration json://$ConfigFile |
o2-analysis-track-propagation -b --configuration json://$ConfigFile |
o2-analysis-tracks-extra-converter -b --configuration json://$ConfigFile |
o2-analysis-trackselection -b --configuration json://$ConfigFile |
o2-analysis-pid-tpc-base -b --configuration json://$ConfigFile |
o2-analysis-pid-tpc -b --configuration json://$ConfigFile |
o2-analysis-pid-tof-base -b --configuration json://$ConfigFile |
o2-analysis-pid-tof-full -b --configuration json://$ConfigFile |
o2-analysis-pid-tof -b --configuration json://$ConfigFile |
o2-analysis-bc-converter -b --configuration json://$ConfigFile |
o2-analysis-ft0-corrected-table -b --configuration json://$ConfigFile |
#o2-analysis-zdc-converter -b --configuration json://$ConfigFile |
#o2-analysis-ft0-corrected-table -b --configuration json://$ConfigFile |
#o2-analysis-lf-lambdakzerobuilder -b --configuration json://$ConfigFile | #comment for producer-reduced
o2-analysis-cf-femtouniverse-producer -b --configuration json://$ConfigFile --aod-writer-resfile FemtoAO2D --aod-writer-keep AOD/FDPARTICLE/0,AOD/FDCOLLISION/0,AOD/FDEXTPARTICLE/0 #|
#o2-analysis-cf-femtouniverse-pair-track-track -b --configuration json://$ConfigFile
#--aod-writer-resfile FemtoAO2D --aod-writer-keep AOD/FEMTODREAMPARTS/0,AOD/FEMTODREAMMCPS/0,AOD/FEMTOMCLABELS/0,AOD/FEMTODREAMCOLS/0
#--aod-writer-resfile FemtoAO2D --aod-writer-keep AOD/FEMTODREAMPARTS/0,AOD/FEMTODREAMCOLS/0
if [ -f "$Output" ]; then
mv "$Output" "${Prefix}${Output}"
fi
if [ -f "$OutputQA" ]; then
mv "$OutputQA" "${Prefix}${OutputQA}"
fi
# if [ -f "$Derived" ]; then
# mv "$Derived" "${Prefix}${Derived}"
# fi
date
echo "----------End Job----------"
End=$(date '+%s')
echo "Duration $(date -d@$((End - Start)) -u '+%H:%M:%S')"
#exit 0