1 |
mocchiut |
1.1 |
// |
2 |
|
|
#include <iostream> |
3 |
|
|
#include <sstream> |
4 |
|
|
#include <errno.h> |
5 |
|
|
// |
6 |
|
|
#include <TSystem.h> |
7 |
|
|
// |
8 |
mocchiut |
1.17 |
#include <GLTables.h> |
9 |
mocchiut |
1.1 |
#include <PamelaDBOperations.h> |
10 |
|
|
#include <YodaProfilerVerl2.h> |
11 |
|
|
// |
12 |
|
|
using namespace std; |
13 |
|
|
// |
14 |
|
|
// Usage subroutine |
15 |
|
|
// |
16 |
|
|
void usage(){ |
17 |
|
|
printf("\nUsage:\n"); |
18 |
mocchiut |
1.2 |
printf("\n YodaProfiler [options] -rawFile raw_filename -yodaFile yoda_filename \n"); |
19 |
|
|
printf("\n -rawFile full path to the raw file\n"); |
20 |
mocchiut |
1.14 |
printf( " -yodaFile full path to the YODA file\n"); |
21 |
|
|
printf("\n Options are:\n\n"); |
22 |
|
|
printf(" --version print informations about compilation and exit\n"); |
23 |
|
|
printf(" -h | --help print this help and exit \n"); |
24 |
|
|
printf(" -v | --verbose be verbose [default]\n"); |
25 |
|
|
printf(" -s | --silent print nothing on STDOUT\n"); |
26 |
|
|
printf(" -g | --debug be very verbose [default: no]\n"); |
27 |
|
|
printf(" -boot number CPU boot number [default = taken from VarDump]\n"); |
28 |
|
|
printf(" -autoboot if no VarDump found try to determine the BOOT number\n"); |
29 |
|
|
printf(" looking at timesync [default]\n"); |
30 |
|
|
printf(" -no-autoboot disable previous check\n"); |
31 |
|
|
printf(" -tsync number timesync (s) [default = taken from data]\n"); |
32 |
|
|
printf(" -obt0 number obt at timesync (ms) [default = taken from data]\n"); |
33 |
mocchiut |
1.19 |
printf(" -dworbit number number is the downlink orbit number (to be used with non-standard names)\n"); |
34 |
mocchiut |
1.20 |
printf(" -static use static path inside the DB instead of symbolic names\n"); |
35 |
|
|
printf(" -gpamela shortcut to \"-clean 0 -obt0 1 -tsync 1 -no-autoboot -boot 1 -dworbit 1 -static\"\n"); |
36 |
mocchiut |
1.14 |
printf(" -clean number number in seconds after which the fragment table\n"); |
37 |
|
|
printf(" can be cleaned and runs validated [default = -1 do not clean],\n"); |
38 |
|
|
printf(" if 0 force cleaning immediatly, if negative do not clean\n"); |
39 |
|
|
printf(" -remove file remove file and all related runs and calibrations from DB\n"); |
40 |
|
|
printf(" file must be the YODA filename (full path is not needed)\n"); |
41 |
|
|
printf(" 'same' can be used if in conjuction with -yodaFile\n"); |
42 |
|
|
printf(" -validate file validates runs between the two closest calibration to file \n"); |
43 |
|
|
printf(" not belonging to file itself. File must be the YODA filename\n"); |
44 |
|
|
printf(" 'same' can be used if in conjuction with -yodaFile\n"); |
45 |
|
|
printf(" -cleanfrag file clean run fragments for file only\n"); |
46 |
|
|
printf(" File must be the YODA filename\n"); |
47 |
|
|
printf(" 'same' can be used if in conjuction with -yodaFile\n"); |
48 |
|
|
printf(" -nofrag do not leave runs in the fragment table and look for fragments\n"); |
49 |
|
|
printf(" in the GL_RUN table.\n"); |
50 |
|
|
printf(" -force to be used to reprocess a file or to process a file\n"); |
51 |
|
|
printf(" when already validated the surroundings, it is equivalent to:\n"); |
52 |
|
|
printf(" -remove same -validate same -cleanfrag same -nofrag\n"); |
53 |
mocchiut |
1.15 |
printf(" -check performs some test on the GL_RUN table to check its consistency\n"); |
54 |
mocchiut |
1.14 |
printf(" -host name of the DB host [default = $PAM_DBHOST or mysql://localhost/pamelaprod]\n"); |
55 |
|
|
printf(" -user username for the DB connection [default = $PAM_DBUSER or \"anonymous\"] \n"); |
56 |
|
|
printf(" -psw password for the DB connection [default = $PAM_DBPSW or \"\"]\n"); |
57 |
|
|
printf(" -tle <file> ascii file containing TLE obtained from celestrak.org or space-track.org [default = no]\n"); |
58 |
mocchiut |
1.2 |
printf("\n The order of input files and options does not matter. \n"); |
59 |
mocchiut |
1.14 |
printf("\n Example: \n"); |
60 |
mocchiut |
1.16 |
printf(" YodaProfiler -yodaFile /path/to/raw/files/000_000_00000_cln2.root -rawFile /path/to/filesfromyoda/000_000_00000_cln2.pam -v \n\n"); |
61 |
mocchiut |
1.1 |
}; |
62 |
|
|
// |
63 |
|
|
int main(int numinp, char *inps[]){ |
64 |
|
|
// |
65 |
|
|
// Variables booking |
66 |
|
|
// |
67 |
|
|
Int_t signal = 0; |
68 |
|
|
Int_t nul = 0; |
69 |
|
|
UInt_t boot = 0; |
70 |
|
|
UInt_t tsync = 0; |
71 |
|
|
UInt_t obt0 = 0; |
72 |
mocchiut |
1.18 |
UInt_t dwinput = 0; |
73 |
mocchiut |
1.12 |
Long64_t olderthan = -1LL; |
74 |
mocchiut |
1.1 |
// |
75 |
|
|
// |
76 |
pam-fi |
1.5 |
TString filerawname = ""; |
77 |
|
|
TString filerootname = ""; |
78 |
mocchiut |
1.1 |
// |
79 |
mocchiut |
1.3 |
TString host = "mysql://localhost/pamelaprod"; |
80 |
|
|
TString user = "anonymous"; |
81 |
|
|
TString password = ""; |
82 |
|
|
// |
83 |
mocchiut |
1.10 |
TString tlefilename = ""; |
84 |
mocchiut |
1.12 |
// |
85 |
mocchiut |
1.9 |
const char *pamdbhost = gSystem->Getenv("PAM_DBHOST"); |
86 |
|
|
const char *pamdbuser = gSystem->Getenv("PAM_DBUSER"); |
87 |
|
|
const char *pamdbpsw = gSystem->Getenv("PAM_DBPSW"); |
88 |
|
|
if ( !pamdbhost ) pamdbhost = ""; |
89 |
|
|
if ( !pamdbuser ) pamdbuser = ""; |
90 |
|
|
if ( !pamdbpsw ) pamdbpsw = ""; |
91 |
mocchiut |
1.3 |
if ( strcmp(pamdbhost,"") ) host = pamdbhost; |
92 |
|
|
if ( strcmp(pamdbuser,"") ) user = pamdbuser; |
93 |
mocchiut |
1.6 |
if ( strcmp(pamdbpsw,"") ) password = pamdbpsw; |
94 |
mocchiut |
1.1 |
// |
95 |
|
|
// |
96 |
mocchiut |
1.20 |
Bool_t staticp = false; |
97 |
mocchiut |
1.3 |
Bool_t beverbose = true; |
98 |
mocchiut |
1.1 |
Bool_t debug = false; |
99 |
mocchiut |
1.13 |
Bool_t autoboot = true; |
100 |
mocchiut |
1.19 |
Bool_t gpamela = false; |
101 |
mocchiut |
1.12 |
// |
102 |
|
|
Bool_t remove = false; |
103 |
|
|
TString remfile = ""; |
104 |
|
|
// |
105 |
|
|
Bool_t forceclean = false; |
106 |
|
|
TString fcleanfile = ""; |
107 |
|
|
// |
108 |
|
|
Bool_t validate = false; |
109 |
|
|
TString validfile = ""; |
110 |
|
|
// |
111 |
|
|
Bool_t nofrag = false; |
112 |
|
|
// |
113 |
|
|
Bool_t force = false; |
114 |
mocchiut |
1.10 |
// |
115 |
mocchiut |
1.15 |
Bool_t check = false; |
116 |
|
|
// |
117 |
mocchiut |
1.1 |
Int_t i = 0; |
118 |
|
|
// |
119 |
|
|
if ( numinp > 1 ){ |
120 |
|
|
while ( i < numinp ){ |
121 |
|
|
if ( !strcmp(inps[i],"--version") ){ |
122 |
|
|
YodaProfilerInfo(true); |
123 |
|
|
exit(0); |
124 |
|
|
}; |
125 |
|
|
if ( !strcmp(inps[i],"-h") || !strcmp(inps[i],"--help") ){ |
126 |
pam-fi |
1.5 |
|
127 |
mocchiut |
1.1 |
usage(); |
128 |
|
|
exit(0); |
129 |
|
|
}; |
130 |
|
|
if ( !strcmp(inps[i],"-rawFile") ) { |
131 |
|
|
if ( numinp-1 < i+1 ){ |
132 |
|
|
usage(); |
133 |
|
|
exit(1); |
134 |
|
|
}; |
135 |
|
|
filerawname = (TString)inps[i+1]; |
136 |
|
|
}; |
137 |
|
|
if ( !strcmp(inps[i],"-yodaFile") ) { |
138 |
|
|
if ( numinp-1 < i+1 ){ |
139 |
|
|
usage(); |
140 |
|
|
exit(1); |
141 |
|
|
}; |
142 |
|
|
filerootname = (TString)inps[i+1]; |
143 |
|
|
}; |
144 |
mocchiut |
1.12 |
if ( !strcmp(inps[i],"-remove") ) { |
145 |
|
|
if ( numinp-1 < i+1 ){ |
146 |
|
|
usage(); |
147 |
|
|
exit(1); |
148 |
|
|
}; |
149 |
|
|
remfile = (TString)inps[i+1]; |
150 |
|
|
remove = true; |
151 |
|
|
}; |
152 |
|
|
if ( !strcmp(inps[i],"-cleanfrag") ) { |
153 |
|
|
if ( numinp-1 < i+1 ){ |
154 |
|
|
usage(); |
155 |
|
|
exit(1); |
156 |
|
|
}; |
157 |
|
|
fcleanfile = (TString)inps[i+1]; |
158 |
|
|
forceclean = true; |
159 |
|
|
}; |
160 |
|
|
if ( !strcmp(inps[i],"-validate") ) { |
161 |
|
|
if ( numinp-1 < i+1 ){ |
162 |
|
|
usage(); |
163 |
|
|
exit(1); |
164 |
|
|
}; |
165 |
|
|
validfile = (TString)inps[i+1]; |
166 |
|
|
validate = true; |
167 |
|
|
}; |
168 |
mocchiut |
1.19 |
if ( !strcmp(inps[i],"-gpamela") ) { |
169 |
|
|
gpamela = true; |
170 |
|
|
}; |
171 |
mocchiut |
1.20 |
if ( !strcmp(inps[i],"-static") ) { |
172 |
|
|
staticp = true; |
173 |
|
|
}; |
174 |
mocchiut |
1.13 |
if ( !strcmp(inps[i],"-autoboot") ) { |
175 |
|
|
autoboot = true; |
176 |
|
|
}; |
177 |
|
|
if ( !strcmp(inps[i],"-no-autoboot") ) { |
178 |
|
|
autoboot = false; |
179 |
|
|
}; |
180 |
mocchiut |
1.1 |
if ( !strcmp(inps[i],"-boot") ) { |
181 |
|
|
if ( numinp-1 < i+1 ){ |
182 |
|
|
usage(); |
183 |
|
|
exit(1); |
184 |
|
|
}; |
185 |
|
|
boot = atoi(inps[i+1]); |
186 |
|
|
}; |
187 |
|
|
if ( !strcmp(inps[i],"-tsync") ) { |
188 |
|
|
if ( numinp-1 < i+1 ){ |
189 |
|
|
usage(); |
190 |
|
|
exit(1); |
191 |
|
|
}; |
192 |
mocchiut |
1.2 |
tsync = (UInt_t)atoll(inps[i+1]); |
193 |
mocchiut |
1.1 |
}; |
194 |
|
|
if ( !strcmp(inps[i],"-obt0") ) { |
195 |
|
|
if ( numinp-1 < i+1 ){ |
196 |
|
|
usage(); |
197 |
|
|
exit(1); |
198 |
|
|
}; |
199 |
mocchiut |
1.2 |
obt0 = (UInt_t)atoll(inps[i+1]); |
200 |
|
|
}; |
201 |
mocchiut |
1.18 |
if ( !strcmp(inps[i],"-dworbit") ) { |
202 |
|
|
if ( numinp-1 < i+1 ){ |
203 |
|
|
usage(); |
204 |
|
|
exit(1); |
205 |
|
|
}; |
206 |
|
|
dwinput = (UInt_t)atoll(inps[i+1]); |
207 |
|
|
}; |
208 |
mocchiut |
1.2 |
if ( !strcmp(inps[i],"-clean") ) { |
209 |
|
|
if ( numinp-1 < i+1 ){ |
210 |
|
|
usage(); |
211 |
|
|
exit(1); |
212 |
|
|
}; |
213 |
|
|
olderthan = (Long64_t)atoll(inps[i+1]); |
214 |
mocchiut |
1.1 |
}; |
215 |
|
|
if ( !strcmp(inps[i],"-host") ) { |
216 |
|
|
if ( numinp-1 < i+1 ){ |
217 |
|
|
usage(); |
218 |
|
|
exit(1); |
219 |
|
|
}; |
220 |
|
|
host = (TString)inps[i+1]; |
221 |
|
|
}; |
222 |
|
|
if ( !strcmp(inps[i],"-user") ) { |
223 |
|
|
if ( numinp-1 < i+1 ){ |
224 |
|
|
usage(); |
225 |
|
|
exit(1); |
226 |
|
|
}; |
227 |
|
|
user = (TString)inps[i+1]; |
228 |
|
|
}; |
229 |
|
|
if ( !strcmp(inps[i],"-psw") ) { |
230 |
|
|
if ( numinp-1 < i+1 ){ |
231 |
|
|
usage(); |
232 |
|
|
exit(1); |
233 |
|
|
}; |
234 |
|
|
password = (TString)inps[i+1]; |
235 |
|
|
}; |
236 |
mocchiut |
1.10 |
if ( !strcmp(inps[i],"-tle") ) { |
237 |
|
|
if ( numinp-1 < i+1 ){ |
238 |
|
|
usage(); |
239 |
|
|
exit(1); |
240 |
|
|
}; |
241 |
|
|
tlefilename = (TString)inps[i+1]; |
242 |
|
|
}; |
243 |
mocchiut |
1.1 |
// |
244 |
|
|
if ( !strcmp(inps[i],"-v") || !strcmp(inps[i],"--verbose") ) beverbose = true; |
245 |
|
|
// |
246 |
mocchiut |
1.3 |
if ( !strcmp(inps[i],"-s") || !strcmp(inps[i],"--silent") ) beverbose = false; |
247 |
|
|
// |
248 |
mocchiut |
1.1 |
if ( !strcmp(inps[i],"-g") || !strcmp(inps[i],"--debug") ) debug = true; |
249 |
|
|
// |
250 |
mocchiut |
1.12 |
if ( !strcmp(inps[i],"-f") || !strcmp(inps[i],"-force") ) force = true; |
251 |
|
|
// |
252 |
|
|
if ( !strcmp(inps[i],"-nofrag") ) nofrag = true; |
253 |
|
|
// |
254 |
mocchiut |
1.15 |
if ( !strcmp(inps[i],"-check") ) check = true; |
255 |
|
|
// |
256 |
mocchiut |
1.1 |
i++; |
257 |
|
|
}; |
258 |
|
|
} else { |
259 |
|
|
// |
260 |
|
|
// no input parameters exit with error, we need at least the run id. |
261 |
|
|
// |
262 |
|
|
cout << "\n ERROR: NO INPUT PARAMETERS \n"; |
263 |
|
|
usage(); |
264 |
|
|
exit(1); |
265 |
|
|
}; |
266 |
|
|
|
267 |
|
|
// |
268 |
|
|
// If not in verbose mode redirect to /dev/null the stdout and stderr |
269 |
|
|
// |
270 |
|
|
if ( !beverbose ){ |
271 |
|
|
nul = open("/dev/null", O_CREAT | O_RDWR,S_IREAD | S_IWRITE); |
272 |
|
|
dup2(nul,1); |
273 |
|
|
dup2(nul,2); |
274 |
|
|
}; |
275 |
|
|
// |
276 |
mocchiut |
1.12 |
if ( !strcmp(filerootname.Data(),"") ){ |
277 |
|
|
if ( (validate && !strcmp(validfile.Data(),"same")) || |
278 |
|
|
(remove && !strcmp(remfile.Data(),"same")) || |
279 |
|
|
(forceclean && !strcmp(fcleanfile.Data(),"same")) || force ){ |
280 |
|
|
printf("\n ERROR IN INPUT PARAMETERS \n"); |
281 |
|
|
usage(); |
282 |
|
|
exit(1); |
283 |
|
|
}; |
284 |
|
|
} else { |
285 |
|
|
if ( validate && !strcmp(validfile.Data(),"same") ) validfile = (TString)gSystem->BaseName(filerootname.Data()); |
286 |
|
|
if ( remove && !strcmp(remfile.Data(),"same") ) remfile = (TString)gSystem->BaseName(filerootname.Data()); |
287 |
|
|
if ( forceclean && !strcmp(fcleanfile.Data(),"same") ) fcleanfile = (TString)gSystem->BaseName(filerootname.Data()); |
288 |
|
|
}; |
289 |
|
|
// |
290 |
|
|
if ( force ){ |
291 |
|
|
nofrag = true; |
292 |
|
|
forceclean = true; |
293 |
|
|
remove = true; |
294 |
|
|
validate = true; |
295 |
|
|
fcleanfile = (TString)gSystem->BaseName(filerootname.Data()); |
296 |
|
|
remfile = fcleanfile; |
297 |
|
|
validfile = fcleanfile; |
298 |
|
|
}; |
299 |
mocchiut |
1.20 |
|
300 |
|
|
const char *paml0 = gSystem->Getenv("PAM_L0"); |
301 |
|
|
const char *paml2 = gSystem->Getenv("PAM_L2"); |
302 |
|
|
const char *pamraw = gSystem->Getenv("PAM_RAW"); |
303 |
|
|
if ( !paml0 || !paml2 || !pamraw ){ |
304 |
|
|
printf(" WARNING: to use symbolic paths in DB you must set up PAM_L0, PAM_L2 and PAM_RAW env var!\n Using static paths\n"); |
305 |
|
|
staticp = true; |
306 |
|
|
}; |
307 |
mocchiut |
1.19 |
if ( gpamela ){ |
308 |
|
|
// -clean 0 -obt0 1 -tsync 1 -boot 1 -dworbit 1 |
309 |
|
|
if ( olderthan < 0LL ) olderthan = 0LL; |
310 |
|
|
if ( !obt0 ) obt0 = 1; |
311 |
|
|
if ( !tsync ) tsync = 1; |
312 |
|
|
if ( !boot ) boot = 1; |
313 |
|
|
if ( !dwinput ) dwinput = 1; |
314 |
mocchiut |
1.20 |
staticp = true; |
315 |
mocchiut |
1.19 |
autoboot = false; |
316 |
|
|
}; |
317 |
mocchiut |
1.12 |
// |
318 |
mocchiut |
1.20 |
if ( filerawname == "" && filerootname != "" ){ |
319 |
|
|
filerawname = "/not_given/"+(TString)gSystem->BaseName(filerootname.Data()); |
320 |
|
|
filerawname = filerawname.ReplaceAll(".root",5,".pam",4); |
321 |
|
|
// printf("filerawname %s \n",filerawname.Data()); |
322 |
|
|
}; |
323 |
|
|
// |
324 |
mocchiut |
1.1 |
// Start: |
325 |
|
|
// |
326 |
mocchiut |
1.17 |
GL_TABLES *glt = new GL_TABLES(host,user,password); |
327 |
|
|
// |
328 |
mocchiut |
1.1 |
TString message; |
329 |
|
|
char *version = YodaProfilerInfo(false); |
330 |
|
|
PamelaDBOperations *pamDB = 0; |
331 |
mocchiut |
1.12 |
UInt_t sizeofwar = 12; |
332 |
|
|
UInt_t WAR[12]; |
333 |
|
|
memset(WAR, 0, sizeofwar*sizeof(UInt_t)); |
334 |
mocchiut |
1.1 |
// |
335 |
mocchiut |
1.2 |
printf("\n Welcome to the PAMELA YodaProfiler, version %s \n\n",version); |
336 |
mocchiut |
1.1 |
try{ |
337 |
|
|
// |
338 |
|
|
//------------------------------------------------------------------------------------------- |
339 |
|
|
// Create pamDB object and open SQL connection |
340 |
|
|
//------------------------------------------------------------------------------------------- |
341 |
mocchiut |
1.2 |
if ( beverbose ) printf(" 1 => Initialize and open SQL connection \n"); |
342 |
mocchiut |
1.20 |
pamDB = new PamelaDBOperations(host,user,password,filerawname,filerootname,boot,tsync,obt0,debug,tlefilename,dwinput,staticp); |
343 |
mocchiut |
1.7 |
pamDB->CheckConnection(); |
344 |
|
|
//------------------------------------------------------------------------------------------- |
345 |
mocchiut |
1.1 |
// |
346 |
mocchiut |
1.12 |
pamDB->SetNoFrag(nofrag); |
347 |
mocchiut |
1.13 |
pamDB->SetAutoBoot(autoboot); |
348 |
mocchiut |
1.12 |
// |
349 |
|
|
if ( remove ){ |
350 |
|
|
//------------------------------------------------------------------------------------------- |
351 |
|
|
// Remove a file and, on cascade, all that follows from the DB |
352 |
|
|
//------------------------------------------------------------------------------------------- |
353 |
|
|
if ( beverbose ) printf(" X => Remove file %s from DB \n",((TString)gSystem->BaseName(remfile)).Data()); |
354 |
|
|
WAR[11] = pamDB->removeFile((TString)gSystem->BaseName(remfile.Data())); |
355 |
|
|
//------------------------------------------------------------------------------------------- |
356 |
|
|
}; |
357 |
|
|
// |
358 |
|
|
if( pamDB->InsertRaw() ){ |
359 |
mocchiut |
1.7 |
//------------------------------------------------------------------------------------------- |
360 |
|
|
//Insert a Raw file in GL_RAW |
361 |
|
|
//------------------------------------------------------------------------------------------- |
362 |
|
|
if ( beverbose ) printf(" 2 => Insert a RAW file in GL_RAW \n"); |
363 |
|
|
WAR[0] = pamDB->insertPamelaRawFile(); |
364 |
|
|
//------------------------------------------------------------------------------------------- |
365 |
|
|
}; |
366 |
mocchiut |
1.12 |
// |
367 |
|
|
if( pamDB->InsertRoot() ){ |
368 |
|
|
// |
369 |
|
|
if( !pamDB->InsertRaw() )printf("=> RAW file not inserted --- the DB might not ( yet ) be filled correctly \n"); |
370 |
mocchiut |
1.7 |
pamDB->CheckFile(); |
371 |
|
|
// |
372 |
|
|
//------------------------------------------------------------------------------------------- |
373 |
|
|
//Insert an entry in GL_TIMESYNC |
374 |
|
|
//------------------------------------------------------------------------------------------- |
375 |
mocchiut |
1.13 |
if ( beverbose ) printf(" 3 => Insert an entry in GL_TIMESYNC \n"); |
376 |
mocchiut |
1.7 |
WAR[1] = pamDB->insertPamelaGL_TIMESYNC(); |
377 |
|
|
//------------------------------------------------------------------------------------------- |
378 |
|
|
// |
379 |
mocchiut |
1.13 |
//------------------------------------------------------------------------------------------- |
380 |
|
|
//Update a single GL_RAW record with its BOOT_NUMBER |
381 |
|
|
//------------------------------------------------------------------------------------------- |
382 |
|
|
if ( beverbose ) printf(" 4 => Update a single GL_RAW record with its BOOT_NUMBER \n"); |
383 |
|
|
WAR[3] = pamDB->assignBOOT_NUMBER(); |
384 |
|
|
if ( WAR[3] && WAR[3] != 1 && WAR[3] != 8 ) throw -9; |
385 |
|
|
//------------------------------------------------------------------------------------------- |
386 |
|
|
// |
387 |
mocchiut |
1.7 |
//------------------------------------------------------------------------------------------- |
388 |
|
|
//Insert unpack ROOT file in GL_ROOT |
389 |
|
|
//------------------------------------------------------------------------------------------- |
390 |
|
|
if ( beverbose ) printf(" 5 => Insert unpack ROOT file in GL_ROOT \n"); |
391 |
|
|
WAR[2] = pamDB->insertPamelaRootFile(); |
392 |
|
|
//------------------------------------------------------------------------------------------- |
393 |
|
|
// |
394 |
|
|
//------------------------------------------------------------------------------------------- |
395 |
|
|
//Insert in GL_RUN runs information records relative to a single unpack |
396 |
|
|
//------------------------------------------------------------------------------------------- |
397 |
|
|
if ( beverbose ) printf(" 6 => Scan physics and store runs in the GL_RUN table\n"); |
398 |
|
|
WAR[4] = pamDB->insertPamelaRUN(); |
399 |
|
|
//------------------------------------------------------------------------------------------- |
400 |
pam-fi |
1.5 |
|
401 |
mocchiut |
1.7 |
//------------------------------------------------------------------------------------------- |
402 |
|
|
//Insert in GL_CALO_CALIB calibration information records relative to a single unpack |
403 |
|
|
//------------------------------------------------------------------------------------------- |
404 |
|
|
if ( beverbose ) printf(" 7 => Insert calorimeter calibrations in the GL_CALO_CALIB table\n"); |
405 |
|
|
WAR[5] = pamDB->insertCALO_CALIB(); |
406 |
|
|
//------------------------------------------------------------------------------------------- |
407 |
pam-fi |
1.5 |
|
408 |
mocchiut |
1.7 |
//------------------------------------------------------------------------------------------- |
409 |
|
|
//Insert in GL_TRK_CALIB calibration information records relative to a single unpack |
410 |
|
|
//------------------------------------------------------------------------------------------- |
411 |
|
|
if ( beverbose ) printf(" 8 => Insert tracker calibrations in the GL_TRK_CALIB table\n"); |
412 |
|
|
WAR[6] = pamDB->insertTRK_CALIB(); |
413 |
|
|
//------------------------------------------------------------------------------------------- |
414 |
pam-fi |
1.5 |
|
415 |
mocchiut |
1.7 |
//------------------------------------------------------------------------------------------- |
416 |
|
|
//Insert in GL_S4_CALIB calibration information records relative to a single unpack |
417 |
|
|
//------------------------------------------------------------------------------------------- |
418 |
|
|
if ( beverbose ) printf(" 9 => Insert S4 calibrations in the GL_S4_CALIB table\n"); |
419 |
|
|
WAR[7] = pamDB->insertS4_CALIB(); |
420 |
|
|
//------------------------------------------------------------------------------------------- |
421 |
|
|
}; |
422 |
|
|
// |
423 |
mocchiut |
1.12 |
if ( forceclean ){ |
424 |
|
|
//------------------------------------------------------------------------------------------- |
425 |
|
|
//Clean the GL_RUN_FRAGMENTS for the given file |
426 |
|
|
//------------------------------------------------------------------------------------------- |
427 |
|
|
if ( beverbose ) printf(" 10 => Clean the GL_RUN_FRAGMENTS table for file %s \n",fcleanfile.Data()); |
428 |
|
|
WAR[8] = pamDB->CleanGL_RUN_FRAGMENTS((TString)gSystem->BaseName(fcleanfile.Data())); |
429 |
|
|
}; |
430 |
|
|
// |
431 |
|
|
// |
432 |
|
|
if ( validate ){ |
433 |
|
|
//------------------------------------------------------------------------------------------- |
434 |
|
|
//Validate runs |
435 |
|
|
//------------------------------------------------------------------------------------------- |
436 |
|
|
if ( beverbose ) printf(" 11 => Validate runs table for file %s \n",validfile.Data()); |
437 |
|
|
WAR[9] = pamDB->ValidateRuns((TString)gSystem->BaseName(validfile.Data())); |
438 |
|
|
//------------------------------------------------------------------------------------------- |
439 |
|
|
}; |
440 |
|
|
// |
441 |
mocchiut |
1.7 |
pamDB->CheckValidate(olderthan); |
442 |
|
|
// |
443 |
mocchiut |
1.12 |
if( pamDB->Validate() ){ |
444 |
mocchiut |
1.7 |
//------------------------------------------------------------------------------------------- |
445 |
|
|
//Clean the GL_RUN_FRAGMENTS |
446 |
|
|
//------------------------------------------------------------------------------------------- |
447 |
mocchiut |
1.8 |
if ( beverbose ) printf(" 10 => Clean the GL_RUN_FRAGMENTS table (earlier than %s) \n",pamDB->GetCleanTime() ); |
448 |
mocchiut |
1.7 |
WAR[8] = pamDB->CleanGL_RUN_FRAGMENTS(); |
449 |
mocchiut |
1.12 |
//------------------------------------------------------------------------------------------- |
450 |
mocchiut |
1.7 |
//------------------------------------------------------------------------------------------- |
451 |
|
|
//Validate runs |
452 |
|
|
//------------------------------------------------------------------------------------------- |
453 |
mocchiut |
1.8 |
if ( beverbose ) printf(" 11 => Validate runs (earlier than %s)\n",pamDB->GetCleanTime()); |
454 |
mocchiut |
1.7 |
WAR[9] = pamDB->ValidateRuns(); |
455 |
|
|
//------------------------------------------------------------------------------------------- |
456 |
|
|
}; |
457 |
mocchiut |
1.10 |
|
458 |
|
|
if(! tlefilename.IsNull() ) { |
459 |
|
|
//---------------------------------------------- |
460 |
|
|
//Populate GL_TLE table using the file provided |
461 |
|
|
//---------------------------------------------- |
462 |
|
|
if ( beverbose ) printf(" 12 => Insert TLE elements in the GL_TLE table from file %s \n",tlefilename.Data()); |
463 |
|
|
WAR[10] = pamDB->populateTLE(); |
464 |
|
|
} |
465 |
mocchiut |
1.15 |
|
466 |
|
|
if ( check ){ |
467 |
|
|
//---------------------------------------------- |
468 |
|
|
//Check GL_RUN table consistency |
469 |
|
|
//---------------------------------------------- |
470 |
|
|
if ( beverbose ) printf(" 13 => Check GL_RUN table consistency\n"); |
471 |
|
|
UInt_t ch = pamDB->Check(); |
472 |
|
|
if ( !ch ){ |
473 |
|
|
printf(" GL_RUN table seems ok!\n"); |
474 |
|
|
} else { |
475 |
|
|
printf(" Problems found in the GL_RUN table!\n"); |
476 |
|
|
}; |
477 |
|
|
}; |
478 |
pam-fi |
1.5 |
|
479 |
mocchiut |
1.1 |
} catch (Int_t exc) { |
480 |
|
|
signal = exc; |
481 |
|
|
switch(exc){ |
482 |
|
|
case -1: message += " DB connection failure"; break; |
483 |
|
|
case -2: message += " Connection failure"; break; |
484 |
|
|
case -3: message += " Cannot determine the timesync, use the -tsync and -obt0 options to override"; break; |
485 |
|
|
case -4: message += " Error querying DB"; break; |
486 |
|
|
case -5: message += " Inconsistent OBT/pkt_num"; break; |
487 |
|
|
case -6: message += " The file is not in the database"; break; |
488 |
mocchiut |
1.10 |
case -7: message += " Cannot open TLE file"; break; |
489 |
mocchiut |
1.1 |
case -8: message += " Event file is empty"; break; |
490 |
|
|
case -9: message += " No VarDump no BOOT number, use the -boot option to override"; break; |
491 |
|
|
case -10: message += " No results from DB"; break; |
492 |
|
|
case -11: message += " Raw file not found"; break; |
493 |
|
|
case -12: message += " Cannot open Level0 file"; break; |
494 |
|
|
case -13: message += " No consistent OBT/PKT_NUM information"; break; |
495 |
|
|
case -14: message += " Not supported yet: run with no events, no runtrailer, no runheader"; break; |
496 |
|
|
case -15: message += " Not supported yet: run with no runheader at the beginning/end of file not recognized as run fragment"; break; |
497 |
|
|
case -16: message += " No Physics tree in Level0 file"; break; |
498 |
|
|
case -17: message += " No RunHeader tree in Level0 file"; break; |
499 |
|
|
case -18: message += " No RunTrailer tree in Level0 file"; break; |
500 |
|
|
case -19: message += " No Mcmd tree in Level0 file"; break; |
501 |
|
|
case -20: message += " No VarDump tree in Level0 file"; break; |
502 |
|
|
case -21: message += " No CalibCalPed tree in Level0 file"; break; |
503 |
|
|
case -22: message += " No CalibTrk1 tree in Level0 file"; break; |
504 |
|
|
case -23: message += " No CalibTrk2 tree in Level0 file"; break; |
505 |
|
|
case -24: message += " No CalibS4 tree in Level0 file"; break; |
506 |
mocchiut |
1.2 |
case -25: message += " Cannot find the run just inserted"; break; |
507 |
|
|
case -26: message += " Raw file not found looking for VarDump"; break; |
508 |
mocchiut |
1.11 |
case -27: message += " Cannot determine downlink orbit, wrong filename format?"; break; |
509 |
|
|
case -28: message += " Cannot assign a RUN ID unique number!"; break; |
510 |
mocchiut |
1.13 |
case -29: message += " No VarDump and impossible to find a consistent BOOT number, use the -boot option to override"; break; |
511 |
mocchiut |
1.1 |
default: message += " Unidentified error"; break; |
512 |
|
|
}; |
513 |
|
|
printf("\n"); |
514 |
|
|
printf(" ERROR (%i) %s \n",exc,message.Data()); |
515 |
|
|
printf("\n"); |
516 |
|
|
} |
517 |
|
|
// |
518 |
|
|
// warnings handlers |
519 |
|
|
// |
520 |
|
|
Bool_t printwarning = false; |
521 |
|
|
message=""; |
522 |
|
|
for (UInt_t j=0; j<sizeofwar; j++){ |
523 |
|
|
if ( WAR[j] ){ |
524 |
|
|
printwarning = true; |
525 |
|
|
// |
526 |
|
|
if ( j == 0 ){ // insertPamelaRaw warnings |
527 |
|
|
for (UInt_t bit=0; bit<32; bit++){ |
528 |
|
|
if ( WAR[j] & (1 << bit) ){ |
529 |
|
|
if ( bit == 0 ) message += "=> RAW file already inserted\n"; |
530 |
mocchiut |
1.2 |
else message += "=> Unidentified insertPamelaRaw warning\n"; |
531 |
mocchiut |
1.1 |
}; |
532 |
|
|
}; |
533 |
|
|
}; |
534 |
|
|
// |
535 |
|
|
if ( j == 1 ){ // insertTimeSync warnings |
536 |
|
|
for (UInt_t bit=0; bit<32; bit++){ |
537 |
|
|
if ( WAR[j] & (1 << bit) ){ |
538 |
|
|
if ( bit == 0 ) message += "=> TIMESYNC already inserted\n"; |
539 |
mocchiut |
1.2 |
else if ( bit == 1 ) message += "=> No mcmd timesync in the file\n"; |
540 |
|
|
else if ( bit == 2 ) message += "=> No runheaders in the file\n"; |
541 |
|
|
else if ( bit == 3 ) message += "=> No runtrailers in the file\n"; |
542 |
|
|
else if ( bit == 4 ) message += "=> No mcmd inclination in the file\n"; |
543 |
|
|
else message += "=> Unidentified insertTimeSync warning\n"; |
544 |
mocchiut |
1.1 |
}; |
545 |
|
|
}; |
546 |
|
|
}; |
547 |
|
|
// |
548 |
|
|
if ( j == 2 ){ // insertPamelaRoot warnings |
549 |
|
|
for (UInt_t bit=0; bit<32; bit++){ |
550 |
|
|
if ( WAR[j] & (1 << bit) ){ |
551 |
|
|
if ( bit == 0 ) message += "=> ROOT file already inserted\n"; |
552 |
mocchiut |
1.2 |
else message += "=> Unidentified insertPamelaRoot warning\n"; |
553 |
mocchiut |
1.1 |
}; |
554 |
|
|
}; |
555 |
|
|
}; |
556 |
|
|
// |
557 |
|
|
if ( j == 3 ){ // assignBOOTnumber warnings |
558 |
|
|
for (UInt_t bit=0; bit<32; bit++){ |
559 |
|
|
if ( WAR[j] & (1 << bit) ){ |
560 |
mocchiut |
1.2 |
if ( bit == 0 ) message += "=> BOOT number already inserted\n";// |
561 |
|
|
else if ( bit == 1 ) message += "=> VarDump event tree is empty, use the -boot option to override\n";// |
562 |
|
|
else if ( bit == 2 ) message += "=> No BOOT number in VarDump(!), use the -boot option to override\n";// |
563 |
mocchiut |
1.13 |
else if ( bit == 3 ) message += "=> No VarDump! autoboot option used\n";// |
564 |
mocchiut |
1.2 |
else if ( bit == 4 ) message += "=> The file is not in the database looking for VarDump, use the -boot option to override\n";// |
565 |
|
|
else message += "=> Unidentified assignBOOTnumber warning\n"; |
566 |
mocchiut |
1.1 |
}; |
567 |
|
|
}; |
568 |
|
|
}; |
569 |
|
|
// |
570 |
|
|
if ( j == 4 ){ // insertPamelaRUN |
571 |
|
|
for (UInt_t bit=0; bit<32; bit++){ |
572 |
|
|
if ( WAR[j] & (1 << bit) ){ |
573 |
mocchiut |
1.2 |
if ( bit == 0 ) message += "=> Inconsistent PKT/OBT sequence\n"; |
574 |
|
|
else if ( bit == 1 ) message += "=> No physics events in the file\n"; |
575 |
|
|
else if ( bit == 2 ) message += "=> Less than 2 physics events in the file\n"; |
576 |
|
|
else message += "=> Unidentified insertPamelaRun warning\n"; |
577 |
mocchiut |
1.1 |
}; |
578 |
|
|
}; |
579 |
|
|
}; |
580 |
|
|
// |
581 |
|
|
if ( j == 5 ){ // insertCALO_CALIB |
582 |
|
|
for (UInt_t bit=0; bit<32; bit++){ |
583 |
|
|
if ( WAR[j] & (1 << bit) ){ |
584 |
mocchiut |
1.2 |
if ( bit == 0 ) message += "=> No calorimeter calibrations in the file\n"; |
585 |
|
|
else message += "=> Unidentified insertCaloCalib warning\n"; |
586 |
mocchiut |
1.1 |
}; |
587 |
|
|
}; |
588 |
|
|
}; |
589 |
|
|
// |
590 |
|
|
// |
591 |
|
|
if ( j == 6 ){ // insertTRACKER_CALIB |
592 |
|
|
for (UInt_t bit=0; bit<32; bit++){ |
593 |
|
|
if ( WAR[j] & (1 << bit) ){ |
594 |
mocchiut |
1.2 |
if ( bit == 0 ) message += "=> No tracker calibrations in the file\n"; |
595 |
|
|
else message += "=> Unidentified insertTrkCalib warning\n"; |
596 |
mocchiut |
1.1 |
}; |
597 |
|
|
}; |
598 |
|
|
}; |
599 |
|
|
// |
600 |
|
|
// |
601 |
|
|
if ( j == 7 ){ // insertS4_CALIB |
602 |
|
|
for (UInt_t bit=0; bit<32; bit++){ |
603 |
|
|
if ( WAR[j] & (1 << bit) ){ |
604 |
mocchiut |
1.2 |
if ( bit == 0 ) message += "=> No s4 calibrations in the file\n"; |
605 |
|
|
else message += "=> Unidentified insertS4calib warning\n"; |
606 |
|
|
}; |
607 |
|
|
}; |
608 |
|
|
}; |
609 |
|
|
// |
610 |
|
|
// |
611 |
|
|
if ( j == 8 ){ // CleanGL_RUN_FRAGMENTS |
612 |
|
|
for (UInt_t bit=0; bit<32; bit++){ |
613 |
|
|
if ( WAR[j] & (1 << bit) ){ |
614 |
|
|
if ( bit == 0 ) message += "=> Skip the GL_RUN_FRAGMENTS table cleaning\n"; |
615 |
mocchiut |
1.12 |
if ( bit == 1 ) message += "=> Problems retrieving ROOT ID from DB\n"; |
616 |
mocchiut |
1.2 |
else message += "=> Unidentified CleanGL_RUN_FRAGMENTS warning\n"; |
617 |
mocchiut |
1.1 |
}; |
618 |
|
|
}; |
619 |
|
|
}; |
620 |
|
|
// |
621 |
mocchiut |
1.2 |
if ( j == 9 ){ // ValidateRuns |
622 |
|
|
for (UInt_t bit=0; bit<32; bit++){ |
623 |
|
|
if ( WAR[j] & (1 << bit) ){ |
624 |
|
|
if ( bit == 0 ) message += "=> Skip the run validation \n"; |
625 |
mocchiut |
1.12 |
if ( bit == 1 ) message += "=> Problems retrieving ROOT ID from DB\n"; |
626 |
mocchiut |
1.2 |
else message += "=> Unidentified ValidateRuns warning\n"; |
627 |
|
|
}; |
628 |
|
|
}; |
629 |
|
|
}; |
630 |
mocchiut |
1.10 |
// |
631 |
|
|
if ( j == 10 ){ // populateTLE |
632 |
|
|
for (UInt_t bit=0; bit<32; bit++){ |
633 |
|
|
if ( WAR[j] & (1 << bit) ){ |
634 |
|
|
if ( bit == 0 ) message += "=> TLE insertion failed\n"; |
635 |
|
|
if ( bit == 1 ) message += "=> No new TLE available\n"; |
636 |
|
|
else message += "=> Unidentified populateTle warning\n"; |
637 |
|
|
}; |
638 |
|
|
}; |
639 |
|
|
}; |
640 |
mocchiut |
1.12 |
// |
641 |
|
|
if ( j == 11 ){ // removeFile |
642 |
|
|
for (UInt_t bit=0; bit<32; bit++){ |
643 |
|
|
if ( WAR[j] & (1 << bit) ){ |
644 |
|
|
if ( bit == 0 ) message += "=> No file to delete from DB \n"; |
645 |
|
|
else message += "=> Unidentified populateTle warning\n"; |
646 |
|
|
}; |
647 |
|
|
}; |
648 |
|
|
}; |
649 |
mocchiut |
1.1 |
}; |
650 |
|
|
}; |
651 |
|
|
// |
652 |
|
|
if ( printwarning ){ |
653 |
|
|
printf("\n"); |
654 |
|
|
printf(" WARNING(s):\n%s\n",message.Data()); |
655 |
|
|
printf("\n"); |
656 |
|
|
if ( !signal ) signal = 1; |
657 |
|
|
}; |
658 |
|
|
// |
659 |
|
|
//--------------------------------------------------------------------------------------- |
660 |
|
|
// Close and exit |
661 |
|
|
//--------------------------------------------------------------------------------------- |
662 |
mocchiut |
1.10 |
if ( beverbose ) printf(" 13 => Free objects and close SQL connection \n"); |
663 |
mocchiut |
1.1 |
pamDB->Close(); |
664 |
|
|
// |
665 |
mocchiut |
1.17 |
if ( debug ) printf(" Total number of queries through GLTABLES: %u \n",glt->GetNqueries()); |
666 |
|
|
delete glt; |
667 |
|
|
// |
668 |
mocchiut |
1.1 |
printf("\n"); |
669 |
|
|
printf(" Finished, exiting...\n"); |
670 |
|
|
printf("\n"); |
671 |
|
|
// |
672 |
|
|
// Close redirection if the case. |
673 |
|
|
// |
674 |
|
|
if ( !beverbose ) close(nul); |
675 |
|
|
// |
676 |
|
|
exit(signal); |
677 |
|
|
// |
678 |
|
|
} |