/************************************************************************** * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. * * * * Author: The ALICE Off-line Project. * * Contributors are mentioned in the code where appropriate. * * * * Permission to use, copy, modify and distribute this software and its * * documentation strictly for non-commercial purposes is hereby granted * * without fee, provided that the above copyright notice appears in all * * copies and that both the copyright notice and this permission notice * * appear in the supporting documentation. The authors make no claims * * about the suitability of this software for any purpose. It is * * provided "as is" without express or implied warranty. * **************************************************************************/ /* marian.ivanov@cern.ch //TOOLKIT for chain manipulation: //Example usage: // // 1. Check the list of files AliXRDPROOFtoolkit toolkit; AliXRDPROOFtoolkit::FilterList("pp.txt","AliESDs.root esdTree AliESDfriends.root * Kinematics.root *",0) AliXRDPROOFtoolkit::FilterList("pp.txt","AliESDs.root esdTree AliESDfriends.root * Kinematics.root *",1) // //2. make a chain or random chain form the list of files TChain * chain = toolkit.MakeChain("esd.txt","esdTree",0,10) TChain * chainRandom = toolkit.MakeChainrandom("esd.txt","esdTree",0,10) chain->Draw("fTPCnclsF"); */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include ClassImp(AliXRDPROOFtoolkit) //______________________________________________________________________________ AliXRDPROOFtoolkit::AliXRDPROOFtoolkit () : TObject () , fVerbose(kFALSE), // verbso mode - print command fUserName(""), // user name fUserGroup(0) // user group info { // // // fUserGroup = gSystem->GetUserInfo(); fUserName = fUserGroup->fUser; fVerbose=1; } TChain* AliXRDPROOFtoolkit::MakeChain(const char*fileIn, const char * treeName, const char *fName, Int_t maxFiles, Int_t startFile) { // // Create the chain // TChain* chain = new TChain(treeName); // Open the input stream ifstream in; in.open(fileIn); // Read the input list of files and add them to the chain TString currentFile; Int_t counter=0; while(in.good()) { in >> currentFile; if (fName) { currentFile+="#"; currentFile+=fName; } if (!currentFile.Contains("root")) continue; // protection counter++; if (countermaxFiles+startFile) break; chain->Add(currentFile.Data()); } in.close(); return chain; } TChain* AliXRDPROOFtoolkit::MakeChainRandom(const char*fileIn, const char * treeName,const char *fName, Int_t maxFiles, Int_t startFile) { // // Create a TDSet - files are in random order // // filein - input list text file // treename - containg tree // maxFiles - maximum number of files included TObjArray array(10000); TChain* chain = new TChain(treeName); // Open the input stream ifstream in; in.open(fileIn); // Read the input list of files and add them to the chain TString currentFile; Int_t counter=0; while(in.good()) { in >> currentFile; if (fName) { currentFile+="#"; currentFile+=fName; } if (!currentFile.Contains("root")) continue; // protection counter++; // chain->Add(currentFile.Data()); array.AddLast(new TObjString(currentFile)); } in.close(); Int_t entries = array.GetEntries(); printf("Number of entries\t%d\n",entries); // // // Double_t *randomI = new Double_t[entries]; Int_t *indexes = new Int_t[entries]; for (Int_t i=0;iRndm(); TMath::Sort(entries,randomI,indexes); for (Int_t i=startFile; (iTestBit(TObject::kCannotPick)==kFALSE){ printf("%d\t%d\t%s\n",i, ifile, array.At(ifile)->GetName()); chain->Add(array.At(ifile)->GetName()); array.At(ifile)->SetBit(TObject::kCannotPick); } } return chain; } TDSet* AliXRDPROOFtoolkit::MakeSet(const char*fileIn, const char * treeName, const char *fName, Int_t maxFiles) { // // Create the TDSet out of list // filein - input list text file // treename - containg tree // maxFiles - maximum number of files included TDSet* chain = new TDSet(treeName); // Open the input stream ifstream in; in.open(fileIn); // Read the input list of files and add them to the chain TString currentFile; Int_t counter=0; while(in.good()) { in >> currentFile; if (fName) { currentFile+="#"; currentFile+=fName; } if (!currentFile.Contains("root")) continue; // protection counter++; if (maxFiles>0 && counter>maxFiles) break; chain->Add(currentFile.Data()); } in.close(); chain->Validate(); return chain; } TDSet* AliXRDPROOFtoolkit::MakeSetRandom(const char*fileIn, const char * treeName, const char *fName, Int_t maxFiles) { // // Create a TDSet - files are in random order // // filein - input list text file // treename - containg tree // maxFiles - maximum number of files included TObjArray array(10000); TDSet* chain = new TDSet(treeName); // Open the input stream ifstream in; in.open(fileIn); // Read the input list of files and add them to the chain TString currentFile; Int_t counter=0; while(in.good()) { in >> currentFile; if (fName) { currentFile+="#"; currentFile+=fName; } if (!currentFile.Contains("root")) continue; // protection counter++; // chain->Add(currentFile.Data()); array.AddLast(new TObjString(currentFile)); } in.close(); Int_t entries = array.GetEntries(); printf("Number of entries\t%d",entries); if (maxFiles<0) maxFiles=entries; if (maxFiles>entries) maxFiles=entries; for (Int_t i=0; iRndm()*Float_t(entries)); if (ifileTestBit(TObject::kCannotPick)==kFALSE){ printf("%d\t%d\t%s\n",i, ifile, array.At(ifile)->GetName()); chain->Add(array.At(ifile)->GetName()); array.At(ifile)->SetBit(TObject::kCannotPick); } } chain->Validate(); return chain; } //______________________________________________________________________________ void AliXRDPROOFtoolkit::CheckFiles (const char*fileIn, Int_t checkLevel, const char*treeToRetrieve, const char*varexp, const char*selection) { // // check the files // fstream fic; fic.open(fileIn, ios_base::in); fstream focGood; fstream focBad; focGood.open(Form("%s.Good",fileIn), ios_base::out|ios_base::trunc); focBad.open(Form("%s.Bad",fileIn), ios_base::out|ios_base::trunc); // if(!fic.is_open()) { cout<<"Can't open file "<Branch ("machine", "TObjString", &machineName, 256000,0); tree->Branch ("file", "TObjString", &fileName, 256000,0); tree->Branch ("level", &level, "level/I"); tree->Branch ("size", &size, "size/L"); tree->Branch ("nkey", &nkey, "nkey/I"); tree->Branch ("compress", &compressionFactor, "compress/F"); tree->Branch ("version", &version, "version/I"); // start loop over the files fic.getline(buffer, sizeof(buffer)); while (fic.good()){ // get the machine name if present in the file machine=strchr(buffer, '\t'); if(machine!=0x0){ machine[0]='\0'; line=machine+1; machine=buffer; machineName=new TObjString(machine); }else { machineName=new TObjString("x"); line=buffer; } cout<<"Inspecting file :"<String().Contains("AliESDs.root")){ // // check friend file // char fnameFriend[1000]; sprintf(fnameFriend,"%s/AliESDfriends.root",gSystem->DirName(fileName->String().Data())); cout<<"Inspecting file :"<IsZombie()) level=-3; if (ffriend->TestBit(TFile::kRecovered) || ffriend->TestBit(TFile::kWriteError)){ level=-2; } ffriend->Close(); delete ffriend; } } if(level>=-1 && f!=0x0){ level=1; size=f->GetSize(); nkey=f->GetNkeys(); compressionFactor=f->GetCompressionFactor(); version=f->GetVersion(); if(checkLevel>0 && !f->IsZombie()){ level=2; if(checkLevel>1 && (getTree=(TTree*)f->Get(treeToRetrieve))!=0x0){ level=3; Int_t tentries = getTree->GetEntries(); if (tentries>=0) level=4; cout<<"Number of entries :"<GetEntries()<3 &&tentries>0) { getTree->SetBranchStatus("*",1); try{ TH1F his("his","his",100,-1,1); Int_t selected = getTree->Draw(Form("%s>>his",varexp), selection, "goff", 1, tentries-1); cout<<"Selected\t"<-1){ level=5; //try to remove the created histogrames ... // TH1F *htemp = (TH1F*)gPad->GetPrimitive("htemp"); // 1D // TGraph *graph = (TGraph*)gPad->GetPrimitive("Graph"); // 2D // if(htemp!=0x0) {cout<<"removing TH1D"<Close(); delete f; } if (level>checkLevel){ focGood<Fill(); fic.getline(buffer, sizeof(buffer)); } //now use chain to check //chain.Lookup(kTRUE); // Save the tree tree->Write(); fout.Close(); focGood.close(); focBad.close(); } Int_t AliXRDPROOFtoolkit::CheckTreeInFile(const char*fileName,const char*treeName, Int_t debugLevel, const char *branchName){ // // Check the tree in file // fileName - the name of the file with tree // treeName - the name of file // debugLevel - 0 check the existance of the file - 1 make loop over entries // branchName - if debugLevel>0 the branch is chcecked // if brnachName =0 the content of full tree is chcecked // return value = 0 - Check things OK // -1 - file not exist or not accesible // -2 - file is zombie // -3 - tree not present // -4 - branch not present TFile * file = TFile::Open(fileName); if (!file) { return -1;} if (file->IsZombie()) {file->Close(); delete file; return -2;}; TString TrName(treeName); if (TrName=="*") { //cout <<" treename ==== *"<Close(); delete file; return 0; } TTree * tree = (TTree*)file->Get(treeName); if (!tree) {file->Close(); delete file; return -3;} TBranch * branch = 0; if (branchName) { branch = tree->GetBranch(branchName); if (!branch) {file->Close(); delete file; return -4;} } // if (debugLevel==1 && tree->GetEntries()==0 ) return 1; //empty tree->SetBranchStatus("*",1); try { if (debugLevel>1){ Int_t entries = tree->GetEntries(); for (Int_t i=0;iGetEntry(i); else tree->GetEntry(); } } }catch ( ... ) { printf("PROBLEM\n"); // never catched - as there is no exception in the ROOT IO file->Close(); delete file; return 1 ; } file->Close(); delete file; return 0; } Bool_t AliXRDPROOFtoolkit::FilterList(const char*inputList, const char*fileList, Int_t checkLevel){ // // Filter the list // inputList - list of original file names // fileList - list of file to be checked // - 0 - fileName // - 1 - treeName (if * not checked) // - 2 - fileName // .... // checkLevel - 0 - check only existance of the files and tree's + // simple file corruption // > 1 - check the content of the tree - // (can crash as there do not exest exception handling in ROOT) // Output - two streams are created - file with good entries // "%s.Good a,d file with bad entries %s.Bad //EXAMPLE: // AliXRDPROOFtoolkit::FilterList("ppgrid2.txt","AliESDs.root esdTree AliESDfriends.root * Kinematics.root *",1) gEnv->SetValue("TFile.Recover", 0); // fstream finput; finput.open(inputList, ios_base::in); fstream focGood; fstream focBad; focGood.open(Form("%s.Good",inputList), ios_base::out|ios_base::trunc); focBad.open(Form("%s.Bad",inputList), ios_base::out|ios_base::trunc); // if(!finput.is_open()) { cout<<"Can't open file "<> currentFile; if (!currentFile.Contains("root")) continue; // protection if (currentFile.Contains("alien://")){ focGood<DirName(currentFile.Data()); Int_t status = 0; // for (Int_t i=0; iGetEntries(); i+=2){ char fname[1000]; if (!isZip){ sprintf(fname, "%s/%s",dirname,array->At(i)->GetName()); if (((TObjString*)array->At(i))->String().Contains("*")){ sprintf(fname, "%s", currentFile.Data()); } } if (isZip) { const char * fileName = gSystem->BaseName(currentFile.Data()); TString fstring=fileName; fstring[fstring.First("#")]=0; sprintf(fname, "%s/%s#%s",dirname,fstring.Data(),array->At(i)->GetName()); printf(fname, "To check %s%s#%s\n",dirname,fstring.Data(),array->At(i)->GetName()); } printf("\nFile to be checked %s\n",fname); //cout <<"\n arguments: "<< array->At(i+1)->GetName()<<" "<At(i+1)->GetName(), checkLevel,0); //printf(" CheckTreeInFile returns %d",cstatus); if (cstatus!=0) { status = cstatus; break; } } if (status==0){ focGood< 1 - check the content of the tree - // (can crash as there do not exest exception handling in ROOT) // Output - two streams are created - file with good entries // "%s.Good a,d file with bad entries %s.Bad //EXAMPLE: // AliXRDPROOFtoolkit::FilterList("ppgrid2.txt","AliESDs.root esdTree AliESDfriends.root * Kinematics.root *",1) fstream finput; finput.open(inputList, ios_base::in); fstream focGood; fstream focBad; focGood.open(Form("%s.Good",inputList), ios_base::out|ios_base::trunc); focBad.open(Form("%s.Bad",inputList), ios_base::out|ios_base::trunc); // if(!finput.is_open()) { cout<<"Can't open file "<> currentFile; if (!currentFile.Contains("root")) continue; // protection if (currentFile.Contains("alien://")){ focGood<DirName(currentFile.Data()); const char * fileName = gSystem->BaseName(currentFile.Data()); TString fstring=fileName; fstring[fstring.First("#")]=0; Int_t status = 0; for (Int_t i=0; iGetEntries(); i+=2){ char fname[1000]; //if (isZip) sprintf(fname, sprintf(fname, "%s/%s#%s",dirname,fstring.Data(),array->At(i)->GetName()); printf(fname, "To check %s%s#%s\n",dirname,fstring.Data(),array->At(i)->GetName()); //cout <<"\n arguments: "<< array->At(i+1)->GetName()<<" "<At(i+1)->GetName(), checkLevel,0); //printf(" CheckTreeInFile returns %d",cstatus); if (cstatus!=0) { status = cstatus; break; } } if (status==0){ focGood<GetEntries(); char infile[1000]; char outfile[1000]; Bool_t succes=kTRUE; for (Int_t ifile =0; ifileAt(ifile)->GetName()); sprintf(outfile,"%s/%s", odir, array->At(ifile)->GetName()); printf("%s - %s\n",infile, outfile); Bool_t result = TFile::Cp(infile,outfile); succes &= result; } return succes; }