]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PWG2/FEMTOSCOPY/AliFemto/Infrastructure/AliFemtoKinkCollection.h
Pad size less then cell size + ideal geom in v2
[u/mrichter/AliRoot.git] / PWG2 / FEMTOSCOPY / AliFemto / Infrastructure / 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/03/07 10:14:49  mchojnacki
16  * First version on CVS
17  *
18  * Revision 1.1  2001/05/25 23:23:59  lisa
19  * Added in AliFemtoKink stuff
20  *
21  *
22  ***************************************************************************/
23
24
25 #ifndef AliFemtoKinkCollection_hh
26 #define AliFemtoKinkCollection_hh
27 #include "Infrastructure/AliFemtoKink.h"
28 #include <list>
29
30 #if !defined(ST_NO_NAMESPACES)
31 using std::list;
32 #endif
33
34 #ifdef ST_NO_TEMPLATE_DEF_ARGS
35 typedef list<AliFemtoKink*, allocator<AliFemtoKink*> >            AliFemtoKinkCollection;
36 typedef list<AliFemtoKink*, allocator<AliFemtoKink*> >::iterator  AliFemtoKinkIterator;
37 #else
38 typedef list<AliFemtoKink*>            AliFemtoKinkCollection;
39 typedef list<AliFemtoKink*>::iterator  AliFemtoKinkIterator;
40 #endif
41
42 #endif
43