]> git.uio.no Git - u/mrichter/AliRoot.git/blame - ALIFAST/AliFBrowsable.h
Added AliL3Stopwatch.
[u/mrichter/AliRoot.git] / ALIFAST / AliFBrowsable.h
CommitLineData
65a39007 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
16class AliFBigBang;
17
18class AliFBrowsable : public TNamed {
19
20private:
21 TObject *fRefObject; //Referenced object
22 AliFBigBang *fBigBang; //Pointer to control bigbang object
23
24public:
25 AliFBrowsable();
26 virtual ~AliFBrowsable() {;}
27 virtual void Browse(TBrowser *b);
b21a3d1a 28 Bool_t IsFolder() const {return kTRUE;}
65a39007 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