#ifndef ROOT_TSPLot
#define ROOT_TSPlot
#include "TObjArray.h"
#include "TString.h"
#include "TMatrixT.h"
#include "TMatrixDfwd.h"
class TH1D;
class TTree;
class TSPlot: public TObject {
protected:
TMatrixD fXvar;
TMatrixD fYvar;
TMatrixD fYpdf;
TMatrixD fPdfTot;
TMatrixD fMinmax;
TMatrixD fSWeights;
TObjArray fXvarHists;
TObjArray fYvarHists;
TObjArray fYpdfHists;
TObjArray fSWeightsHists;
TTree *fTree;
TString* fTreename;
TString* fVarexp;
TString* fSelection;
Int_t fNx;
Int_t fNy;
Int_t fNSpecies;
Int_t fNevents;
Double_t *fNumbersOfEvents;
void SPlots(Double_t *covmat, Int_t i_excl);
public:
TSPlot();
TSPlot(Int_t nx, Int_t ny, Int_t ne, Int_t ns, TTree* tree);
virtual ~TSPlot();
void Browse(TBrowser *b);
Bool_t IsFolder() const { return kTRUE;}
void FillXvarHists(Int_t nbins = 100);
void FillYvarHists(Int_t nbins = 100);
void FillYpdfHists(Int_t nbins = 100);
void FillSWeightsHists(Int_t nbins = 50);
Int_t GetNevents() {return fNevents;}
Int_t GetNspecies() {return fNSpecies;}
TObjArray* GetSWeightsHists();
TH1D* GetSWeightsHist(Int_t ixvar, Int_t ispecies,Int_t iyexcl=-1);
TObjArray* GetXvarHists();
TH1D* GetXvarHist(Int_t ixvar);
TObjArray* GetYvarHists();
TH1D* GetYvarHist(Int_t iyvar);
TObjArray* GetYpdfHists();
TH1D* GetYpdfHist(Int_t iyvar, Int_t ispecies);
void GetSWeights(TMatrixD &weights);
void GetSWeights(Double_t *weights);
TString* GetTreeName(){return fTreename;}
TString* GetTreeSelection() {return fSelection;}
TString* GetTreeExpression() {return fVarexp;}
void MakeSPlot(Option_t* option="v");
void RefillHist(Int_t type, Int_t var, Int_t nbins, Double_t min, Double_t max, Int_t nspecies=-1);
void SetNX(Int_t nx){fNx=nx;}
void SetNY(Int_t ny){fNy=ny;}
void SetNSpecies(Int_t ns){fNSpecies=ns;}
void SetNEvents(Int_t ne){fNevents=ne;}
void SetInitialNumbersOfSpecies(Int_t *numbers);
void SetTree(TTree *tree);
void SetTreeSelection(const char* varexp="", const char *selection="", Long64_t firstentry=0);
ClassDef(TSPlot, 1)
};
#endif
ROOT page - Class index - Class Hierarchy - Top of the page
This page has been automatically generated. If you have any comments or suggestions about the page layout send a mail to ROOT support, or contact the developers with any questions or problems regarding ROOT.