]> git.uio.no Git - u/mrichter/AliRoot.git/blob - ALIFAST/AliFHistBrowser.h
Stand-alone library for ESD. Possibility to use only root and lidESD.so for analysis...
[u/mrichter/AliRoot.git] / ALIFAST / AliFHistBrowser.h
1 #ifndef AliFHistBrowser_H
2 #define AliFHistBrowser_H
3
4 //////////////////////////////////////////////////////////////////////////
5 //                                                                      //
6 // AliFHistBrowser                                                      //
7 //                                                                      //
8 // helper class to browse AliFast Makers histograms.                    //
9 //                                                                      //
10 //////////////////////////////////////////////////////////////////////////
11
12 #ifndef ROOT_TNamed
13 #include <TNamed.h>
14 #endif
15
16 class AliFHistBrowser : public TNamed {
17
18 public:
19                      AliFHistBrowser();
20    virtual          ~AliFHistBrowser() {;}
21    virtual void      Browse(TBrowser *b);
22    Bool_t            IsFolder() const {return kTRUE;}
23
24    ClassDef(AliFHistBrowser, 0)   //helper class to browse AliFast Makers histograms
25 };
26
27 #endif