// // C/C++ headers // #include #include // // ROOT headers // #include #include #include #include // #include using namespace std; // int RunInfoCore(ULong64_t run, TFile *processFile, TSQLServer *dbc, Int_t runargc, char *runargv[]){ Int_t i = 0; Int_t sgnl = 0; // TString processFolder = "runinfoFolder"; if ( runargc > 0 ){ i = 0; while ( i < runargc ){ if ( !strcmp(runargv[i],"-processFolder") ) { if ( runargc < i+1 ){ throw -3; }; processFolder = (TString)runargv[i+1]; i++; }; i++; }; }; ItoRunInfo *runinfo = 0; stringstream temprname; const char* routdir = gSystem->DirName(gSystem->DirName(processFile->GetPath())); temprname.str(""); temprname << routdir; temprname << "/" << processFolder.Data(); // runinfo = new ItoRunInfo(dbc,processFile,processFolder); sgnl = runinfo->Update(run,"NONE",""); gSystem->Unlink(temprname.str().c_str()); // runinfo->Close(); processFile->cd(); if ( processFile ) processFile->Write("Run"); runinfo->Clear(); if ( sgnl < 0 ) throw sgnl; return(sgnl); }