#ifndef MARS_MH3 #define MARS_MH3 #ifndef ROOT_TH1 #include #endif #ifndef MARS_MH #include "MH.h" #endif class TH1; class MData; class MBinning; class MH3 : public MH { private: static const TString gsDefName; static const TString gsDefTitle; protected: // Could be const but root < 3.02/06 doesn't like this... Int_t fDimension; // Number of dimensions of histogram TH1 *fHist; // Histogram to fill MData *fData[3]; // Object from which the data is filled MBinning *fBins[3]; // Binning set omitting the parlist access Double_t fScale[3]; // Scale for the three axis (eg unit) Byte_t fStyleBits; // Set the range of a histogram automatically in Finalize void HandleLogAxis(TAxis &axe) const; void StreamPrimitive(ostream &out) const; enum { kIsLogx = BIT(17), kIsLogy = BIT(18), kIsLogz = BIT(19) }; public: MH3(const unsigned int dim=0); MH3(const TH1 &h1); MH3(const char *memberx); MH3(const char *memberx, const char *membery); MH3(const char *memberx, const char *membery, const char *memberz); ~MH3(); // Setter void SetScaleX(Double_t scale) { fScale[0] = scale; } void SetScaleY(Double_t scale) { fScale[1] = scale; } void SetScaleZ(Double_t scale) { fScale[2] = scale; } void SetScale(Double_t x, Double_t y=1, Double_t z=2) { SetScaleX(x); SetScaleY(y); SetScaleZ(z); } void SetLogx(Bool_t b=kTRUE) { b ? fHist->SetBit(kIsLogx) : fHist->ResetBit(kIsLogx); } void SetLogy(Bool_t b=kTRUE) { b ? fHist->SetBit(kIsLogy) : fHist->ResetBit(kIsLogy); } void SetLogz(Bool_t b=kTRUE) { b ? fHist->SetBit(kIsLogz) : fHist->ResetBit(kIsLogz); } void SetLog(Bool_t x=kTRUE, Bool_t y=kTRUE, Bool_t z=kTRUE) { SetLogx(x); SetLogy(y); SetLogz(z); } void SetAutoRangeX(Bool_t b=kTRUE) { b ? SETBIT(fStyleBits, 0) : CLRBIT(fStyleBits, 0); } void SetAutoRangeY(Bool_t b=kTRUE) { b ? SETBIT(fStyleBits, 1) : CLRBIT(fStyleBits, 1); } void SetAutoRangeZ(Bool_t b=kTRUE) { b ? SETBIT(fStyleBits, 2) : CLRBIT(fStyleBits, 2); } void SetAutoRange(Bool_t x=kTRUE, Bool_t y=kTRUE, Bool_t z=kTRUE) { SetAutoRangeX(x); SetAutoRangeY(y); SetAutoRangeZ(z); } void SetBinningX(MBinning *x) { fBins[0] = x; } void SetBinningY(MBinning *y) { fBins[1] = y; } void SetBinningZ(MBinning *z) { fBins[2] = z; } void SetBinnings(MBinning *x=0, MBinning *y=0, MBinning *z=0) { SetBinningX(x); SetBinningY(y); SetBinningZ(z); } void Sumw2() const { if (fHist) fHist->Sumw2(); } // Getter Int_t GetDimension() const { return fDimension; } Int_t GetNbins() const; Int_t FindFixBin(Double_t x, Double_t y=0, Double_t z=0) const; TH1 &GetHist() { return *fHist; } const TH1 &GetHist() const { return *fHist; } TString GetDataMember() const; TString GetRule(const Char_t axis='x') const; // MH Bool_t SetupFill(const MParList *pList); Bool_t Fill(const MParContainer *par, const Stat_t w=1); Bool_t Finalize(); TH1 *GetHistByName(const TString name="") const { return fHist; } TObject *FindObject(const TObject *obj) const { return 0; } TObject *FindObject(const char *name) const { return (TObject*)GetHistByName(name); } // MParContainer MParContainer *New() const; // TObject void SetName(const char *name); void SetTitle(const char *title); void Draw(Option_t *opt=NULL); void Paint(Option_t *opt=""); ClassDef(MH3, 3) // Generalized 1/2/3D-histogram for Mars variables }; #endif