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

Diff of /PadmeAmidala/src/RunGlue.cpp

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.8 by pamela, Sun Feb 25 16:33:33 2007 UTC revision 1.20 by mocchiut, Fri Oct 17 13:07:54 2014 UTC
# Line 25  RunGlue::RunGlue() { Line 25  RunGlue::RunGlue() {
25  RunGlue::RunGlue(TSQLServer *da, UInt_t ru, TString di, TString wrkdi) {  RunGlue::RunGlue(TSQLServer *da, UInt_t ru, TString di, TString wrkdi) {
26    fDBG = false;    fDBG = false;
27    li = new PamLevel2();    li = new PamLevel2();
28      //  li = 0;
29    this->Clear();    this->Clear();
30    dbc = da;    dbc = da;
31    run = ru;    run = ru;
32    dir = di;    dir = di;
33    //    //
34    TString wd = gSystem->WorkingDirectory();      wd = gSystem->WorkingDirectory();  
35    //    //
36    outdir = wrkdi;    outdir = wrkdi;
37    if ( !strcmp(outdir.Data(),"") ) outdir = wd;    if ( !strcmp(outdir.Data(),"") ) outdir = wd;
# Line 41  RunGlue::RunGlue(TSQLServer *da, UInt_t Line 42  RunGlue::RunGlue(TSQLServer *da, UInt_t
42      runmode = false;      runmode = false;
43      createlist = true;      createlist = true;
44    };    };
45      fUpgrade = true;
46    //    //
47    //  lList = new TList();    //  lList = new TList();
48    //    //
49  };  };
50    
   
51  void RunGlue::Clear() {  void RunGlue::Clear() {
52    fEnd = false;    fEnd = false;
53    run = 0;    run = 0;
# Line 75  void RunGlue::SetDList(TString list) { Line 76  void RunGlue::SetDList(TString list) {
76    if (list.Contains("+ALL", TString::kIgnoreCase)) RUN = true;    if (list.Contains("+ALL", TString::kIgnoreCase)) RUN = true;
77    //    //
78    fDList = list;    fDList = list;
79    li->SetWhichTrees(fDList);    //  li->SetWhichTrees(fDList);
80    //    //
81    if ( DebugMode() ) printf(" Detector list is %s \n",fDList.Data());    if ( DebugMode() ) printf(" Detector list is %s \n",fDList.Data());
82    //    //
83  };  };
84    
85  TList *RunGlue::GetRunList(){  TList *RunGlue::GetRunList(){
86    //    //  
87    lList = new TList();    lList = new TList();
88    lList->Clear();    lList->Clear();
89    TString thisrun;    TString thisrun;
# Line 114  TList *RunGlue::GetRunList(){ Line 115  TList *RunGlue::GetRunList(){
115      TTimeStamp *llim = new TTimeStamp(YY,MM,DD,0,0,0,0,true,0);      TTimeStamp *llim = new TTimeStamp(YY,MM,DD,0,0,0,0,true,0);
116      //      //
117      UInt_t lowerlimit = llim->GetSec();      UInt_t lowerlimit = llim->GetSec();
118      UInt_t upperlimit = lowerlimit + 86401;      UInt_t upperlimit = lowerlimit + 86400;
119      //      //
120      if ( DebugMode() ) printf(" YY %u MM %u DD %u ll %u ul %u \n",YY,MM,DD,lowerlimit,upperlimit);      if ( DebugMode() ) printf(" YY %u MM %u DD %u ll %u ul %u \n",YY,MM,DD,lowerlimit,upperlimit);
121      //      //
# Line 173  TList *RunGlue::GetRunList(){ Line 174  TList *RunGlue::GetRunList(){
174        if ( li->CheckLevel2File(thisrun) ){        if ( li->CheckLevel2File(thisrun) ){
175          lList->Add(su);          lList->Add(su);
176        } else {        } else {
177          if ( DebugMode() ) printf(" RUN %s DISCARDED \n",Row->GetField(0));                  if ( DebugMode() ) printf(" RUN %s DISCARDED \n",Row->GetField(0));
178        };        };
179        //        //
180      };      };
# Line 281  TList *RunGlue::GetRunList(){ Line 282  TList *RunGlue::GetRunList(){
282      TTimeStamp *llim = new TTimeStamp(YY,MM,DD,0,0,0,0,true,0);      TTimeStamp *llim = new TTimeStamp(YY,MM,DD,0,0,0,0,true,0);
283      //      //
284      UInt_t lowerlimit = llim->GetSec();      UInt_t lowerlimit = llim->GetSec();
285      UInt_t upperlimit = lowerlimit + 86401;      UInt_t upperlimit = lowerlimit + 86400;
286      //      //
287      if ( DebugMode() ) printf(" YY %u MM %u DD %u ll %u ul %u \n",YY,MM,DD,lowerlimit,upperlimit);      if ( DebugMode() ) printf(" YY %u MM %u DD %u ll %u ul %u \n",YY,MM,DD,lowerlimit,upperlimit);
288      //      //
# Line 394  Bool_t RunGlue::OpenFile(){ Line 395  Bool_t RunGlue::OpenFile(){
395      return(false);      return(false);
396    } else {    } else {
397      //      //
398        // try to lock tables and work on a db level to avoid multiple file simultaneous access
399        //
400        stringstream oss;
401        //  
402        if ( fUpgrade ){
403          oss.str("");
404          oss << "lock table GL_ROOT write;";
405          TSQLResult *result = 0;
406          TSQLRow *row = 0;
407          result = dbc->Query(oss.str().c_str());
408          oss.str("");
409          oss << "select ID from GL_ROOT where NAME='" << ((TString)gSystem->BaseName(this->GetFilename())).Data() << "';";
410          result = dbc->Query(oss.str().c_str());
411          row = result->Next();
412          if ( row ){
413            printf("Error opening target file (does %s exist? already in the DB? are the permissions ok?)\n",(this->GetFilename()).Data());
414            return(false);
415          } else {
416            oss.str("");
417            oss << "insert into GL_ROOT (PATH,NAME) values ('$PAM_L2','" << ((TString)gSystem->BaseName(this->GetFilename())).Data() << "');";      
418            result = dbc->Query(oss.str().c_str());
419          };
420          oss.str("");
421          oss << "unlock tables;";
422          result = dbc->Query(oss.str().c_str());
423        };
424        //    Target = TFile::Open((this->GetFilename()).Data(), "RECREATE" );
425        Target = TFile::Open((this->GetFilename()).Data(), "NEW" );    
426        //    
427      printf(" Output file does not exist, creating it\n");      printf(" Output file does not exist, creating it\n");
428      //      //
429      Long64_t maxsize = 99900000000LL;        Long64_t maxsize = 99900000000LL;  
430      //      //
431      Target = TFile::Open((this->GetFilename()).Data(), "RECREATE" );      if ( !Target || Target->IsZombie()) {
432          printf("Error opening target file (does %s exist? are the permissions ok?)\n",(this->GetFilename()).Data());
433          //      exit(1);
434          return(false);
435        }
436        //
437        Target->Write();
438        //
439      //fastMethod = kTRUE;      //fastMethod = kTRUE;
440      fastMethod = kFALSE;      fastMethod = kFALSE;
441      //          //    
     //      
     if ( !Target || Target->IsZombie()) {  
       printf("Error opening target file (does %s exist?)\n",(this->GetFilename()).Data());  
       exit(1);  
     }  
442      //      //
443      TTree::SetMaxTreeSize(maxsize);      TTree::SetMaxTreeSize(maxsize);
444      Target->SetCompressionLevel(2);      //    Target->SetCompressionLevel(2);
445        Target->SetCompressionLevel(3);
446        //Target->SetCompressionLevel(5);
447      //      //
448      fOpen = true;      fOpen = true;
449      return(true);      return(true);
# Line 471  void RunGlue::UpdateDB(TList *dlist){ Line 505  void RunGlue::UpdateDB(TList *dlist){
505    };    };
506    //    //
507    myquery.str("");    myquery.str("");
   myquery << "insert into GL_ROOT (ID_RAW,PATH,NAME) values (" << idr << ",'" << outdir.Data() << "','" << ((TString)gSystem->BaseName(this->GetFilename())).Data() << "');";  
   if ( DebugMode() ) printf(" query is %s \n",myquery.str().c_str());  
   //  
   pResult = dbc->Query(myquery.str().c_str());  
   if ( !pResult ){  
     printf(" ERROR WRITING ON DB!\n");  
     return;  
   };  
   myquery.str("");  
508    myquery << "select ID from GL_ROOT where NAME='" << ((TString)gSystem->BaseName(this->GetFilename())).Data() << "';";    myquery << "select ID from GL_ROOT where NAME='" << ((TString)gSystem->BaseName(this->GetFilename())).Data() << "';";
509    if ( DebugMode() ) printf(" query is %s \n",myquery.str().c_str());    if ( DebugMode() ) printf(" query is %s \n",myquery.str().c_str());
510    //    //
# Line 495  void RunGlue::UpdateDB(TList *dlist){ Line 520  void RunGlue::UpdateDB(TList *dlist){
520    } else {    } else {
521      idl2 = (UInt_t)atoll(Row->GetField(0));      idl2 = (UInt_t)atoll(Row->GetField(0));
522    };    };
523      myquery.str("");
524      //  myquery << "insert into GL_ROOT (ID_RAW,PATH,NAME) values (" << idr << ",'" << outdir.Data() << "','" << ((TString)gSystem->BaseName(this->GetFilename())).Data() << "');";
525      //  myquery << "insert into GL_ROOT (ID_RAW,PATH,NAME) values (" << idr << ",'$PAM_L2','" << ((TString)gSystem->BaseName(this->GetFilename())).Data() << "');";
526      myquery << "update GL_ROOT set ID_RAW=" << idr << " where ID=" << idl2 << ";";
527      if ( DebugMode() ) printf(" query is %s \n",myquery.str().c_str());
528      //
529      pResult = dbc->Query(myquery.str().c_str());
530      if ( !pResult ){
531        printf(" ERROR WRITING ON DB!\n");
532        return;
533      };
534    //    //
535    //    //
536    //    //
# Line 527  void RunGlue::UpdateDB(TList *dlist){ Line 563  void RunGlue::UpdateDB(TList *dlist){
563  //  //
564  void RunGlue::MergeRootfile(TList *sourcelist) {  void RunGlue::MergeRootfile(TList *sourcelist) {
565    //    //
566    merged = false;    merged = true;
   //  
   TDirectory *target = Target;  
   //  
   if ( DebugMode() ) printf("\nTarget path is: %s \n",target->GetPath());  
567    //    //
568    TString path( (char*)strstr( target->GetPath(), ":" ) );    //  if ( li ) li->Delete();
569    path.Remove(0,2);    PamLevel2 *nli = new PamLevel2(wd,sourcelist,fDList);
570    //    nli->SetSELLI(2);
571    TDirectory *first_source = (TDirectory*)sourcelist->First();    //
572    THashList allNames;    Target->cd();
573    //    //
574    while ( first_source ){    nli->CreateCloneTrees(Target);
575      //    //
576      TDirectory *current_sourcedir = first_source->GetDirectory(path);    /*  nli->GetCloneTree("Tracker")->SetAutoSave(900000000000000LL);
577      //    nli->GetCloneTree("Trigger")->SetAutoSave(900000000000000LL);
578      if ( !current_sourcedir ){    nli->GetCloneTree("Calorimeter")->SetAutoSave(900000000000000LL);
579        first_source = (TDirectory*)sourcelist->After(first_source);    nli->GetCloneTree("S4")->SetAutoSave(900000000000000LL);
580        continue;    nli->GetCloneTree("Anticounter")->SetAutoSave(900000000000000LL);
581      nli->GetCloneTree("NeutronD")->SetAutoSave(900000000000000LL);
582      nli->GetCloneTree("OrbitalInfo")->SetAutoSave(900000000000000LL);
583      nli->GetCloneTree("Run")->SetAutoSave(900000000000000LL);
584      nli->GetCloneTree("ToF")->SetAutoSave(900000000000000LL);*/
585      //
586      ULong64_t nevents = nli->GetEntries();        
587      printf(" NEVENTS %llu \n",nevents);
588      for(ULong64_t iev=0; iev<nevents; iev++){
589        nli->Clear();
590        if( nli->GetEntry(iev) ){
591          nli->FillCloneTrees();
592        };
593      };
594      Target->cd();
595      nli->WriteCloneTrees();
596      printf("Written file %s \n",Target->GetName());
597      //  Target->Write();
598      //  TTree *slist = (TTree*)Target->Get("SelectionList");
599      //  slist->Delete("all");
600      if ( !nli->GetCloneTree("ProcessingInfo") ){
601        TChain *P = new TChain("ProcessingInfo");
602        // loop over files and create chains
603        TIter next(sourcelist);
604        TSystemFile *questo = 0;
605        while ((questo = (TSystemFile*) next())) {
606          TString name = questo->GetName();
607          P->Add(name);
608      }      }
609      //      TTree *Pclone = P->CloneTree();
610      // loop over all keys in this directory      Target->cd();
611      //      Pclone->Write("ProcessingInfo",TObject::kOverwrite);
612      TChain *globChain = 0;          P->Delete();
613      TIter nextkey( current_sourcedir->GetListOfKeys() );      P=0;
614      TKey *key = 0;    }
615      TKey *oldkey = 0;    //  
616      TH1::AddDirectory(kFALSE); // gain time, do not add the objects in the list in memory    Target->Close();
617      //  
618      while ( (key = (TKey*)nextkey()) ) {  //   //
619        //  //   TDirectory *target = Target;
620        //      printf(" target ls \n");  //   //
621        //      Target->ls();  //   if ( DebugMode() ) printf("\nTarget path is: %s \n",target->GetPath());
622        //  //   //
623        if ( current_sourcedir == target ) break;  //   TString path( (char*)strstr( target->GetPath(), ":" ) );
624        //  //   path.Remove(0,2);
625        if ( oldkey && !strcmp(oldkey->GetName(),key->GetName()) ) continue; //keep only the highest cycle number for each key  //   //
626        //  //   TDirectory *first_source = (TDirectory*)sourcelist->First();
627        if ( allNames.FindObject(key->GetName()) ) continue;  //   THashList allNames;
628        //  //   //
629        if ( DebugMode() ) printf(" Key name is -%s- \n",key->GetName());  //   while ( first_source ){
630        //  //     //
631        //  //     TDirectory *current_sourcedir = first_source->GetDirectory(path);
632        //  //     //
633        if ( !strcmp(key->GetName(),"Tracker") && !li->IsTRK2() && !li->IsTRK1() && !li->IsTRKh() ) continue;  //     if ( !current_sourcedir ){
634        //  //       first_source = (TDirectory*)sourcelist->After(first_source);
635        if ( !strcmp(key->GetName(),"Calorimeter") && !li->IsCAL2() && !li->IsCAL1() ) continue;  //       continue;
636        //  //     }
637        if ( !strcmp(key->GetName(),"ToF") && !li->IsTOF() ) continue;  //     //
638        //  //     // loop over all keys in this directory
639        if ( !strcmp(key->GetName(),"Trigger") && !li->IsTRG() ) continue;  //     //
640        //  //     TChain *globChain = 0;    
641        if ( !strcmp(key->GetName(),"Anticounter") && !li->IsAC() ) continue;  //     TIter nextkey( current_sourcedir->GetListOfKeys() );
642        //  //     TKey *key = 0;
643        if ( !strcmp(key->GetName(),"S4") && !li->IsS4() ) continue;  //     TKey *oldkey = 0;
644        //  //     TH1::AddDirectory(kFALSE); // gain time, do not add the objects in the list in memory
645        if ( !strcmp(key->GetName(),"NeutronD") && !li->IsND() ) continue;  //     //
646        //  //     while ( (key = (TKey*)nextkey()) ) {
647        if ( !strcmp(key->GetName(),"OrbitalInfo") && !li->IsORB() ) continue;  //       //
648        //  //       //      printf(" target ls \n");
649        if ( !strcmp(key->GetName(),"Run") && !li->IsRUN() ) continue;  //       //      Target->ls();
650        //  //       //
651        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") ){  //       if ( current_sourcedir == target ) break;
652          if ( DebugMode() ) printf(" ERROR UNKNOWN KEY %s !\n",key->GetName());  //       //
653          continue;  //       if ( oldkey && !strcmp(oldkey->GetName(),key->GetName()) ) continue; //keep only the highest cycle number for each key
654        };  //       //
655        //  //       if ( allNames.FindObject(key->GetName()) ) continue;
656        allNames.Add(new TObjString(key->GetName()));  //       //
657        //  //       if ( DebugMode() ) printf(" Key name is -%s- \n",key->GetName());
658        // read object from first source file  //       //
659        //  //       //
660        current_sourcedir->cd();  //       //
661        TObject *obj = key->ReadObj();  //       if ( !strcmp(key->GetName(),"Tracker") && !li->IsTRK2() && !li->IsTRK1() && !li->IsTRKh() ) continue;
662        //  //       //
663        if ( obj->IsA()->InheritsFrom("TTree") ){  //       if ( !strcmp(key->GetName(),"Calorimeter") && !li->IsCAL2() && !li->IsCAL1() ) continue;
664          //  //       //
665          // loop over all source files create a chain of Trees "globChain"  //       if ( !strcmp(key->GetName(),"ToF") && !li->IsTOF() ) continue;
666          //  //       //
667          TString obj_name;  //       if ( !strcmp(key->GetName(),"Trigger") && !li->IsTRG() ) continue;
668          //  //       //
669          if ( path.Length() ) {  //       if ( !strcmp(key->GetName(),"Anticounter") && !li->IsAC() ) continue;
670            obj_name = path + "/" + obj->GetName();  //       //
671          } else {  //       if ( !strcmp(key->GetName(),"S4") && !li->IsS4() ) continue;
672            obj_name = obj->GetName();  //       //
673          };  //       if ( !strcmp(key->GetName(),"NeutronD") && !li->IsND() ) continue;
674          //  //       //
675          globChain = new TChain(obj_name);  //       if ( !strcmp(key->GetName(),"OrbitalInfo") && !li->IsORB() ) continue;
676          //  //       //
677          globChain->SetCacheSize(0);  //       if ( !strcmp(key->GetName(),"Run") && !li->IsRUN() ) continue;
678          //  //       //
679          globChain->Add(first_source->GetName());  //       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") ){
680          //  //      if ( DebugMode() ) printf(" ERROR UNKNOWN KEY %s !\n",key->GetName());
681          TFile *nextsource = (TFile*)sourcelist->After( first_source );  //      continue;
682          //  //       };
683          while ( nextsource ) {              //       //
684            //  //       printf(" 1 \n");
685            //do not add to the list a file that does not contain this Tree  //       allNames.Add(new TObjString(key->GetName()));
686            //  //       printf(" 2 \n");
687            TFile *curf = TFile::Open(nextsource->GetName());  //       //
688            //  //       // read object from first source file
689            if ( curf ) {  //       //
690              //  //       current_sourcedir->cd();
691              Bool_t mustAdd = kFALSE;  //       TObject *obj = key->ReadObj();
692              //  //       printf(" 3 \n");
693              if (curf->FindKey(obj_name)) {  //       //
694                //  //       if ( obj->IsA()->InheritsFrom("TTree") ){
695                mustAdd = kTRUE;  //      //
696                //  //              // loop over all source files create a chain of Trees "globChain"
697              } else {  //      //
698                //  //      TString obj_name;
699                //we could be more clever here. No need to import the object  //      printf(" 4 \n");
700                //we are missing a function in TDirectory  //      //
701                //  //      if ( path.Length() ) {
702                TObject *aobj = curf->Get(obj_name);  //        obj_name = path + "/" + obj->GetName();
703                //  //      } else {
704                if ( aobj ){  //        obj_name = obj->GetName();
705                  mustAdd = kTRUE;  //      };
706                  delete aobj;  //      //
707                };  //      globChain = new TChain(obj_name);
708              };  //      //
709              if (mustAdd) {  //      globChain->SetCacheSize(0);
710                globChain->Add(nextsource->GetName());  //      //
711              };  //      printf(" 5 \n");
712            };  //      globChain->Add(first_source->GetName());
713            delete curf;  //      printf(" 6 \n");
714            nextsource = (TFile*)sourcelist->After(nextsource);  //      //
715          };  //      TFile *nextsource = (TFile*)sourcelist->After( first_source );
716          //  //      //
717          delete nextsource;  //      while ( nextsource ) {            
718          //  //        //
719        } else {  //        //do not add to the list a file that does not contain this Tree
720          //  //        //
721          // object is of no type that we know or can handle  //        printf(" 7 \n");
722          //  //        TFile *curf = TFile::Open(nextsource->GetName());
723          if ( DebugMode() ) cout << "Unknown object type, name: "  //        //
724               << obj->GetName() << " title: " << obj->GetTitle() << endl;  //        if ( curf ) {
725        };  //          //
726        //  //          Bool_t mustAdd = kFALSE;
727        // now write the merged histogram (which is "in" obj) to the target file  //          //
728        // note that this will just store obj in the current directory level,  //          if (curf->FindKey(obj_name)) {
729        // which is not persistent until the complete directory itself is stored  //            //
730        // by "target->Write()" below  //            mustAdd = kTRUE;
731        //  //            //
732        if ( obj ){  //          } else {
733          //  //            //
734          target->cd();  //            //we could be more clever here. No need to import the object
735          //  //            //we are missing a function in TDirectory
736          if( obj->IsA()->InheritsFrom("TTree") ) {  //            //
737            //  //            TObject *aobj = curf->Get(obj_name);
738            Long64_t nfiles = 0;  //            //
739            if ( fastMethod ){  //            if ( aobj ){
740              //      globChain->Merge(target->GetFile(),0,"C keep fast");  //              mustAdd = kTRUE;
741              nfiles=this->Mergy((TChain*)globChain,target->GetFile(),0,"C keep fast");  //              delete aobj;
742            } else {  //            };
743              //globChain->Merge(target->GetFile(),0,"C keep");  //          };
744              nfiles=this->Mergy((TChain*)globChain,target->GetFile(),0,"C keep");  //          if (mustAdd) {
745            };  //            printf(" 8 \n");
746            //  //            globChain->Add(nextsource->GetName());
747            merged = true;  //            printf(" 9 \n");
748            //  //          };
749            if ( DebugMode() ){  //        };
750              printf(" Merged %i files\n",(int)nfiles);  //        delete curf;
751              globChain->ls();  //        nextsource = (TFile*)sourcelist->After(nextsource);
752            };  //      };
753            //  //      //
754            delete globChain;  //      printf(" 10 \n");      
755            //      return;  //      delete nextsource;
756            //  //      printf(" 11 \n");
757          } else {  //      //
758            //  //       } else {
759            //      obj->Write( key->GetName() ); // <==================================================================================  //      //
760            //  //      // object is of no type that we know or can handle
761          };  //      //
762        };  //      if ( DebugMode() ) cout << "Unknown object type, name: "
763        delete obj;  //           << obj->GetName() << " title: " << obj->GetTitle() << endl;
764        oldkey = key;  //       };
765      };  //       //
766      //  //       // now write the merged histogram (which is "in" obj) to the target file
767      first_source = (TDirectory*)sourcelist->After(first_source);  //       // note that this will just store obj in the current directory level,
768      //  //       // which is not persistent until the complete directory itself is stored
769    };  //       // by "target->Write()" below
770    // save modifications to target file  //       //
771    //  //       printf(" 12 \n");
772    target->SaveSelf(kTRUE);  //       if ( obj ){
773    //  //      //
774    //      target->cd();
775    //      //
776    //      if( obj->IsA()->InheritsFrom("TTree") ) {
777    //        //
778    //        Long64_t nfiles = 0;
779    //        if ( fastMethod ){
780    //          //      globChain->Merge(target->GetFile(),0,"C keep fast");
781    //          nfiles=this->Mergy((TChain*)globChain,target->GetFile(),0,"C keep fast");
782    //        } else {
783    //          //globChain->Merge(target->GetFile(),0,"C keep");
784    //          printf(" 13 %llu \n",globChain->GetEntries());          
785    //          nfiles=this->Mergy((TChain*)globChain,target->GetFile(),0,"C keep");
786    //          printf(" 14 \n");
787    //        };
788    //        //
789    //        merged = true;
790    //        //
791    //        if ( DebugMode() ){
792    //          printf(" Merged %i files\n",(int)nfiles);
793    //          globChain->ls();
794    //        };
795    //        //
796    //        delete globChain;
797    //        //      return;
798    //        //
799    //      } else {
800    //        //
801    //        //      obj->Write( key->GetName() ); // <==================================================================================
802    //        //
803    //      };
804    //       };
805    //       delete obj;
806    //       oldkey = key;
807    //     };
808    //     //
809    //     first_source = (TDirectory*)sourcelist->After(first_source);
810    //     //
811    //   };
812    //   // save modifications to target file
813    //   //
814    //   target->SaveSelf(kTRUE);
815    //   //
816  };  };
817    
818    
819  Long64_t RunGlue::Mergy(TChain *mychain, TFile* file, Int_t basketsize, Option_t* option){  // Long64_t RunGlue::Mergy(TChain *mychain, TFile* file, Int_t basketsize, Option_t* option){
820     // We must have been passed a file, we will use it  //    // We must have been passed a file, we will use it
821     // later to reset the compression level of the branches.  //    // later to reset the compression level of the branches.
822     if (!file) {  //    if (!file) {
823        // FIXME: We need an error message here.  //       // FIXME: We need an error message here.
824       return 0;  //      printf(" 19 \n");
825     }  //      return 0;
826    //    }
827     // Options  //    printf(" 20 \n");
828     Bool_t fastClone = kFALSE;  
829     TString opt = option;  //    // Options
830     opt.ToLower();  //    Bool_t fastClone = kFALSE;
831     if (opt.Contains("fast")) {  //    TString opt = option;
832        fastClone = kTRUE;  //    opt.ToLower();
833     }  //    if (opt.Contains("fast")) {
834    //       fastClone = kTRUE;
835     // The chain tree must have a list of branches  //       printf(" 21 \n");
836     // because we may try to change their basket  //    }
837     // size later.  //    // The chain tree must have a list of branches
838     TObjArray* lbranches = mychain->GetListOfBranches();  //    // because we may try to change their basket
839     if (!lbranches) {  //    // size later.
840        // FIXME: We need an error message here.  //    TObjArray* lbranches = mychain->GetListOfBranches();
841        return 0;  //    if (!lbranches) {
842     }  //       // FIXME: We need an error message here.
843    //      printf(" 22 \n");
844     // The chain must have a current tree because  //       return 0;
845     // that is the one we will clone.  //    }
846     //   if (!fTree) {  
847        // -- LoadTree() has not yet been called, no current tree.  //    //   file->cd();
848        // FIXME: We need an error message here.  //    // The chain must have a current tree because
849     //      return 0;  //    // that is the one we will clone.
850     //   }  //    //   if (!fTree) {
851    //       // -- LoadTree() has not yet been called, no current tree.
852     // Copy the chain's current tree without  //       // FIXME: We need an error message here.
853     // copying any entries, we will do that later.  //    //      return 0;
854     TTree* newTree = mychain->CloneTree(0);  //    //   }
855     if (!newTree) {  
856        // FIXME: We need an error message here.  //    // Copy the chain's current tree without
857        return 0;  //    // copying any entries, we will do that later.
858     }  //    printf(" 23 \n");
859    //    TTree* newTree = mychain->CloneTree(0);
860     // Strip out the (potential) directory name.  //    if (!newTree) {
861     // FIXME: The merged chain may or may not have the  //       // FIXME: We need an error message here.
862     //        same name as the original chain.  This is  //      printf(" 24 \n");
863     //        bad because the chain name determines the  //       return 0;
864     //        names of the trees in the chain by default.  //    }
865     newTree->SetName(gSystem->BaseName(mychain->GetName()));  //    printf(" 25 \n");
866    
867     // FIXME: Why do we do this?  
868     //   newTree->SetAutoSave(-1);  //    // Strip out the (potential) directory name.
869     newTree->SetAutoSave(900000000000000LL);  //    // FIXME: The merged chain may or may not have the
870    //    //        same name as the original chain.  This is
871     // Circularity is incompatible with merging, it may  //    //        bad because the chain name determines the
872     // force us to throw away entries, which is not what  //    //        names of the trees in the chain by default.
873     // we are supposed to do.  //    printf(" 26 \n");
874     newTree->SetCircular(0);  //    newTree->SetName(gSystem->BaseName(mychain->GetName()));
875    //    printf(" 27 \n");
876     // Reset the compression level of the branches.  
877     if (opt.Contains("c")) {  //    // FIXME: Why do we do this?
878        TBranch* branch = 0;  //    //   newTree->SetAutoSave(-1);
879        TIter nextb(newTree->GetListOfBranches());  //    newTree->SetAutoSave(900000000000000LL);
880        while ((branch = (TBranch*) nextb())) {  
881           branch->SetCompressionLevel(file->GetCompressionLevel());  //    printf(" 28 \n");
882        }  //    // Circularity is incompatible with merging, it may
883     }  //    // force us to throw away entries, which is not what
884    //    // we are supposed to do.
885     // Reset the basket size of the branches.  //    newTree->SetCircular(0);
886     if (basketsize > 1000) {  
887        TBranch* branch = 0;  //    // Reset the compression level of the branches.
888        TIter nextb(newTree->GetListOfBranches());  //    if (opt.Contains("c")) {
889        while ((branch = (TBranch*) nextb())) {  //       TBranch* branch = 0;
890           branch->SetBasketSize(basketsize);  //       TIter nextb(newTree->GetListOfBranches());
891        }  //       while ((branch = (TBranch*) nextb())) {
892     }  //      printf(" 29 \n");
893    //          branch->SetCompressionLevel(file->GetCompressionLevel());
894     Long64_t nentries = mychain->GetEntriesFast();  //       }
895    //    }
896     // Copy the entries.  
897     if (fastClone) {  //    printf(" 30 \n");
898        // For each tree in the chain.  //    // Reset the basket size of the branches.
899        for (Long64_t i = 0; i < nentries; i += mychain->GetTree()->GetEntries()) {  //    if (basketsize > 1000) {
900           if (mychain->LoadTree(i) < 0) {  //       TBranch* branch = 0;
901              break;  //       TIter nextb(newTree->GetListOfBranches());
902           }  //       while ((branch = (TBranch*) nextb())) {
903           TTreeCloner cloner(mychain->GetTree(), newTree, option);  //      printf(" 31 \n");
904           if (cloner.IsValid()) {  //          branch->SetBasketSize(basketsize);
905              newTree->SetEntries(newTree->GetEntries() + mychain->GetTree()->GetEntries());  //       }
906              cloner.Exec();  //    }
907           } else {  
908              if (mychain->GetFile()) {  //    printf(" 32 \n");
909                printf("Merge Skipped file %s\n", mychain->GetFile()->GetName());  //    Long64_t nentries = mychain->GetEntriesFast();
910                 //            } else {  //    //Long64_t nentries = mychain->GetEntries();
911                 //               Warning("Merge", "Skipped file number %d\n", fTreeNumber);  
912              }  //    // Copy the entries.
913           }  //    if (fastClone) {
914        }  //       // For each tree in the chain.
915     } else {  //       for (Long64_t i = 0; i < nentries; i += mychain->GetTree()->GetEntries()) {
916        for (Long64_t i = 0; i < nentries; i++) {  //          if (mychain->LoadTree(i) < 0) {
917           if (mychain->GetEntry(i) <= 0) {  //             break;
918              break;  //          }
919           }  //          TTreeCloner cloner(mychain->GetTree(), newTree, option);
920           newTree->Fill();  //          if (cloner.IsValid()) {
921        }  //             newTree->SetEntries(newTree->GetEntries() + mychain->GetTree()->GetEntries());
922     }  //             cloner.Exec();
923    //          } else {
924     // Write the new tree header.  //             if (mychain->GetFile()) {
925     newTree->Write();  //            printf("Merge Skipped file %s\n", mychain->GetFile()->GetName());
926    //             //            } else {
927     // Get our return value.  //             //               Warning("Merge", "Skipped file number %d\n", fTreeNumber);
928     Int_t nfiles = newTree->GetFileNumber() + 1;  //             }
929    //          }
930     // Close and delete the current file of the new tree.  //       }
931     if (!opt.Contains("keep")) {  //    } else {
932        // FIXME: What happens to fDirectory in newTree here?  //      printf(" 33 %llu \n",nentries);
933        delete newTree->GetCurrentFile();  //      mychain->Print();
934     }  //      for (Long64_t i = 0; i < nentries; i++) {
935     return nfiles;  //        printf(" i %llu \n",i);
936  }  //        // for (Long64_t i = 0; i < 1; i++) {
937    //          if (mychain->GetEntry(i) <= 0) {
938    //             break;
939    //          }
940    //          newTree->Fill();
941    //       }
942    //       printf(" 34 \n");
943    //    }
944    
945    //    // Write the new tree header.
946    //    printf(" 35 \n");
947    //    newTree->Write();
948    
949    //    printf(" 36 \n");
950    //    // Get our return value.
951    //    Int_t nfiles = newTree->GetFileNumber() + 1;
952    
953    //    // Close and delete the current file of the new tree.
954    //    if (!opt.Contains("keep")) {
955    //       // FIXME: What happens to fDirectory in newTree here?
956    //       delete newTree->GetCurrentFile();
957    //    }
958    //    return nfiles;
959    // }

Legend:
Removed from v.1.8  
changed lines
  Added in v.1.20

  ViewVC Help
Powered by ViewVC 1.1.23