]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - PWG2/FEMTOSCOPY/AliFemto/Infrastructure/AliFemtoXiCollection.h
This commit was generated by cvs2svn to compensate for changes in r18145,
[u/mrichter/AliRoot.git] / PWG2 / FEMTOSCOPY / AliFemto / Infrastructure / AliFemtoXiCollection.h
diff --git a/PWG2/FEMTOSCOPY/AliFemto/Infrastructure/AliFemtoXiCollection.h b/PWG2/FEMTOSCOPY/AliFemto/Infrastructure/AliFemtoXiCollection.h
new file mode 100644 (file)
index 0000000..c9337ff
--- /dev/null
@@ -0,0 +1,33 @@
+/***************************************************************************
+ *
+ * $Id$
+ *
+ * Author: Frank Laue, BNL
+ ***************************************************************************
+ *
+ * Description: part of STAR HBT Framework: AliFemtoMaker package
+ *   The Collection of v0s is the main component of the HbtEvent,
+ *   which is essentially the transient microDST
+ *
+ ***************************************************************************/
+
+
+#ifndef AliFemtoXiCollection_hh
+#define AliFemtoXiCollection_hh
+#include "Infrastructure/AliFemtoXi.h"
+#include <list>
+
+#if !defined(ST_NO_NAMESPACES)
+using std::list;
+#endif
+
+#ifdef ST_NO_TEMPLATE_DEF_ARGS
+typedef list<AliFemtoXi*, allocator<AliFemtoXi*> >            AliFemtoXiCollection;
+typedef list<AliFemtoXi*, allocator<AliFemtoXi*> >::iterator  AliFemtoXiIterator;
+#else
+typedef list<AliFemtoXi*>            AliFemtoXiCollection;
+typedef list<AliFemtoXi*>::iterator  AliFemtoXiIterator;
+#endif
+
+#endif
+