-
Notifications
You must be signed in to change notification settings - Fork 0
/
runAnalysis.sh
executable file
·37 lines (23 loc) · 1 KB
/
runAnalysis.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
#!/bin/bash
SECONDS=0
cd /home/webdcs/software/webdcs/ANALYSIS/GIFpp_Analysis_Apr24
if [ "$2" == "efficiency" ]; then
python analyzeEfficiencyRun.py $1 RE2_2_NPD_BARC_8_C
python analyzeEfficiencyRun.py $1 RE2_2_NPD_BARC_9_C
python analyzeEfficiencyRun.py $1 RE4_2_CERN_165_C
python analyzeEfficiencyRun.py $1 RE4_2_CERN_166_C
python analyzeEfficiencyRun.py $1 KODELE
else
python analyzeNoiseRateRun.py $1 RE2_2_NPD_BARC_9_A
python analyzeNoiseRateRun.py $1 RE2_2_NPD_BARC_9_B
python analyzeNoiseRateRun.py $1 RE2_2_NPD_BARC_9_C
python analyzeNoiseRateRun.py $1 RE4_2_CERN_166_A
python analyzeNoiseRateRun.py $1 RE4_2_CERN_166_B
python analyzeNoiseRateRun.py $1 RE4_2_CERN_166_C
python analyzeNoiseRateRun.py $1 RE4_2_CERN_165_A
python analyzeNoiseRateRun.py $1 RE4_2_CERN_165_B
python analyzeNoiseRateRun.py $1 RE4_2_CERN_165_C
python analyzeNoiseRateRun.py $1 KODELE
fi
duration=$SECONDS
echo $duration