]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PWGCF/FEMTOSCOPY/AliFemto/AliFemtoKinkCollection.h
Merge branch 'master_patch'
[u/mrichter/AliRoot.git] / PWGCF / FEMTOSCOPY / AliFemto / AliFemtoKinkCollection.h
1 /***************************************************************************
2  *
3  * $Id$
4  *
5  * Author: Mike Lisa, Ohio State, lisa@mps.ohio-state.edu
6  ***************************************************************************
7  *
8  * Description: part of STAR HBT Framework: AliFemtoMaker package
9  *   The Collection of Kinks is the a component of the HbtEvent,
10  *   which is essentially the transient microDST
11  *
12  ****************************************************************************
13  *
14  * $Log$
15  * Revision 1.1.1.1  2007/04/25 15:38:41  panos
16  * Importing the HBT code dir
17  *
18  * Revision 1.1.1.1  2007/03/07 10:14:49  mchojnacki
19  * First version on CVS
20  *
21  * Revision 1.1  2001/05/25 23:23:59  lisa
22  * Added in AliFemtoKink stuff
23  *
24  *
25  ***************************************************************************/
26
27
28 #ifndef AliFemtoKinkCollection_hh
29 #define AliFemtoKinkCollection_hh
30 #include "AliFemtoKink.h"
31 #include <list>
32
33 #if !defined(ST_NO_NAMESPACES)
34 using std::list;
35 #endif
36
37 #ifdef ST_NO_TEMPLATE_DEF_ARGS
38 typedef list<AliFemtoKink*, allocator<AliFemtoKink*> >            AliFemtoKinkCollection;
39 typedef list<AliFemtoKink*, allocator<AliFemtoKink*> >::iterator  AliFemtoKinkIterator;
40 #else
41 typedef list<AliFemtoKink*>            AliFemtoKinkCollection;
42 typedef list<AliFemtoKink*>::iterator  AliFemtoKinkIterator;
43 #endif
44
45 #endif
46