#include <rHistoFolder.h>
Inheritance diagram for rHistoFolder:
Public Methods | |
rHistoFolder () | |
constructor. | |
virtual | ~rHistoFolder () |
destructor. | |
TFile* | getFile () const |
return the pointer to the file where the histogram/ntuples are going to be stored. | |
virtual void | define () = 0 |
pure virtual method defines (book) histograms and ntuples. | |
virtual void | fill () = 0 |
A pure virtual method to fill the histograms and ntuples. | |
Protected Methods | |
virtual void | setFile (TFile* file) |
set the root-file where the histogram/ntuples are stores. More... | |
Private Attributes | |
TFile* | m_RFile |
pointer to the output root-file. | |
Friends | |
class | rHistoFolderServer |
setFile()
methods allow to define a TFile where store in ROOT the histograms. Note that every rHistoFolder should have a TFile root file defined in order to be able to store the histograms!. define()
method to book the histograms and ntuples fill()
method to fill the histograms and ntuples define()
method only ones. When an external user call fill()
for the first time, the define()
method is executed and the histograms/ntuples booked.
Definition at line 30 of file rHistoFolder.h.
|
|
|
|
A pure virtual method to fill the histograms and ntuples.
|
return the pointer to the file where the histogram/ntuples are going to be stored.
Definition at line 45 of file rHistoFolder.h.
|
set the root-file where the histogram/ntuples are stores.
It allows derived classes to especify the root-file
Definition at line 56 of file rHistoFolder.h.
|
Definition at line 35 of file rHistoFolder.h.
|