-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStartAnalysis.sh
More file actions
executable file
·53 lines (45 loc) · 1.27 KB
/
StartAnalysis.sh
File metadata and controls
executable file
·53 lines (45 loc) · 1.27 KB
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
#! /bin/bash
#
# Powerweek neutrale Pionen
# Zur Verfügung gestellt von AG Büsching
# IKF, Goethe Universität Frankfurt
echo "";
# Ordner fuer Bilder machen, Programm ausfuehren, Ordner 1 hoch wegen github
mkdir -p Reconstructed
rm Reconstruction_*
echo "Starte Reconstruction.C...";
root -q -l -b Reconstruction.C\+\(\)
cd ..
rm -r Reconstructed/
mv Beispielcode2/Reconstructed/ Reconstructed/
cd Beispielcode2
#
# mkdir -p Extraction
# rm Extraction_*
# echo "Starte Extraction.C...";
# root -q -l -b Extraction.C\+\(\)
# cd ..
# rm -r Extraction/
# mv Beispielcode2/Extraction/ Extraction/
# cd Beispielcode2
#
# mkdir -p P_T_Spectra
# rm P_TSpectrumExtraction_*
# echo "Starte P_TSpectrumExtraction.C...";
# root -q -l -b P_TSpectrumExtraction.C\+\(\)
# cd ..
# rm -r P_T_Spectra/
# mv Beispielcode2/P_T_Spectra/ P_T_Spectra/
# cd Beispielcode2
# Hier wird ein C++ Macro in root aufgerufen
# Das + bedeutet, dass wir den code kompilieren wollen (.C+),
# die \ werden nur verwendet, da einige symbole in bash
# "escaped" werden müssen
##################### To Be Modified
#if [ $DoCorrection = 1 ] ; then
# echo "";
# echo "Starte Correction.C...";
# option = "z.B."\,0\,8\,15\,"xD" # irgendeinSetting
# root -q -l -b Correction.C\+\(option\)
#fi
#.....