/[PAMELA software]/PadmeAmidala/src/RunGlue.cpp
ViewVC logotype

Annotation of /PadmeAmidala/src/RunGlue.cpp

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.24 - (hide annotations) (download)
Fri Oct 17 15:10:20 2014 UTC (10 years, 1 month ago) by mocchiut
Branch: MAIN
Changes since 1.23: +13 -10 lines
ProcessingInfo added to output file

1 mocchiut 1.1 /**
2     * \file RunGlue.cpp
3     * \author Emiliano Mocchiutti
4     *
5     * The file contains implementation of the methods to query the DB.
6     */
7     //
8 mocchiut 1.11 #include <sstream>
9     #include <iostream>
10     //
11     #include <TFile.h>
12     #include <TTree.h>
13     #include <TTimeStamp.h>
14     #include <TTreeCloner.h>
15 mocchiut 1.1 #include <RunGlue.h>
16     //
17     ClassImp(RunGlue);
18     //
19     using namespace std;
20    
21     RunGlue::RunGlue() {
22     this->Clear();
23     }
24    
25 mocchiut 1.11 RunGlue::RunGlue(TSQLServer *da, UInt_t ru, TString di, TString wrkdi) {
26 mocchiut 1.1 fDBG = false;
27     li = new PamLevel2();
28 mocchiut 1.12 // li = 0;
29 mocchiut 1.1 this->Clear();
30     dbc = da;
31     run = ru;
32     dir = di;
33     //
34 mocchiut 1.24 discarded = false;
35     //
36 mocchiut 1.12 wd = gSystem->WorkingDirectory();
37 mocchiut 1.1 //
38     outdir = wrkdi;
39     if ( !strcmp(outdir.Data(),"") ) outdir = wd;
40     fList = 0;
41     if ( run ){
42     runmode = true;
43     } else {
44     runmode = false;
45     createlist = true;
46     };
47 mocchiut 1.16 fUpgrade = true;
48 mocchiut 1.1 //
49     // lList = new TList();
50     //
51     };
52    
53     void RunGlue::Clear() {
54     fEnd = false;
55     run = 0;
56     dir = "";
57     outdir = "";
58     fFilename = "";
59     };
60    
61     void RunGlue::Clean() {
62     if ( !merged ) gSystem->Unlink(fFilename);
63     lList->Delete();
64     delete Target;
65     };
66    
67     void RunGlue::SetDebug(Bool_t dbg) {
68     fDBG = dbg;
69     };
70    
71     void RunGlue::SetDList(TString list) {
72     //
73     RUN = true;
74     //
75     if (list.Contains("-RUN", TString::kIgnoreCase)) RUN = false;
76     if (list.Contains("-ALL", TString::kIgnoreCase)) RUN = false;
77     if (list.Contains("+RUN", TString::kIgnoreCase)) RUN = true;
78     if (list.Contains("+ALL", TString::kIgnoreCase)) RUN = true;
79     //
80     fDList = list;
81 mocchiut 1.12 // li->SetWhichTrees(fDList);
82 mocchiut 1.1 //
83     if ( DebugMode() ) printf(" Detector list is %s \n",fDList.Data());
84     //
85     };
86    
87     TList *RunGlue::GetRunList(){
88 mocchiut 1.12 //
89 mocchiut 1.1 lList = new TList();
90     lList->Clear();
91     TString thisrun;
92     TFile *su;
93     //
94     TSQLResult *pResult;
95     TSQLRow *Row;
96     //
97     if ( run && runmode ){
98     //
99     // Qurey the GL_RUN table to obtain RUN infos
100     //
101     GL_RUN *glrun = new GL_RUN();
102     glrun->Query_GL_RUN(run,dbc);
103     //
104     // convert RUNHEADER_TIME into a UTC date
105     //
106     GL_TIMESYNC *dbtime = new GL_TIMESYNC();
107     //
108     TString UTC="UTC";
109     TString rhdate=dbtime->ConvertTime(UTC,glrun->RUNHEADER_TIME);
110     //
111     TDatime ti = TDatime(rhdate.Data());
112     //
113     YY=(UInt_t)ti.GetYear();
114     MM=(UInt_t)ti.GetMonth();
115     DD=(UInt_t)ti.GetDay();
116     //
117     TTimeStamp *llim = new TTimeStamp(YY,MM,DD,0,0,0,0,true,0);
118     //
119     UInt_t lowerlimit = llim->GetSec();
120 mocchiut 1.18 UInt_t upperlimit = lowerlimit + 86400;
121 mocchiut 1.1 //
122     if ( DebugMode() ) printf(" YY %u MM %u DD %u ll %u ul %u \n",YY,MM,DD,lowerlimit,upperlimit);
123     //
124     YY -= 2000;
125     stringstream tmpf;
126     tmpf.str("");
127     tmpf << "L2PAM";
128     if ( YY < 10 ){
129     tmpf<< "0" << YY;
130     } else {
131     tmpf<< YY;
132     };
133     if ( MM < 10 ){
134     tmpf<< "0" << MM;
135     } else {
136     tmpf<< MM;
137     };
138     if ( DD < 10 ){
139     tmpf << "0" << DD << ".root";
140     } else {
141     tmpf << DD << ".root";
142     };
143     TString fpath = "";
144     if ( !strcmp(outdir,"") ){
145     fpath="./";
146     } else {
147     fpath += outdir;
148     fpath += "/";
149     };
150     //
151     fFilename = fpath + tmpf.str().c_str();
152     //
153     printf(" Output filename is %s \n",fFilename.Data());
154     //
155 mocchiut 1.4 if ( !this->OpenFile() ){
156     fEnd = true;
157     return(0);
158     };
159     //
160     stringstream myquery;
161     myquery.str("");
162     myquery << "SELECT ID FROM GL_RUN WHERE RUNHEADER_TIME>=" << (UInt_t)lowerlimit
163     << " AND RUNHEADER_TIME<" << (UInt_t)upperlimit << " ORDER BY RUNHEADER_TIME ASC;";
164     //
165     pResult = dbc->Query(myquery.str().c_str());
166     for( UInt_t r=0; r < 1000; r++){
167     Row = pResult->Next();
168     if( Row == NULL ) break;
169     if ( DebugMode() ) printf(" %u RUN %s \n",r,Row->GetField(0));
170     //
171     thisrun=dir+(TString)Row->GetField(0)+".Level2.root";
172     //
173     if ( DebugMode() ) printf(" Filename is %s \n",thisrun.Data());
174     //
175     su = TFile::Open(thisrun);
176     if ( li->CheckLevel2File(thisrun) ){
177     lList->Add(su);
178     } else {
179 mocchiut 1.24 if ( DebugMode() ) printf(" RUN %s DISCARDED \n",Row->GetField(0));
180     discarded = true;
181 mocchiut 1.4 };
182     //
183     };
184     //
185     //
186 mocchiut 1.1 delete glrun;
187     delete dbtime;
188     //
189     };
190     //
191     if ( strcmp(dir.Data(),"" )){
192     //
193     if ( createlist ){
194     fList = new TList();
195     fDoneList = new TList();
196     fNlist = 0;
197     fNlistdone = 0;
198     //
199     // read files in the directory
200     //
201     if ( DebugMode() ) printf("\n No input run given\n Check for existing root files. \n");
202     //
203     TSystemDirectory *datadir = new TSystemDirectory(gSystem->BaseName(dir),dir);
204     TList *temp = datadir->GetListOfFiles();
205     //
206     TIter next(temp);
207     TSystemFile *questo = 0;
208     //
209     while ( (questo = (TSystemFile*)next()) ) {
210     TString name = questo->GetName();
211     if( name.EndsWith(".Level2.root") ){
212     char *fullpath0;
213     gSystem->IsFileInIncludePath(name,&fullpath0);
214     TString fullpath = fullpath0;
215     //
216     if ( DebugMode() ) printf(" fullpath = %s name %s \n",fullpath.Data(),name.Data());
217     //
218     //
219     su = TFile::Open(fullpath);
220     if ( li->CheckLevel2File((TString)fullpath) ){
221     fList->Add(su);
222     fNlist++;
223     } else {
224     if ( DebugMode() ) printf(" RUN %s DISCARDED \n",fullpath.Data());
225 mocchiut 1.24 discarded = true;
226 mocchiut 1.1 };
227     //
228     };
229     };
230     createlist = false;
231     nrun = 0;
232     };
233     //
234     //
235     //
236     Bool_t stop = true;
237     UInt_t drun = 0;
238     while ( nrun < fNlist && stop ){
239     TString myrun = (TString)((TString)(gSystem->BaseName(((TFile*)fList->At(nrun))->GetName()))).ReplaceAll(".Level2.root",12,"",0);
240     if ( DebugMode() ) printf(" nrun %u myrun is %s \n",nrun,(myrun.ReplaceAll(".Level2.root",12,"",0)).Data());
241     run = (UInt_t)(myrun.Atoi());
242     nrun++;
243     //
244     TString donerun = "";
245     for (UInt_t ll=0; ll<fNlistdone; ll++){
246     donerun = "";
247     donerun = (TString)((TString)(gSystem->BaseName(((TFile*)fDoneList->At(ll))->GetName()))).ReplaceAll(".Level2.root",12,"",0);
248     if ( DebugMode() ) printf(" donerun is %s \n",(donerun.ReplaceAll(".Level2.root",12,"",0)).Data());
249     drun = (UInt_t)(donerun.Atoi());
250     //
251     if ( run == drun ) goto jump;
252     //
253     };
254     //
255     stop = false;
256     //
257     jump:
258     drun = 0;
259     //
260     };
261     //
262     if ( nrun >= fNlist && stop ){
263     fEnd = true;
264     return(0);
265     };
266     //
267     // Qurey the GL_RUN table to obtain RUN infos
268     //
269     printf(" PROCESSING RUN %u AND ITS FRIENDS\n",run);
270     GL_RUN *glrun = new GL_RUN();
271     glrun->Query_GL_RUN(run,dbc);
272     //
273     // convert RUNHEADER_TIME into a UTC date
274     //
275     GL_TIMESYNC *dbtime = new GL_TIMESYNC();
276     //
277     TString UTC="UTC";
278     TString rhdate=dbtime->ConvertTime(UTC,glrun->RUNHEADER_TIME);
279     //
280     TDatime ti = TDatime(rhdate.Data());
281     //
282     YY=(UInt_t)ti.GetYear();
283     MM=(UInt_t)ti.GetMonth();
284     DD=(UInt_t)ti.GetDay();
285     //
286     TTimeStamp *llim = new TTimeStamp(YY,MM,DD,0,0,0,0,true,0);
287     //
288     UInt_t lowerlimit = llim->GetSec();
289 mocchiut 1.18 UInt_t upperlimit = lowerlimit + 86400;
290 mocchiut 1.1 //
291     if ( DebugMode() ) printf(" YY %u MM %u DD %u ll %u ul %u \n",YY,MM,DD,lowerlimit,upperlimit);
292     //
293     YY -= 2000;
294     stringstream tmpf;
295     tmpf.str("");
296     tmpf << "L2PAM";
297     if ( YY < 10 ){
298     tmpf<< "0" << YY;
299     } else {
300     tmpf<< YY;
301     };
302     if ( MM < 10 ){
303     tmpf<< "0" << MM;
304     } else {
305     tmpf<< MM;
306     };
307     if ( DD < 10 ){
308     tmpf << "0" << DD << ".root";
309     } else {
310     tmpf << DD << ".root";
311     };
312     TString fpath = "";
313     if ( !strcmp(outdir,"") ){
314     fpath="./";
315     } else {
316     fpath += outdir;
317     fpath += "/";
318     };
319     //
320     fFilename = fpath + tmpf.str().c_str();
321     //
322     printf(" Output filename is %s \n",fFilename.Data());
323     //
324 mocchiut 1.4 if ( !this->OpenFile() ) return(0);
325     //
326     stringstream myquery;
327     myquery.str("");
328     myquery << "SELECT ID FROM GL_RUN WHERE RUNHEADER_TIME>=" << (UInt_t)lowerlimit
329     << " AND RUNHEADER_TIME<" << (UInt_t)upperlimit << " ORDER BY RUNHEADER_TIME ASC;";
330     //
331     pResult = dbc->Query(myquery.str().c_str());
332     for( UInt_t r=0; r < 1000; r++){
333     Row = pResult->Next();
334     if( Row == NULL ) break;
335     if ( DebugMode() ) printf(" %u RUN %s \n",r,Row->GetField(0));
336     //
337     thisrun=dir+(TString)Row->GetField(0)+".Level2.root";
338     //
339     if ( DebugMode() ) printf(" Filename is %s \n",thisrun.Data());
340     //
341     su = TFile::Open(thisrun);
342     if ( su ){
343     TFile *su0 = TFile::Open(thisrun);
344     fDoneList->Add(su0);
345     fNlistdone++;
346     };
347     if ( li->CheckLevel2File(thisrun) ){
348     lList->Add(su);
349     if ( DebugMode() ) printf(" RUN %s ADDED \n",Row->GetField(0));
350     } else {
351     if ( DebugMode() ) printf(" RUN %s DISCARDED \n",Row->GetField(0));
352 mocchiut 1.24 discarded = true;
353 mocchiut 1.4 };
354     //
355     };
356     //
357 mocchiut 1.1 if ( DebugMode() ){
358     UInt_t ll = 0;
359     while ( (TFile*)lList->At(ll) ){
360     TString donerun = "";
361     donerun = (TString)((TString)(gSystem->BaseName(((TFile*)lList->At(ll))->GetName()))).ReplaceAll(".Level2.root",12,"",0);
362     printf(" XXX file is %s \n",donerun.Data());
363     ll++;
364     //
365     };
366     };
367     //
368     delete glrun;
369     delete dbtime;
370     //
371     };
372     //
373     // is it the end?
374     //
375     if ( runmode ){
376     fEnd = true;
377     } else {
378     //
379     // did we use all the run in the directory? if so exit
380     //
381     if ( nrun >= fNlist ) fEnd = true;
382     };
383     //
384     return(lList);
385     };
386    
387     Bool_t RunGlue::OpenFile(){
388     //
389 mocchiut 1.11 fOpen = false;
390     printf(" Check if output file already exists \n");
391 mocchiut 1.10 ifstream myfile;
392 mocchiut 1.11 myfile.open((this->GetFilename()).Data());
393     if ( myfile ){
394 mocchiut 1.7 // Target = TFile::Open((this->GetFilename()).Data(), "READ" );
395     //
396     // if ( Target ){
397     // Target->Close();
398 mocchiut 1.11 myfile.close();
399     printf("Error opening target file, %s already exist!\n",(this->GetFilename()).Data());
400 mocchiut 1.1 return(false);
401     } else {
402     //
403 mocchiut 1.16 // try to lock tables and work on a db level to avoid multiple file simultaneous access
404     //
405     stringstream oss;
406     //
407     if ( fUpgrade ){
408     oss.str("");
409     oss << "lock table GL_ROOT write;";
410     TSQLResult *result = 0;
411     TSQLRow *row = 0;
412     result = dbc->Query(oss.str().c_str());
413     oss.str("");
414     oss << "select ID from GL_ROOT where NAME='" << ((TString)gSystem->BaseName(this->GetFilename())).Data() << "';";
415     result = dbc->Query(oss.str().c_str());
416     row = result->Next();
417     if ( row ){
418     printf("Error opening target file (does %s exist? already in the DB? are the permissions ok?)\n",(this->GetFilename()).Data());
419     return(false);
420     } else {
421     oss.str("");
422     oss << "insert into GL_ROOT (PATH,NAME) values ('$PAM_L2','" << ((TString)gSystem->BaseName(this->GetFilename())).Data() << "');";
423     result = dbc->Query(oss.str().c_str());
424     };
425     oss.str("");
426     oss << "unlock tables;";
427     result = dbc->Query(oss.str().c_str());
428     };
429 mocchiut 1.15 // Target = TFile::Open((this->GetFilename()).Data(), "RECREATE" );
430     Target = TFile::Open((this->GetFilename()).Data(), "NEW" );
431     //
432 mocchiut 1.1 printf(" Output file does not exist, creating it\n");
433     //
434 mocchiut 1.5 Long64_t maxsize = 99900000000LL;
435 mocchiut 1.1 //
436 mocchiut 1.15 if ( !Target || Target->IsZombie()) {
437     printf("Error opening target file (does %s exist? are the permissions ok?)\n",(this->GetFilename()).Data());
438     // exit(1);
439     return(false);
440     }
441     //
442     Target->Write();
443     //
444 mocchiut 1.3 //fastMethod = kTRUE;
445     fastMethod = kFALSE;
446 mocchiut 1.1 //
447     //
448     TTree::SetMaxTreeSize(maxsize);
449 mocchiut 1.13 // Target->SetCompressionLevel(2);
450     Target->SetCompressionLevel(3);
451 mocchiut 1.12 //Target->SetCompressionLevel(5);
452 mocchiut 1.1 //
453 mocchiut 1.4 fOpen = true;
454 mocchiut 1.1 return(true);
455     //
456     };
457     //
458     return(true);
459     //
460     };
461    
462    
463     void RunGlue::DeleteRunFiles(TList *dlist){
464     //
465     TString donerun = "";
466     //
467     printf(" Deleting runs: \n");
468     //
469     UInt_t ll = 0;
470     //
471     while ( (TFile*)dlist->At(ll) ){
472     donerun = (TString)(((TFile*)dlist->At(ll))->GetName());
473     gSystem->Unlink(donerun);
474     printf(" Deleted file is %s \n",donerun.Data());
475     ll++;
476     //
477     };
478     };
479    
480     void RunGlue::UpdateDB(TList *dlist){
481     //
482     TSQLResult *pResult;
483     TSQLRow *Row;
484     stringstream myquery;
485     //
486     TString donerun = "";
487     //
488     if ( DebugMode() ) printf(" Updating GL_RUN: \n");
489     //
490     UInt_t ll = 0;
491     UInt_t idl2 = 0;
492 mocchiut 1.2 UInt_t idr = 0;
493 mocchiut 1.1 //
494     //
495     myquery.str("");
496 mocchiut 1.2 myquery << "select ID from GL_RAW where NAME='level2 files';";
497     if ( DebugMode() ) printf(" query is %s \n",myquery.str().c_str());
498     //
499     pResult = dbc->Query(myquery.str().c_str());
500     if ( !pResult ){
501     printf(" ERROR QUERYING ON DB!\n");
502     return;
503     };
504     Row = pResult->Next();
505     if( Row == NULL ){
506     printf(" ERROR QUERYING THE DB!\n");
507     return;
508     } else {
509     idr = (UInt_t)atoll(Row->GetField(0));
510     };
511     //
512     myquery.str("");
513 mocchiut 1.16 myquery << "select ID from GL_ROOT where NAME='" << ((TString)gSystem->BaseName(this->GetFilename())).Data() << "';";
514 mocchiut 1.1 if ( DebugMode() ) printf(" query is %s \n",myquery.str().c_str());
515     //
516     pResult = dbc->Query(myquery.str().c_str());
517     if ( !pResult ){
518     printf(" ERROR WRITING ON DB!\n");
519     return;
520     };
521 mocchiut 1.16 Row = pResult->Next();
522     if( Row == NULL ){
523     printf(" ERROR QUERYING THE DB!\n");
524     return;
525     } else {
526     idl2 = (UInt_t)atoll(Row->GetField(0));
527     };
528 mocchiut 1.1 myquery.str("");
529 mocchiut 1.16 // myquery << "insert into GL_ROOT (ID_RAW,PATH,NAME) values (" << idr << ",'" << outdir.Data() << "','" << ((TString)gSystem->BaseName(this->GetFilename())).Data() << "');";
530     // myquery << "insert into GL_ROOT (ID_RAW,PATH,NAME) values (" << idr << ",'$PAM_L2','" << ((TString)gSystem->BaseName(this->GetFilename())).Data() << "');";
531     myquery << "update GL_ROOT set ID_RAW=" << idr << " where ID=" << idl2 << ";";
532 mocchiut 1.1 if ( DebugMode() ) printf(" query is %s \n",myquery.str().c_str());
533     //
534     pResult = dbc->Query(myquery.str().c_str());
535     if ( !pResult ){
536     printf(" ERROR WRITING ON DB!\n");
537     return;
538     };
539     //
540     //
541     //
542     UInt_t drun = 0;
543     //
544     while ( (TFile*)dlist->At(ll) ){
545     donerun = "";
546     donerun = (TString)((TString)(gSystem->BaseName(((TFile*)dlist->At(ll))->GetName()))).ReplaceAll(".Level2.root",12,"",0);
547     drun = (UInt_t)(donerun.Atoi());
548     //
549     if ( DebugMode() ) printf(" Run is %s \n",donerun.Data());
550     //
551     myquery.str("");
552     myquery << "update GL_RUN set ID_ROOT_L2=" << idl2 << " where ID=" << drun << ";";
553     if ( DebugMode() ) printf(" query is %s \n",myquery.str().c_str());
554     //
555     pResult = dbc->Query(myquery.str().c_str());
556     if ( !pResult ){
557     printf(" ERROR WRITING ON DB!\n");
558     return;
559     };
560     //
561     ll++;
562     //
563     };
564     };
565    
566     //
567     // method stolen to ROOT's "hadd" and modified
568     //
569     void RunGlue::MergeRootfile(TList *sourcelist) {
570     //
571 mocchiut 1.12 merged = true;
572 mocchiut 1.1 //
573 mocchiut 1.17 // if ( li ) li->Delete();
574     PamLevel2 *nli = new PamLevel2(wd,sourcelist,fDList);
575     nli->SetSELLI(2);
576 mocchiut 1.1 //
577 mocchiut 1.12 Target->cd();
578 mocchiut 1.1 //
579 mocchiut 1.17 nli->CreateCloneTrees(Target);
580 mocchiut 1.19 //
581 mocchiut 1.20 /* nli->GetCloneTree("Tracker")->SetAutoSave(900000000000000LL);
582 mocchiut 1.19 nli->GetCloneTree("Trigger")->SetAutoSave(900000000000000LL);
583     nli->GetCloneTree("Calorimeter")->SetAutoSave(900000000000000LL);
584     nli->GetCloneTree("S4")->SetAutoSave(900000000000000LL);
585     nli->GetCloneTree("Anticounter")->SetAutoSave(900000000000000LL);
586     nli->GetCloneTree("NeutronD")->SetAutoSave(900000000000000LL);
587     nli->GetCloneTree("OrbitalInfo")->SetAutoSave(900000000000000LL);
588     nli->GetCloneTree("Run")->SetAutoSave(900000000000000LL);
589 mocchiut 1.20 nli->GetCloneTree("ToF")->SetAutoSave(900000000000000LL);*/
590 mocchiut 1.19 //
591 mocchiut 1.17 ULong64_t nevents = nli->GetEntries();
592 mocchiut 1.12 printf(" NEVENTS %llu \n",nevents);
593     for(ULong64_t iev=0; iev<nevents; iev++){
594 mocchiut 1.17 nli->Clear();
595     if( nli->GetEntry(iev) ){
596     nli->FillCloneTrees();
597 mocchiut 1.12 };
598     };
599     Target->cd();
600 mocchiut 1.17 nli->WriteCloneTrees();
601 mocchiut 1.13 printf("Written file %s \n",Target->GetName());
602 mocchiut 1.12 // Target->Write();
603 mocchiut 1.14 // TTree *slist = (TTree*)Target->Get("SelectionList");
604     // slist->Delete("all");
605 mocchiut 1.20 if ( !nli->GetCloneTree("ProcessingInfo") ){
606     TChain *P = new TChain("ProcessingInfo");
607     // loop over files and create chains
608     TIter next(sourcelist);
609     TSystemFile *questo = 0;
610     while ((questo = (TSystemFile*) next())) {
611     TString name = questo->GetName();
612 mocchiut 1.22 P->Add(name);
613 mocchiut 1.21 }
614 mocchiut 1.22 if ( P->GetEntries() ){
615 mocchiut 1.21 TTree *Pclone = P->CloneTree();
616 mocchiut 1.24 //
617 mocchiut 1.23 ProcInfo *procinfo = new ProcInfo();
618 mocchiut 1.24 procinfo->runID = run;
619 mocchiut 1.23 TTimeStamp *dt = new TTimeStamp();
620     procinfo->date = dt->AsString();
621     delete dt;
622     TString isok;
623 mocchiut 1.24 if ( discarded ){
624 mocchiut 1.23 isok = " WARNING, files were discarded while merging! ";
625     } else {
626 mocchiut 1.24 isok = " The level2 merging was OK!";
627 mocchiut 1.23 }
628 mocchiut 1.24 procinfo->commandLine += Form("PadmeAmidala: %s",isok.Data());
629     procinfo->outputFilename = Target->GetName();
630 mocchiut 1.23 procinfo->localDir = gSystem->WorkingDirectory();
631     procinfo->uname = gSystem->GetFromPipe("uname -a");
632 mocchiut 1.24 procinfo->DB = Form("mysql://%s/%s",dbc->GetHost(),dbc->GetDB());
633 mocchiut 1.23
634     Pclone->SetBranchAddress("ProcInfo",&procinfo);
635     Pclone->Fill();
636    
637 mocchiut 1.21 Target->cd();
638     Pclone->Write("ProcessingInfo",TObject::kOverwrite);
639     P->Delete();
640     P=0;
641 mocchiut 1.20 }
642     }
643     //
644 mocchiut 1.12 Target->Close();
645    
646     // //
647     // TDirectory *target = Target;
648     // //
649     // if ( DebugMode() ) printf("\nTarget path is: %s \n",target->GetPath());
650     // //
651     // TString path( (char*)strstr( target->GetPath(), ":" ) );
652     // path.Remove(0,2);
653     // //
654     // TDirectory *first_source = (TDirectory*)sourcelist->First();
655     // THashList allNames;
656     // //
657     // while ( first_source ){
658     // //
659     // TDirectory *current_sourcedir = first_source->GetDirectory(path);
660     // //
661     // if ( !current_sourcedir ){
662     // first_source = (TDirectory*)sourcelist->After(first_source);
663     // continue;
664     // }
665     // //
666     // // loop over all keys in this directory
667     // //
668     // TChain *globChain = 0;
669     // TIter nextkey( current_sourcedir->GetListOfKeys() );
670     // TKey *key = 0;
671     // TKey *oldkey = 0;
672     // TH1::AddDirectory(kFALSE); // gain time, do not add the objects in the list in memory
673     // //
674     // while ( (key = (TKey*)nextkey()) ) {
675     // //
676     // // printf(" target ls \n");
677     // // Target->ls();
678     // //
679     // if ( current_sourcedir == target ) break;
680     // //
681     // if ( oldkey && !strcmp(oldkey->GetName(),key->GetName()) ) continue; //keep only the highest cycle number for each key
682     // //
683     // if ( allNames.FindObject(key->GetName()) ) continue;
684     // //
685     // if ( DebugMode() ) printf(" Key name is -%s- \n",key->GetName());
686     // //
687     // //
688     // //
689     // if ( !strcmp(key->GetName(),"Tracker") && !li->IsTRK2() && !li->IsTRK1() && !li->IsTRKh() ) continue;
690     // //
691     // if ( !strcmp(key->GetName(),"Calorimeter") && !li->IsCAL2() && !li->IsCAL1() ) continue;
692     // //
693     // if ( !strcmp(key->GetName(),"ToF") && !li->IsTOF() ) continue;
694     // //
695     // if ( !strcmp(key->GetName(),"Trigger") && !li->IsTRG() ) continue;
696     // //
697     // if ( !strcmp(key->GetName(),"Anticounter") && !li->IsAC() ) continue;
698     // //
699     // if ( !strcmp(key->GetName(),"S4") && !li->IsS4() ) continue;
700     // //
701     // if ( !strcmp(key->GetName(),"NeutronD") && !li->IsND() ) continue;
702     // //
703     // if ( !strcmp(key->GetName(),"OrbitalInfo") && !li->IsORB() ) continue;
704     // //
705     // if ( !strcmp(key->GetName(),"Run") && !li->IsRUN() ) continue;
706     // //
707     // if ( strcmp(key->GetName(),"Calorimeter") && strcmp(key->GetName(),"Tracker") && strcmp(key->GetName(),"ToF") && strcmp(key->GetName(),"Trigger") && strcmp(key->GetName(),"Anticounter") && strcmp(key->GetName(),"S4") && strcmp(key->GetName(),"NeutronD") && strcmp(key->GetName(),"OrbitalInfo") && strcmp(key->GetName(),"Run") && strcmp(key->GetName(),"ProcessID0") ){
708     // if ( DebugMode() ) printf(" ERROR UNKNOWN KEY %s !\n",key->GetName());
709     // continue;
710     // };
711     // //
712     // printf(" 1 \n");
713     // allNames.Add(new TObjString(key->GetName()));
714     // printf(" 2 \n");
715     // //
716     // // read object from first source file
717     // //
718     // current_sourcedir->cd();
719     // TObject *obj = key->ReadObj();
720     // printf(" 3 \n");
721     // //
722     // if ( obj->IsA()->InheritsFrom("TTree") ){
723     // //
724     // // loop over all source files create a chain of Trees "globChain"
725     // //
726     // TString obj_name;
727     // printf(" 4 \n");
728     // //
729     // if ( path.Length() ) {
730     // obj_name = path + "/" + obj->GetName();
731     // } else {
732     // obj_name = obj->GetName();
733     // };
734     // //
735     // globChain = new TChain(obj_name);
736     // //
737     // globChain->SetCacheSize(0);
738     // //
739     // printf(" 5 \n");
740     // globChain->Add(first_source->GetName());
741     // printf(" 6 \n");
742     // //
743     // TFile *nextsource = (TFile*)sourcelist->After( first_source );
744     // //
745     // while ( nextsource ) {
746     // //
747     // //do not add to the list a file that does not contain this Tree
748     // //
749     // printf(" 7 \n");
750     // TFile *curf = TFile::Open(nextsource->GetName());
751     // //
752     // if ( curf ) {
753     // //
754     // Bool_t mustAdd = kFALSE;
755     // //
756     // if (curf->FindKey(obj_name)) {
757     // //
758     // mustAdd = kTRUE;
759     // //
760     // } else {
761     // //
762     // //we could be more clever here. No need to import the object
763     // //we are missing a function in TDirectory
764     // //
765     // TObject *aobj = curf->Get(obj_name);
766     // //
767     // if ( aobj ){
768     // mustAdd = kTRUE;
769     // delete aobj;
770     // };
771     // };
772     // if (mustAdd) {
773     // printf(" 8 \n");
774     // globChain->Add(nextsource->GetName());
775     // printf(" 9 \n");
776     // };
777     // };
778     // delete curf;
779     // nextsource = (TFile*)sourcelist->After(nextsource);
780     // };
781     // //
782     // printf(" 10 \n");
783     // delete nextsource;
784     // printf(" 11 \n");
785     // //
786     // } else {
787     // //
788     // // object is of no type that we know or can handle
789     // //
790     // if ( DebugMode() ) cout << "Unknown object type, name: "
791     // << obj->GetName() << " title: " << obj->GetTitle() << endl;
792     // };
793     // //
794     // // now write the merged histogram (which is "in" obj) to the target file
795     // // note that this will just store obj in the current directory level,
796     // // which is not persistent until the complete directory itself is stored
797     // // by "target->Write()" below
798     // //
799     // printf(" 12 \n");
800     // if ( obj ){
801     // //
802     // target->cd();
803     // //
804     // if( obj->IsA()->InheritsFrom("TTree") ) {
805     // //
806     // Long64_t nfiles = 0;
807     // if ( fastMethod ){
808     // // globChain->Merge(target->GetFile(),0,"C keep fast");
809     // nfiles=this->Mergy((TChain*)globChain,target->GetFile(),0,"C keep fast");
810     // } else {
811     // //globChain->Merge(target->GetFile(),0,"C keep");
812     // printf(" 13 %llu \n",globChain->GetEntries());
813     // nfiles=this->Mergy((TChain*)globChain,target->GetFile(),0,"C keep");
814     // printf(" 14 \n");
815     // };
816     // //
817     // merged = true;
818     // //
819     // if ( DebugMode() ){
820     // printf(" Merged %i files\n",(int)nfiles);
821     // globChain->ls();
822     // };
823     // //
824     // delete globChain;
825     // // return;
826     // //
827     // } else {
828     // //
829     // // obj->Write( key->GetName() ); // <==================================================================================
830     // //
831     // };
832     // };
833     // delete obj;
834     // oldkey = key;
835     // };
836     // //
837     // first_source = (TDirectory*)sourcelist->After(first_source);
838     // //
839     // };
840     // // save modifications to target file
841     // //
842     // target->SaveSelf(kTRUE);
843     // //
844 mocchiut 1.5 };
845    
846    
847 mocchiut 1.14 // Long64_t RunGlue::Mergy(TChain *mychain, TFile* file, Int_t basketsize, Option_t* option){
848     // // We must have been passed a file, we will use it
849     // // later to reset the compression level of the branches.
850     // if (!file) {
851     // // FIXME: We need an error message here.
852     // printf(" 19 \n");
853     // return 0;
854     // }
855     // printf(" 20 \n");
856    
857     // // Options
858     // Bool_t fastClone = kFALSE;
859     // TString opt = option;
860     // opt.ToLower();
861     // if (opt.Contains("fast")) {
862     // fastClone = kTRUE;
863     // printf(" 21 \n");
864     // }
865     // // The chain tree must have a list of branches
866     // // because we may try to change their basket
867     // // size later.
868     // TObjArray* lbranches = mychain->GetListOfBranches();
869     // if (!lbranches) {
870     // // FIXME: We need an error message here.
871     // printf(" 22 \n");
872     // return 0;
873     // }
874    
875     // // file->cd();
876     // // The chain must have a current tree because
877     // // that is the one we will clone.
878     // // if (!fTree) {
879     // // -- LoadTree() has not yet been called, no current tree.
880     // // FIXME: We need an error message here.
881     // // return 0;
882     // // }
883    
884     // // Copy the chain's current tree without
885     // // copying any entries, we will do that later.
886     // printf(" 23 \n");
887     // TTree* newTree = mychain->CloneTree(0);
888     // if (!newTree) {
889     // // FIXME: We need an error message here.
890     // printf(" 24 \n");
891     // return 0;
892     // }
893     // printf(" 25 \n");
894    
895    
896     // // Strip out the (potential) directory name.
897     // // FIXME: The merged chain may or may not have the
898     // // same name as the original chain. This is
899     // // bad because the chain name determines the
900     // // names of the trees in the chain by default.
901     // printf(" 26 \n");
902     // newTree->SetName(gSystem->BaseName(mychain->GetName()));
903     // printf(" 27 \n");
904    
905     // // FIXME: Why do we do this?
906     // // newTree->SetAutoSave(-1);
907     // newTree->SetAutoSave(900000000000000LL);
908    
909     // printf(" 28 \n");
910     // // Circularity is incompatible with merging, it may
911     // // force us to throw away entries, which is not what
912     // // we are supposed to do.
913     // newTree->SetCircular(0);
914    
915     // // Reset the compression level of the branches.
916     // if (opt.Contains("c")) {
917     // TBranch* branch = 0;
918     // TIter nextb(newTree->GetListOfBranches());
919     // while ((branch = (TBranch*) nextb())) {
920     // printf(" 29 \n");
921     // branch->SetCompressionLevel(file->GetCompressionLevel());
922     // }
923     // }
924    
925     // printf(" 30 \n");
926     // // Reset the basket size of the branches.
927     // if (basketsize > 1000) {
928     // TBranch* branch = 0;
929     // TIter nextb(newTree->GetListOfBranches());
930     // while ((branch = (TBranch*) nextb())) {
931     // printf(" 31 \n");
932     // branch->SetBasketSize(basketsize);
933     // }
934     // }
935    
936     // printf(" 32 \n");
937     // Long64_t nentries = mychain->GetEntriesFast();
938     // //Long64_t nentries = mychain->GetEntries();
939    
940     // // Copy the entries.
941     // if (fastClone) {
942     // // For each tree in the chain.
943     // for (Long64_t i = 0; i < nentries; i += mychain->GetTree()->GetEntries()) {
944     // if (mychain->LoadTree(i) < 0) {
945     // break;
946     // }
947     // TTreeCloner cloner(mychain->GetTree(), newTree, option);
948     // if (cloner.IsValid()) {
949     // newTree->SetEntries(newTree->GetEntries() + mychain->GetTree()->GetEntries());
950     // cloner.Exec();
951     // } else {
952     // if (mychain->GetFile()) {
953     // printf("Merge Skipped file %s\n", mychain->GetFile()->GetName());
954     // // } else {
955     // // Warning("Merge", "Skipped file number %d\n", fTreeNumber);
956     // }
957     // }
958     // }
959     // } else {
960     // printf(" 33 %llu \n",nentries);
961     // mychain->Print();
962     // for (Long64_t i = 0; i < nentries; i++) {
963     // printf(" i %llu \n",i);
964     // // for (Long64_t i = 0; i < 1; i++) {
965     // if (mychain->GetEntry(i) <= 0) {
966     // break;
967     // }
968     // newTree->Fill();
969     // }
970     // printf(" 34 \n");
971     // }
972    
973     // // Write the new tree header.
974     // printf(" 35 \n");
975     // newTree->Write();
976    
977     // printf(" 36 \n");
978     // // Get our return value.
979     // Int_t nfiles = newTree->GetFileNumber() + 1;
980    
981     // // Close and delete the current file of the new tree.
982     // if (!opt.Contains("keep")) {
983     // // FIXME: What happens to fDirectory in newTree here?
984     // delete newTree->GetCurrentFile();
985     // }
986     // return nfiles;
987     // }

  ViewVC Help
Powered by ViewVC 1.1.23