// @(#)root/hist:$Id$ // Author: Rene Brun 10/12/2001 /************************************************************************* * Copyright (C) 1995-2001, Rene Brun and Fons Rademakers. * * All rights reserved. * * * * For the licensing terms see $ROOTSYS/LICENSE. * * For the list of contributors see $ROOTSYS/README/CREDITS. * *************************************************************************/ #ifndef ROOT_THStack #define ROOT_THStack ////////////////////////////////////////////////////////////////////////// // // // THStack // // // // A collection of histograms // // // ////////////////////////////////////////////////////////////////////////// #include "TNamed.h" #include "TObjArray.h" #ifdef R__LESS_INCLUDES class TH1; class TList; class TAxis; #else #include "TH1.h" #endif class TBrowser; class TFileMergeInfo; class THStack : public TNamed { private: THStack& operator=(const THStack&) = delete; protected: TList *fHists{nullptr}; ///< Pointer to array of TH1 TObjArray *fStack{nullptr}; ///