source: trunk/MagicSoft/Mars/datacenter/macros/filldotrun.C@ 7629

Last change on this file since 7629 was 7629, checked in by Daniela Dorner, 19 years ago
*** empty log message ***
File size: 21.2 KB
Line 
1/* ======================================================================== *\
2!
3! *
4! * This file is part of MARS, the MAGIC Analysis and Reconstruction
5! * Software. It is distributed to you in the hope that it can be a useful
6! * and timesaving tool in analysing Data of imaging Cerenkov telescopes.
7! * It is distributed WITHOUT ANY WARRANTY.
8! *
9! * Permission to use, copy, modify and distribute this software and its
10! * documentation for any purpose is hereby granted without fee,
11! * provided that the above copyright notice appear in all copies and
12! * that both that copyright notice and this permission notice appear
13! * in supporting documentation. It is provided "as is" without express
14! * or implied warranty.
15! *
16!
17!
18! Author(s): Daniela Dorner, 08/2004 <mailto:dorner@astro.uni-wuerzburg.de>
19! Author(s): Thomas Bretz, 08/2004 <mailto:tbretz@astro.uni-wuerzburg.de>
20!
21! Copyright: MAGIC Software Development, 2000-2006
22!
23!
24\* ======================================================================== */
25
26/////////////////////////////////////////////////////////////////////////////
27//
28// filldotrun.C
29// ============
30//
31// This macro is used in the datacenter to automatically fill the run-database
32// with the information stored in the .run-files written by the central
33// control.
34//
35// To following Arehucas versions are Currently supported:
36// 040505-0, 040514-0,
37// 040518-0, 040727-0,
38// 041113-0, 041209-0, 041221-0
39// 050224-0, 050317-0, 050322-0, 050401-0, 050413-0, 050415-0, 050714-0,
40// 050719-0, 050829-0, 051025-0,
41// 060330-0
42//
43// Usage:
44// .x filldotrun.C+("/data/MAGIC/Period019/ccdata", kTRUE)
45//
46// While the first argument is the directory in which all subdirectories where
47// searches for CC_*.run files. All these files were analysed and the run
48// info will be put into the DB, eg:
49// "/magic/subsystemdata/cc" would do it for all data
50// "/magic/subsystemdata/cc/2005" for one year
51// "/magic/subsystemdata/cc/2005/11" for one month
52// "/magic/subsystemdata/cc/2005/11/11" for a single day
53// "/magic/subsystemdata/cc/2005/11/11/file.run" for a single file
54//
55// The second argument is the 'dummy-mode'. If it is kTRUE dummy-mode is
56// switched on and nothing will be written into the database. Instead
57// informations about the subtables are displayed. This is usefull for tests
58// when adding a new arehucas version support. If it is kFALSE the information
59// are written into the subtables and the runs info is written into the
60// rundatabase.
61//
62// In the automatic case it makes sense to check the logfiles to make sure
63// that everything is fine...
64//
65// Make sure, that database and password are corretly set in a resource
66// file called sql.rc and the resource file is found.
67//
68// Remark: Running it from the commandline looks like this:
69// root -q -l -b filldotrun.C+\(\"path\"\,kFALSE\) 2>&1 | tee filldotrun.log
70//
71// Returns 0 in case of failure and 1 in case of success.
72//
73/////////////////////////////////////////////////////////////////////////////
74#include <iostream>
75#include <iomanip>
76#include <fstream>
77
78#include <TEnv.h>
79#include <TMath.h>
80#include <TRegexp.h>
81
82#include <TSQLRow.h>
83#include <TSQLResult.h>
84
85#include "MTime.h"
86#include "MDirIter.h"
87#include "MSQLServer.h"
88
89using namespace std;
90
91Bool_t ExistStr(MSQLServer &serv, const char *column, const char *table, const char *test)
92{
93 TString query(Form("SELECT %s FROM %s WHERE %s='%s'", column, table, column, test));
94 TSQLResult *res = serv.Query(query);
95 if (!res)
96 return kFALSE;
97
98 Bool_t rc = kFALSE;
99
100 TSQLRow *row=res->Next();
101 if (row && (*row)[0])
102 rc=kTRUE;
103
104 delete res;
105 return rc;
106}
107
108//get key for the value
109// if value is not existing, insert value and get key
110Int_t QueryNameKEY(MSQLServer &serv, Bool_t dummy, const char *col, const char *name, Bool_t insert=kTRUE)
111{
112 TString query;
113
114 query = Form("SELECT f%sKEY FROM %s WHERE f%sName='%s'", col, col, col, name);
115 TSQLResult *res = serv.Query(query);
116 if (!res)
117 return -1;
118
119 TSQLRow *row=res->Next();
120
121 Int_t rc = row && (*row)[0] ? atoi((*row)[0]) : -1;
122
123 delete res;
124
125 if (rc>=0)
126 return rc;
127
128 if (!insert)
129 return -1;
130
131 //insert new value
132 query = Form("INSERT %s (f%sName) VALUES (\"%s\");", col, col, name);
133
134 if (dummy)
135 {
136 cout << query << endl;
137 return 0;
138 }
139
140 res=serv.Query(query);
141 if (!res)
142 return -1;
143
144 delete res;
145
146 Int_t key = QueryNameKEY(serv, dummy, col, name, kFALSE);
147 if (key>0)
148 {
149 cout << "New " << col << ": " << name << endl;
150 return key;
151 }
152
153 cout << "ERROR: " << query << endl;
154 return kFALSE;
155}
156
157
158Int_t insert(MSQLServer &serv, Bool_t dummy, TString filename)
159{
160 ifstream fin(filename);
161 if (!fin)
162 {
163 cout << "Could not open file " << filename << endl;
164 return -1;
165 }
166
167 TString strng;
168 strng.ReadLine(fin);
169 if (strng!=TString("[CC Plain Run Summary File]"))
170 {
171 cout << filename << ": No Plain Run Summary File" << endl;
172 cout << "First Line: " << strng << endl;
173 cout << endl;
174 return -1;
175 }
176
177 strng.ReadLine(fin);
178 TRegexp reg("[0-9][0-9][0-9][0-9][0-9][0-9]-[0-9]");
179 TString arehucas = strng(reg);
180 arehucas.Prepend("20");
181 arehucas.ReplaceAll("-", "");
182
183 Int_t version = atoi(arehucas.Data());
184 if (version!=200405050 && version!=200405140 && version!=200405180 &&
185 version!=200407270 && version!=200411130 && version!=200412090 &&
186 version!=200412210 &&
187 version!=200502240 && version!=200503170 && version!=200503220 &&
188 version!=200504010 && version!=200504130 && version!=200504150 &&
189 version!=200507140 && version!=200507190 && version!=200508290 &&
190 version!=200510250 &&
191 version!=200603300)
192 {
193 cout << filename << ": File Version unknown - please update the macro!" << endl;
194 cout << "Second Line: " << strng << endl;
195 cout << endl;
196 return -1;
197 }
198
199 cout << " V" << version << " " << flush;
200
201 Int_t cnt=0;
202 while (1)
203 {
204 // ========== Col 1: Run Number =========
205 //Reading the line
206 //and converting some strings to ints/floats
207 strng.ReadToDelim(fin, ' ');
208 if (!fin)
209 break;
210
211 Int_t runnumber = atoi(strng.Data());
212
213 //runnumber=0 means no valid dataset
214 //-> continue
215 if (runnumber == 0)
216 {
217 strng.ReadLine(fin);
218 cout << "Runnumber == 0" << endl;
219 continue;
220 }
221
222 //cout << "RunNo: " << runnumber << " ";
223
224 if (ExistStr(serv, "fRunNumber", "RunData", strng.Data()))
225 {
226 // FIXME: Maybe we can implement an switch to update mode?
227 cout << "Run #" << runnumber << " already existing... skipped." << endl;
228 strng.ReadLine(fin);
229 continue;
230 }
231
232 // ========== Col 2: Run Type =========
233 strng.ReadToDelim(fin, ' ');
234 if (strng.Contains("???"))
235 strng="n/a";
236
237 Int_t runtype = QueryNameKEY(serv, dummy, "RunType", strng.Data(), kFALSE);
238 if (runtype<0)
239 {
240 cout << "ERROR - RunType " << strng << " not available." << endl;
241 strng.ReadLine(fin);
242 continue;
243 }
244
245 //cout << runtype << " ";
246
247 // ========== Col 3,4: Start Time =========
248 TString startdate, starttime;
249 startdate.ReadToDelim(fin, ' ');
250 starttime.ReadToDelim(fin, ' ');
251 //cout << startdate << " " << starttime << " ";
252
253 // ========== Col 5,6: Stop Time =========
254 TString stopdate, stoptime;
255 stopdate.ReadToDelim(fin, ' ');
256 stoptime.ReadToDelim(fin, ' ');
257 //cout << stopdate << " " << stoptime << " ";
258
259 if (startdate.Contains("???"))
260 startdate="0000-00-00";
261 if (starttime.Contains("???"))
262 starttime="00:00:00";
263 if (stopdate.Contains("???"))
264 stopdate="0000-00-00";
265 if (stoptime.Contains("???"))
266 stoptime="00:00:00";
267
268 // ========== Col 7: Source Name =========
269 strng.ReadToDelim(fin, ' ');
270 if (strng.Contains("???"))
271 strng="Unavailable";
272
273 Int_t sourcekey = QueryNameKEY(serv, dummy, "Source", strng.Data());
274 if (sourcekey<0)
275 {
276 strng.ReadLine(fin);
277 continue;
278 }
279 //cout << sourcekey << " ";
280
281 // ========== Col 8,9: Local source position =========
282 strng.ReadToDelim(fin, ' ');
283 Float_t zd = atof(strng.Data());
284
285 strng.ReadToDelim(fin, ' ');
286 Float_t az = atof(strng.Data());
287
288 //cout << zd << " " << az << " ";
289
290 // ========== Col 10: Number of Events =========
291 strng.ReadToDelim(fin, ' ');
292 Int_t evtno = atoi(strng.Data());
293
294 //cout << evtno << " ";
295
296 // ========== Col 11: Project Name =========
297 strng.ReadToDelim(fin, ' ');
298 if (strng.Contains("???"))
299 strng="Unavailable";
300
301 Int_t projkey = QueryNameKEY(serv, dummy, "Project", strng.Data());
302 if (projkey<0)
303 {
304 strng.ReadLine(fin);
305 continue;
306 }
307 //cout << projkey << " ";
308
309 // ========== Col 12: Trigger Table Name =========
310 // starting from version 200411130: Col 12,13: Trigger Table Name =========
311 strng.ReadToDelim(fin, ' ');
312 if (strng.Contains("???"))
313 strng="n/a";
314
315 Int_t l1triggerkey=1;
316 Int_t l2triggerkey=1;
317 if (version >=200411130)
318 {
319 l1triggerkey = QueryNameKEY(serv, dummy, "L1TriggerTable", strng.Data());
320 if (l1triggerkey<0)
321 {
322 strng.ReadLine(fin);
323 continue;
324 }
325
326 strng.ReadToDelim(fin, ' ');
327 if (strng.Contains("???"))
328 strng="n/a";
329
330 l2triggerkey = QueryNameKEY(serv, dummy, "L2TriggerTable", strng.Data());
331 if (l2triggerkey<0)
332 {
333 strng.ReadLine(fin);
334 continue;
335 }
336 }
337 else
338 {
339 Int_t c=0;
340
341 if (strng.Contains(":"))
342 c=1;
343
344 if (strng.Contains("L1_") && !(strng.Contains(":")))
345 c=2;
346
347 if (strng.Contains("n/a"))
348 c=3;
349
350 switch (c)
351 {
352 case 0:
353 {
354 l2triggerkey = QueryNameKEY(serv, dummy, "L2TriggerTable", strng.Data());
355 if (l2triggerkey<0)
356 {
357 strng.ReadLine(fin);
358 continue;
359 }
360
361 strng="n/a";
362 l1triggerkey = 1;
363
364 break;
365 }
366 case 1:
367 {
368 TString L1TT, L2TT;
369 L2TT=strng(7,12);
370 L1TT=strng(0,6);
371
372 l1triggerkey = QueryNameKEY(serv, dummy, "L1TriggerTable", L1TT.Data());
373 if (l1triggerkey<0)
374 {
375 strng.ReadLine(fin);
376 continue;
377 }
378
379 l2triggerkey = QueryNameKEY(serv, dummy, "L2TriggerTable", L2TT.Data());
380 if (l2triggerkey<0)
381 {
382 strng.ReadLine(fin);
383 continue;
384 }
385
386 break;
387 }
388 case 2:
389 {
390 l1triggerkey = QueryNameKEY(serv, dummy, "L1TriggerTable", strng.Data());
391 if (l1triggerkey<0)
392 {
393 strng.ReadLine(fin);
394 continue;
395 }
396
397 strng="n/a";
398 l2triggerkey = 1;
399
400 break;
401 }
402 case 3:
403 {
404 l1triggerkey = 1;
405 l2triggerkey = 1;
406 break;
407 }
408 default:
409 {
410 cout << "WARNING: neither L1 nor L2 Trigger table - please check what is happening." << strng << endl;
411 break;
412 }
413 }
414 }
415
416 // ========== Col 13-15: TrigRate, L2 UnPresc Rate, L2 Presc Rate ==========
417 strng.ReadToDelim(fin, ' ');
418 Float_t trigrate = atof(strng.Data());
419
420 strng.ReadToDelim(fin, ' ');
421 Float_t l2uprate = atof(strng.Data());
422
423 strng.ReadToDelim(fin, ' ');
424 Float_t l2prrate = atof(strng.Data());
425
426 // ========== Col 16,17: DaqRate, Storage Rate ==========
427 strng.ReadToDelim(fin, ' ');
428 Float_t daqrate = atof(strng.Data());
429
430 strng.ReadToDelim(fin, ' ');
431 Float_t storerate = atof(strng.Data());
432
433 // ========== Col 18: HV table =========
434 if (version==200405050 || version==200405140)
435 strng.ReadToDelim(fin, '\n');
436 else
437 strng.ReadToDelim(fin, ' ');
438 if (strng.Contains("???"))
439 strng="n/a";
440
441 Int_t hvkey = QueryNameKEY(serv, dummy, "HvSettings", strng.Data());
442 if (hvkey<0)
443 {
444 //strng.ReadLine(fin);
445 continue;
446 }
447
448 if (version==200405180 || version==200407270)
449 strng.ReadLine(fin);
450
451 Int_t testflagkey=1;
452 Int_t lightcondkey=1;
453 Int_t dttablekey=1;
454 Int_t triggerdelaytablekey=1;
455 Int_t calibrationscriptkey=1;
456 if (version==200411130 || version==200412090 || version==200412210
457 || version==200502240 || version==200503170 || version==200503220
458 || version==200504010 || version==200504130 || version==200504150
459 || version==200507140 || version==200507190 || version==200508290
460 || version==200510250 || version==200603300)
461 {
462 // ========== Col 19-35: DC and HV-values, mjd =========
463 for (int i=0 ; i<17 ; i++)
464 {
465 strng.ReadToDelim(fin, ' ');
466 }
467
468 // ========== Col 36: test-flag =========
469 strng.ReadToDelim(fin, ' ');
470 if (strng.Contains("???"))
471 strng="n/a";
472
473 testflagkey = QueryNameKEY(serv, dummy, "TestFlag", strng.Data());
474 if (testflagkey<0)
475 {
476 strng.ReadLine(fin);
477 continue;
478 }
479
480 // ========== Col 37: light conditions =========
481 strng.ReadToDelim(fin, ' ');
482 if (strng.Contains("???"))
483 strng="n/a";
484
485 lightcondkey = QueryNameKEY(serv, dummy, "LightConditions", strng.Data());
486 if (lightcondkey<0)
487 {
488 strng.ReadLine(fin);
489 continue;
490 }
491
492 // ========== Col 38: discriminator threshold table =========
493 strng.ReadToDelim(fin, ' ');
494 if (strng.Contains("???"))
495 strng="n/a";
496
497 dttablekey = QueryNameKEY(serv, dummy, "DiscriminatorThresholdTable", strng.Data());
498 if (dttablekey<0)
499 {
500 strng.ReadLine(fin);
501 continue;
502 }
503
504 // ========== Col 39: trigger delay table =========
505 strng.ReadToDelim(fin, ' ');
506 if (strng.Contains("???"))
507 strng="n/a";
508
509 triggerdelaytablekey = QueryNameKEY(serv, dummy, "TriggerDelayTable", strng.Data());
510 if (triggerdelaytablekey<0)
511 {
512 strng.ReadLine(fin);
513 continue;
514 }
515
516 // ========== Col 40,41: Telescope RA and Dec sent to drive =========
517 strng.ReadToDelim(fin, ' ');
518 strng.ReadToDelim(fin, ' ');
519
520 // ========== Col 42: Calibration Script =========
521 if (version==200411130 || version==200412090 || version==200412210
522 || version==200502240 || version==200503170 || version==200503220
523 || version==200504010 || version==200504130 || version==200504150
524 || version==200507140 || version==200507190 || version==200508290
525 || version==200510250)
526 strng.ReadToDelim(fin, '\n');
527 else
528 strng.ReadToDelim(fin, ' ');
529 if (strng.Contains("???"))
530 strng="n/a";
531
532 calibrationscriptkey = QueryNameKEY(serv, dummy, "CalibrationScript", strng.Data());
533 if (calibrationscriptkey<0)
534 {
535 strng.ReadLine(fin);
536 continue;
537 }
538
539 }
540
541 Int_t observationmodekey=1;
542 if (version==200603300)
543 {
544 // ========== Col 43: Observation Mode =========
545 strng.ReadToDelim(fin, ' ');
546 if (strng.Contains("???"))
547 strng="n/a";
548
549 observationmodekey = QueryNameKEY(serv, dummy, "ObservationMode", strng.Data());
550 if (observationmodekey<0)
551 {
552 strng.ReadLine(fin);
553 continue;
554 }
555
556 // ========== Col 44-51: Source RA and Dec, DT's and IPR =========
557 for (int i=0 ; i<7 ; i++)
558 {
559 strng.ReadToDelim(fin, ' ');
560 }
561 strng.ReadToDelim(fin, '\n');
562 }
563
564
565 // ================================================================
566 // ========== Data read from file now access the database =========
567 // ================================================================
568
569 //assemlbe the query that is needed to insert the values of this run
570 TString query;
571 query += "INSERT RunData SET ";
572
573 query += Form("fRunNumber=%d, ", runnumber);
574 query += Form("fRunTypeKEY=%d, ", runtype);
575 query += Form("fProjectKEY=%d, ", projkey);
576 query += Form("fSourceKEY=%d, ", sourcekey);
577 query += Form("fNumEvents=%d, ", evtno);
578 query += Form("fRunStart=\"%s %s\", ", startdate.Data(), starttime.Data());
579 query += Form("fRunStop=\"%s %s\", ", stopdate.Data(), stoptime.Data());
580 query += Form("fL1TriggerTableKEY=%d, ", l1triggerkey);
581 query += Form("fL2TriggerTableKEY=%d, ", l2triggerkey);
582 query += Form("fTestFlagKEY=%d, ", testflagkey);
583 query += Form("fCalibrationScriptKEY=%d, ", calibrationscriptkey);
584 query += Form("fTriggerDelayTableKEY=%d, ", triggerdelaytablekey);
585 query += Form("fDiscriminatorThresholdTableKEY=%d, ", dttablekey);
586 query += Form("fLightConditionsKEY=%d, ", lightcondkey);
587 query += Form("fHvSettingsKEY=%d, ", hvkey);
588 query += Form("fObservationModeKEY=%d, ", observationmodekey);
589 if (!TMath::IsNaN(zd) && TMath::Finite(zd))
590 query += Form("fZenithDistance=%d, ", TMath::Nint(zd));
591 if (!TMath::IsNaN(az) && TMath::Finite(az))
592 query += Form("fAzimuth=%d, ", TMath::Nint(az));
593 if (!TMath::IsNaN(storerate) && TMath::Finite(storerate))
594 query += Form("fDaqStoreRate=%d, ", TMath::Nint(storerate));
595 if (!TMath::IsNaN(daqrate) && TMath::Finite(daqrate))
596 query += Form("fDaqTriggerRate=%d, ", TMath::Nint(daqrate));
597 if (!TMath::IsNaN(trigrate) && TMath::Finite(trigrate))
598 query += Form("fMeanTriggerRate=%d, ", TMath::Nint(trigrate));
599 if (!TMath::IsNaN(l2prrate) && TMath::Finite(l2prrate))
600 query += Form("fL2RatePresc=%d, ", TMath::Nint(l2prrate));
601 if (!TMath::IsNaN(l2uprate) && TMath::Finite(l2uprate))
602 query += Form("fL2RateUnpresc=%d, ", TMath::Nint(l2uprate));
603 query += "fMagicNumberKEY=1, fExcludedFDAKEY=1";
604
605 cnt++;
606
607 if (dummy)
608 continue;
609
610 //send query, add dataset to DB
611 TSQLResult *res = serv.Query(query);
612 if (!res)
613 return -1;
614 delete res;
615
616 //create entry in table RunProcessStatus for this runnumber
617 TString query2=Form("INSERT RunProcessStatus SET fRunNumber=%d, fTimingCorrection='1970-01-01 00:00:00'",
618 runnumber);
619 if (testflagkey==3)
620 query2+=" , fDataCheckDone='1970-01-01 00:00:00'";
621 res = serv.Query(query2);
622 if (!res)
623 return -1;
624 delete res;
625 }
626
627 return cnt;
628
629}
630
631// This tool will work from Period017 (2004_05_17) on...
632int filldotrun(const TString path="/data/MAGIC/Period018/ccdata", Bool_t dummy=kTRUE)
633{
634 TEnv env("sql.rc");
635
636 MSQLServer serv(env);
637 if (!serv.IsConnected())
638 {
639 cout << "ERROR - Connection to database failed." << endl;
640 return 0;
641 }
642 cout << "filldotrun" << endl;
643 cout << "----------" << endl;
644 cout << endl;
645 cout << "Connected to " << serv.GetName() << endl;
646 cout << "Search Path: " << path << endl;
647 cout << endl;
648
649 if (path.EndsWith(".run"))
650 {
651 cout << path(TRegexp("CC_.*.run", kFALSE)) << flush;
652 Int_t n = insert(serv, dummy, path);
653 cout << " <" << n << "> " << (dummy?"DUMMY":"") << endl;
654
655 return n<0 ? 0 : 1;
656 }
657
658 MDirIter Next(path, "CC_*.run", -1);
659 while (1)
660 {
661 TString name = Next();
662 if (name.IsNull())
663 break;
664
665 cout << name(TRegexp("CC_.*.run", kFALSE)) << flush;
666 Int_t n = insert(serv, dummy, name);
667 cout << " <" << n << "> " << (dummy?"DUMMY":"") << endl;
668
669 if (n<0)
670 return 0;
671 }
672
673 return 1;
674}
Note: See TracBrowser for help on using the repository browser.