Logo ROOT  
Reference Guide
Loading...
Searching...
No Matches
loopdir11.C File Reference

Detailed Description

View in nbviewer Open in SWAN
Example script to loop over all the objects of a ROOT file directory and print in Postscript all the TH1 derived objects.

This script uses the file generated by tutorial hsimple.C

void loopdir11() {
TFile *f1 = TFile::Open("hsimple.root");
c1.Print("hsimple11.ps[");
for(auto k : *f1->GetListOfKeys()) {
TKey *key = static_cast<TKey*>(k);
TClass *cl = gROOT->GetClass(key->GetClassName());
if (!cl->InheritsFrom("TH1")) continue;
TH1 *h = key->ReadObject<TH1>();
h->Draw();
c1.Print("hsimple11.ps");
}
c1.Print("hsimple11.ps]");
}
#define h(i)
Definition RSha256.hxx:106
#define gROOT
Definition TROOT.h:417
The Canvas class.
Definition TCanvas.h:23
TClass instances represent classes, structs and namespaces in the ROOT type system.
Definition TClass.h:84
Bool_t InheritsFrom(const char *cl) const override
Return kTRUE if this class inherits from a class with name "classname".
Definition TClass.cxx:4932
A file, usually with extension .root, that stores data and code in the form of serialized objects in ...
Definition TFile.h:130
static TFile * Open(const char *name, Option_t *option="", const char *ftitle="", Int_t compress=ROOT::RCompressionSetting::EDefaults::kUseCompiledDefault, Int_t netopt=0)
Create / open a file.
Definition TFile.cxx:3787
TH1 is the base class of all histogram classes in ROOT.
Definition TH1.h:109
Book space in a file, create I/O buffers, to fill them, (un)compress them.
Definition TKey.h:28
T * ReadObject()
To read an object (non deriving from TObject) from the file.
Definition TKey.h:105
virtual const char * GetClassName() const
Definition TKey.h:77
return c1
Definition legend1.C:41
TF1 * f1
Definition legend1.C:11
Author
Rene Brun

Definition in file loopdir11.C.