]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PWGCF/FEMTOSCOPY/AliFemto/AliFemtoParticleCollection.h
Migration of PWG2/FEMTOSCOPY to PWGCF/FEMTOSCOPY
[u/mrichter/AliRoot.git] / PWGCF / FEMTOSCOPY / AliFemto / AliFemtoParticleCollection.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 ParticleCollection is the main component of the picoEvent
10  *   It points to the particle objects in the picoEvent.           
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.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 #ifndef AliFemtoParticleCollection_hh
30 #define AliFemtoParticleCollection_hh
31 #include "AliFemtoParticle.h"
32 #include <list>
33
34 #if !defined(ST_NO_NAMESPACES)
35 using std::list;
36 #endif
37
38 #ifdef ST_NO_TEMPLATE_DEF_ARGS
39 typedef list<AliFemtoParticle*, allocator<AliFemtoParticle*> >            AliFemtoParticleCollection;
40 typedef list<AliFemtoParticle*, allocator<AliFemtoParticle*> >::iterator  AliFemtoParticleIterator;
41 #else
42 typedef list<AliFemtoParticle*>            AliFemtoParticleCollection;
43 typedef list<AliFemtoParticle*>::iterator  AliFemtoParticleIterator;
44 #endif
45
46 #endif