]> git.uio.no Git - u/mrichter/AliRoot.git/blob - 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
1 /***************************************************************************
2  *
3  * $Id$
4  *
5  * Author: Frank Laue, BNL
6  ***************************************************************************
7  *
8  * Description: part of STAR HBT Framework: AliFemtoMaker package
9  *   The Collection of v0s is the main component of the HbtEvent,
10  *   which is essentially the transient microDST
11  *
12  ***************************************************************************/
13
14
15 #ifndef AliFemtoXiCollection_hh
16 #define AliFemtoXiCollection_hh
17 #include "Infrastructure/AliFemtoXi.h"
18 #include <list>
19
20 #if !defined(ST_NO_NAMESPACES)
21 using std::list;
22 #endif
23
24 #ifdef ST_NO_TEMPLATE_DEF_ARGS
25 typedef list<AliFemtoXi*, allocator<AliFemtoXi*> >            AliFemtoXiCollection;
26 typedef list<AliFemtoXi*, allocator<AliFemtoXi*> >::iterator  AliFemtoXiIterator;
27 #else
28 typedef list<AliFemtoXi*>            AliFemtoXiCollection;
29 typedef list<AliFemtoXi*>::iterator  AliFemtoXiIterator;
30 #endif
31
32 #endif
33