]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PWG2/FEMTOSCOPY/AliFemto/AliFemtoKinkCollection.h
Making the directory structure of AliFemtoUser flat. All files go into one common...
[u/mrichter/AliRoot.git] / PWG2 / FEMTOSCOPY / AliFemto / AliFemtoKinkCollection.h
CommitLineData
67427ff7 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$
d0e92d9a 15 * Revision 1.1.1.1 2007/04/25 15:38:41 panos
16 * Importing the HBT code dir
17 *
67427ff7 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
d0e92d9a 30#include "AliFemtoKink.h"
67427ff7 31#include <list>
32
33#if !defined(ST_NO_NAMESPACES)
34using std::list;
35#endif
36
37#ifdef ST_NO_TEMPLATE_DEF_ARGS
38typedef list<AliFemtoKink*, allocator<AliFemtoKink*> > AliFemtoKinkCollection;
39typedef list<AliFemtoKink*, allocator<AliFemtoKink*> >::iterator AliFemtoKinkIterator;
40#else
41typedef list<AliFemtoKink*> AliFemtoKinkCollection;
42typedef list<AliFemtoKink*>::iterator AliFemtoKinkIterator;
43#endif
44
45#endif
46