THaVhist Vector of histograms; of course can be just 1 histogram. This object uses TH1 class of ROOT to form a histogram used by THaOutput. The X and Y axis, as well as cut conditions, can be formulas of global variables. They can also be arrays of variables, or vector formula, though certain rules apply about the dimensions; see THaOutput documentation for those rules. author: R. Michaels May 2003
THaVhist(const string& type, const string& name, const string& title) | |
virtual | ~THaVhist() |
Int_t | CheckCut(Int_t index = 0) |
void | CheckValidity() |
static TClass* | Class() |
Int_t | End() |
void | ErrPrint() const |
const string& | GetCutStr() const |
Int_t | GetSize() |
const string& | GetVarX() const |
const string& | GetVarY() const |
Bool_t | HasCut() const |
Int_t | Init() |
virtual TClass* | IsA() const |
Bool_t | IsScaler() |
Bool_t | IsValid() const |
void | Print() const |
Int_t | Process() |
void | ReAttach() |
void | SetCut(const string& cut) |
void | SetCut(THaVform* cut) |
void | SetX(THaVform* varx) |
void | SetX(Int_t nbinx, Double_t xlo, Double_t xhi, const string& varx) |
void | SetY(THaVform* vary) |
void | SetY(Int_t nbiny, Double_t ylo, Double_t yhi, const string& vary) |
virtual void | ShowMembers(TMemberInspector&) |
virtual void | Streamer(TBuffer&) |
void | StreamerNVirtual(TBuffer& ClassDef_StreamerNVirtual_b) |
THaVform* | fCut | |
Int_t | fEye | |
Bool_t | fFirst | |
THaVform* | fFormX | |
THaVform* | fFormY | |
vector<TH1*> | fH1 | |
Int_t | fInitStat | |
Bool_t | fMyCut | |
Bool_t | fMyFormX | |
Bool_t | fMyFormY | |
string | fName | |
Int_t | fNbinX | |
Int_t | fNbinY | |
Bool_t | fProc | |
Int_t | fScaler | |
string | fScut | |
Int_t | fSize | |
string | fTitle | |
string | fType | |
string | fVarX | |
string | fVarY | |
Double_t | fXhi | |
Double_t | fXlo | |
Double_t | fYhi | |
Double_t | fYlo | |
static const int | fgVERBOSE | |
static const int | fgVHIST_HUGE |
Must be called once at beginning of execution. Initializes this vector of histograms. Sets up the X, Y, and cuts as THaVforms. Checks the dimensionality of this object and calls BookHisto() to instantiate the histograms. fInitStat is returned. fInitStat == 0 --> all ok fInitStat !=0 --> various errors, interpreted with ErrPrint();
If the variable is "[I]" it is an "Eye" variable. This means we will simply use I = 0,1,2, to fill that axis.
Find the size of this object, according to this logic: 1) If one of the variables is an "eye" ("[I]") then the other variable to determines the eye's size. 2) If the cut is a scaler, and if one of X or Y is a scaler, this histo will be a scaler (i.e. one element). 3) If neither 1) nor 2), then the size is the size of the X component. The sizes of X,Y,cuts must obey the rules encoded below. Return code: 1 = size is 1, i.e. a scaler. > 1 = size of this vector. < 0 = Rules were violated, as follows: -1 = No X defined. Must have at least an X. -2 = Inconsistent size of X and Y. -3 = Cut size inconsistent with X. -4 = Cut size inconsistent with Y.
Using ROOT Histogram classes, set up the vector of histograms of type fType (th1f, th1d, th2f, th2d) for vector indices that run from hfirst to hlast.
Every event must Process() to fill histograms. Two cases: This object is either a scaler or a vector. If it's a scaler, then we fill one histogram, and if one of the variables is an array then all its elements are put into that histogram. If it's a vector, then (as previously verified) 2 or more from among [x, y, cuts] are vectors of same size. Hence fill a vector of histograms with indices running in parallel. Also, a vector of histograms can grow in size (up to a sensible limit) if the inputs grow in size.