]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PWG2/FEMTOSCOPY/AliFemto/AliFemtoTrackCollection.h
Making the directory structure of AliFemto flat. All files go into one common directory
[u/mrichter/AliRoot.git] / PWG2 / FEMTOSCOPY / AliFemto / AliFemtoTrackCollection.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 Tracks is the main 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.2 2000/02/01 00:33:32 laue
22 * namespaces changed to run on the new Solaris Compiler CC5
23 * since we can use member templates in franks1Histo.h we are doing it
24 *
25 * Revision 1.1.1.1 1999/06/29 16:02:57 lisa
26 * Installation of AliFemtoMaker
27 *
28 **************************************************************************/
29
30#ifndef AliFemtoTrackCollection_hh
31#define AliFemtoTrackCollection_hh
d0e92d9a 32#include "AliFemtoTrack.h"
67427ff7 33#include <list>
34
35#if !defined(ST_NO_NAMESPACES)
36using std::list;
37#endif
38
39#ifdef ST_NO_TEMPLATE_DEF_ARGS
40typedef list<AliFemtoTrack*, allocator<AliFemtoTrack*> > AliFemtoTrackCollection;
41typedef list<AliFemtoTrack*, allocator<AliFemtoTrack*> >::iterator AliFemtoTrackIterator;
42#else
43typedef list<AliFemtoTrack*> AliFemtoTrackCollection;
44typedef list<AliFemtoTrack*>::iterator AliFemtoTrackIterator;
45#endif
46
47#endif