#ifndef MHHILLAS_H #define MHHILLAS_H #ifndef MAGIC_H #include "MAGIC.h" #endif #ifndef MPARCONTAINER_H #include "MParContainer.h" #endif class TH1F; class MHillas; class MHHillas : public MParContainer { private: TH1F *fAlpha; TH1F *fWidth; TH1F *fLength; TH1F *fDist; public: MHHillas(const char *name=NULL, const char *title=NULL); ~MHHillas(); void Fill(MHillas *par); TH1F *GetHistAlpha() { return fAlpha; } TH1F *GetHistWidth() { return fWidth; } TH1F *GetHistLength() { return fLength; } TH1F *GetHistDist() { return fDist; } void Draw(Option_t *opt=NULL); ClassDef(MHHillas, 1) // Container which holds hostograms for the Hillas parameters }; #endif