Logo ROOT  
Reference Guide
 
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
Loading...
Searching...
No Matches
readCode.C File Reference

Detailed Description

View in nbviewer Open in SWAN
Example of script showing how to navigate in a ROOT file with sub-directories and read the objects in each sub-directory.

This example uses the file produced by the tutorial importCode.C

#include "TFile.h"
#include "TKey.h"
#include "TMacro.h"
Int_t nh = 0;
Int_t nc = 0;
Int_t nC = 0;
Int_t npy = 0;
ndirs++;
TIter next(dir->GetListOfKeys());
TKey *key;
while ((key = (TKey*)next())) {
if (key->IsFolder()) {
dir->cd(key->GetName());
dirsav->cd();
continue;
}
TMacro *macro = (TMacro*)key->ReadObj();
nfiles++;
nlines += macro->GetListOfLines()->GetEntries();
if (strstr(key->GetName(),".h")) nh++;
if (strstr(key->GetName(),".c")) nc++;
if (strstr(key->GetName(),".C")) nC++;
if (strstr(key->GetName(),".py")) npy++;
delete macro;
}
}
void readCode() {
TFile *f = new TFile("code.root");
if (f->IsZombie()) {
printf("File code.root does not exist. Run tutorial importCode.C first\n");
return;
}
printf("Reading file ==> code.root\n");
printf("File size in bytes = %lld\n",f->GetEND());
printf("File compression factor = %g\n",f->GetCompressionFactor());
printf("Number of sub-dirs = %d\n",ndirs);
printf("Number of macro files = %d\n",nfiles);
printf("Number of lines in mac = %d\n",nlines);
printf("Number of cxx,c,cc files = %d\n",nc);
printf("Number of C files = %d\n",nC);
printf("Number of Python files = %d\n",npy);
}
#define f(i)
Definition RSha256.hxx:104
int Int_t
Definition RtypesCore.h:45
ROOT::Detail::TRangeCast< T, true > TRangeDynCast
TRangeDynCast is an adapter class that allows the typed iteration through a TCollection.
#define gDirectory
Definition TDirectory.h:384
Describe directory structure in memory.
Definition TDirectory.h:45
A ROOT file is an on-disk file, usually with extension .root, that stores objects in a file-system-li...
Definition TFile.h:53
Book space in a file, create I/O buffers, to fill them, (un)compress them.
Definition TKey.h:28
Bool_t IsFolder() const override
Check if object referenced by the key is a folder.
Definition TKey.cxx:668
virtual TObject * ReadObj()
To read a TObject* from the file.
Definition TKey.cxx:762
Class supporting a collection of lines with C++ code.
Definition TMacro.h:31
const char * GetName() const override
Returns name of object.
Definition TNamed.h:47
Author
Rene Brun

Definition in file readCode.C.