]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - ALIFAST/AliFBigBang.h
This commit was generated by cvs2svn to compensate for changes in r1018,
[u/mrichter/AliRoot.git] / ALIFAST / AliFBigBang.h
diff --git a/ALIFAST/AliFBigBang.h b/ALIFAST/AliFBigBang.h
new file mode 100644 (file)
index 0000000..33a1a6e
--- /dev/null
@@ -0,0 +1,45 @@
+#ifndef AliFBigBang_H
+#define AliFBigBang_H
+
+//////////////////////////////////////////////////////////////////////////
+//                                                                      //
+// AliFBigBang                                                          //
+//                                                                      //
+// helper class to browse generated particles.                          //
+//                                                                      //
+//////////////////////////////////////////////////////////////////////////
+
+#ifndef ROOT_TNamed
+#include <TNamed.h>
+#endif
+#ifndef ROOT_TObjArray
+#include <TObjArray.h>
+#endif
+
+class AliFBrowsable;
+
+class AliFBigBang : public TNamed {
+
+private:
+   TObjArray     *fBrowsables;      //List of browsable particles
+
+public:
+                     AliFBigBang();
+   virtual          ~AliFBigBang();
+   virtual void      Browse(TBrowser *b);
+   AliFBrowsable    *GetBrowsable(Int_t i);
+   Bool_t            IsFolder() {return kTRUE;}
+
+   ClassDef(AliFBigBang, 0)   //helper class to browse generated particles.
+};
+
+#endif
+
+
+
+
+
+
+
+
+