]> git.uio.no Git - u/mrichter/AliRoot.git/blob - ALIFAST/AliFBigBang.h
Major upgrade of AliRoot code
[u/mrichter/AliRoot.git] / ALIFAST / AliFBigBang.h
1 #ifndef AliFBigBang_H
2 #define AliFBigBang_H
3
4 //////////////////////////////////////////////////////////////////////////
5 //                                                                      //
6 // AliFBigBang                                                          //
7 //                                                                      //
8 // helper class to browse generated particles.                          //
9 //                                                                      //
10 //////////////////////////////////////////////////////////////////////////
11
12 #ifndef ROOT_TNamed
13 #include <TNamed.h>
14 #endif
15 #ifndef ROOT_TObjArray
16 #include <TObjArray.h>
17 #endif
18
19 class AliFBrowsable;
20
21 class AliFBigBang : public TNamed {
22
23 private:
24    TObjArray     *fBrowsables;      //List of browsable particles
25
26 public:
27                      AliFBigBang();
28    virtual          ~AliFBigBang();
29    virtual void      Browse(TBrowser *b);
30    AliFBrowsable    *GetBrowsable(Int_t i);
31    Bool_t            IsFolder() const {return kTRUE;}
32
33    ClassDef(AliFBigBang, 0)   //helper class to browse generated particles.
34 };
35
36 #endif
37
38
39
40
41
42
43
44
45