-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrun
executable file
·234 lines (194 loc) · 4.62 KB
/
run
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
#!/bin/bash
#----------------------------------------------------------------------------------------------------
function PrintUsage()
{
echo -e "USAGE: run <option> <src file> <option> <dir> <dir> ..."
echo -e "OPTIONS"
echo -e " -h, --help print this help and exit"
echo -e " -no-run, -dno do not run the program for any diagonal, just compile"
echo -e " -d45b_56t, -d45b run the program for diagonal 45b-56t"
echo -e " -d45t_56b, -d45t run the program for diagonal 45t-56b"
echo -e " -dboth run the program for both diagonals"
echo -e " -dc, -dcomb run the program in combined diagonals"
echo -e " -danti run the program in anti-diagonals"
echo -e " -O <option> pass the option to the program"
echo -e " -no-bckg do no run compilation and programs in background"
}
#----------------------------------------------------------------------------------------------------
diag_45b_56t="y"
diag_45t_56b="y"
diag_combined="y"
diag_45b_56b="n"
diag_45t_56t="n"
runInBackground="y"
rcIncompatibleDiagonal=123
#----------------------------------------------------------------------------------------------------
function RunOneDiagonal()
{
local tag="$1"
local dir="$2"
local par_more="$3"
local diag="$4"
local options="$5"
local optionsStr=""
if [ ! "$options" == "" ]
then
optionsStr=" ($options)"
fi
label="$tag @ $dir:$diag"
log="${tag}_${diag}.log_run"
echo "$label > running$optionsStr"
"./$exe_file" "$diag" $options &> "$log"
errCode="$?"
case "$errCode" in
0)
echo "$label > done"
;;
$rcIncompatibleDiagonal)
rm "$log"
;;
*)
echo "$label > run error ($errCode)"
if [ "$par_more" -eq 1 ]; then tail -n 5 "$log"; fi
;;
esac
}
#----------------------------------------------------------------------------------------------------
function RunOneDir()
{
local input="$1"
local src_file=".$input"
local tag="${input%.*}"
local exe_file=".$tag"
local dir="$2"
local par_more="$3"
local options="$4"
local top_dir=`pwd`
cp "$input" "$dir/$src_file"
cd "$dir"
echo "$tag @ $dir > compiling"
g++ -O3 -Wall -Wextra --std=c++11\
-I"$top_dir" \
`root-config --libs` -lMinuit -lMinuit2 `root-config --cflags` \
-I"$CMSSW_BASE/src" \
-I"/afs/cern.ch/cms/slc6_amd64_gcc481/external/fastjet/3.0.3/include" \
-L"$CMSSW_BASE/lib/slc6_amd64_gcc481" \
-lTotemAnalysisTotemNtuplizer \
"$src_file" -o "$exe_file" &> "$tag.log_compile"
# compilation error?
if [ $? -ne 0 ]
then
echo "$tag @ $dir > error in compilation"
if [ "$par_more" -eq 1 ]; then cat "$tag.log_compile"; fi
return
else
echo "$tag @ $dir > compiled"
fi
if [ ! -s "$tag.log_compile" ]
then
rm "$tag.log_compile"
fi
# run
if [ "$diag_45b_56t" == "y" ]
then
RunOneDiagonal "$tag" "$dir" "$par_more" "45b_56t" "$options" &
fi
if [ "$diag_45t_56b" == "y" ]
then
RunOneDiagonal "$tag" "$dir" "$par_more" "45t_56b" "$options" &
fi
if [ "$diag_combined" == "y" ]
then
RunOneDiagonal "$tag" "$dir" "$par_more" "combined" "$options" &
fi
if [ "$diag_45b_56b" == "y" ]
then
RunOneDiagonal "$tag" "$dir" "$par_more" "45b_56b" "$options" &
fi
if [ "$diag_45t_56t" == "y" ]
then
RunOneDiagonal "$tag" "$dir" "$par_more" "45t_56t" "$options" &
fi
}
#----------------------------------------------------------------------------------------------------
if [ $# -le 0 ]
then
PrintUsage
exit 1
fi
while [ -n "$1" ]
do
case "$1" in
"-h" | "--help")
PrintUsage
exit 1
;;
"-no-run" | "-dno")
diag_45b_56t="n"
diag_45t_56b="n"
diag_combined="n"
diag_45b_56b="n"
diag_45t_56t="n"
;;
"-d45b_56t" | "-d45b")
diag_45b_56t="y"
diag_45t_56b="n"
diag_combined="n"
;;
"-d45t_56b" | "-d45t")
diag_45b_56t="n"
diag_45t_56b="y"
diag_combined="n"
;;
"-dboth")
diag_45b_56t="y"
diag_45t_56b="y"
diag_combined="n"
;;
"-dc" | "-dcomb")
diag_45b_56t="n"
diag_45t_56b="n"
diag_combined="y"
;;
"-danti")
diag_45b_56t="n"
diag_45t_56b="n"
diag_combined="n"
diag_45b_56b="y"
diag_45t_56t="y"
;;
"-O")
shift
run_options="$1"
;;
"-no-bckg")
runInBackground="n"
;;
*)
if [ ! -d "$1" ]
then
if [ -s "$1" ]
then
src_file="$1"
else
echo "ERROR: '$1' is neither source file, neither directory neither parameter."
PrintUsage
exit 1
fi
else
if [ "$src_file" == "" ]
then
echo "ERROR: source file not defined, skipping directory '$1'."
else
if [ "$runInBackground" == "y" ]
then
RunOneDir "$src_file" "$1" "1" "$run_options" &
else
RunOneDir "$src_file" "$1" "1" "$run_options"
fi
fi
fi
;;
esac
shift
done