]> git.uio.no Git - u/mrichter/AliRoot.git/blob - ALIFAST/AliFBrowsable.h
Updated version of the non-recursive Makefiles. See doc/README.FlatMakefile and build...
[u/mrichter/AliRoot.git] / ALIFAST / AliFBrowsable.h
1 #ifndef AliFBrowsable_H
2 #define AliFBrowsable_H
3
4 //////////////////////////////////////////////////////////////////////////
5 //                                                                      //
6 // AliFBrowsable                                                        //
7 //                                                                      //
8 // helper class to browse generated particles.                          //
9 //                                                                      //
10 //////////////////////////////////////////////////////////////////////////
11
12 #ifndef ROOT_TNamed
13 #include <TNamed.h>
14 #endif
15
16 class AliFBigBang;
17
18 class AliFBrowsable : public TNamed {
19
20 private:
21    TObject          *fRefObject;       //Referenced object
22    AliFBigBang      *fBigBang;         //Pointer to control bigbang object
23
24 public:
25                      AliFBrowsable();
26    virtual          ~AliFBrowsable() {;}
27    virtual void      Browse(TBrowser *b);
28    Bool_t            IsFolder() const {return kTRUE;}
29    virtual void      SetBigBang(AliFBigBang *bigbang) {fBigBang = bigbang;}
30    virtual void      SetRefObject(TObject *obj) {fRefObject = obj;}
31
32    ClassDef(AliFBrowsable, 0)   //helper class to browse generated particles.
33 };
34
35 #endif
36
37
38
39
40
41
42
43
44
45
46