]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PWG2/FEMTOSCOPY/AliFemto/Infrastructure/AliFemtoAnalysisCollection.h
Pad size less then cell size + ideal geom in v2
[u/mrichter/AliRoot.git] / PWG2 / FEMTOSCOPY / AliFemto / Infrastructure / AliFemtoAnalysisCollection.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 AnalysisCollection is pointed to by the Manager, and holds pointers
10  *  to all Analysis objects currently active
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.3  2000/03/17 17:23:05  laue
19  * Roberts new three particle correlations implemented.
20  *
21  * Revision 1.2  2000/02/01 00:33:31  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 AliFemtoAnalysisCollection_hh
31 #define AliFemtoAnalysisCollection_hh
32
33
34 #include <list>
35 #if !defined(ST_NO_NAMESPACES)
36 using std::list;
37 #endif
38 class AliFemtoBaseAnalysis;
39
40 #ifdef ST_NO_TEMPLATE_DEF_ARGS
41 typedef list<AliFemtoBaseAnalysis*, allocator<AliFemtoBaseAnalysis*> >            AliFemtoAnalysisCollection;
42 typedef list<AliFemtoBaseAnalysis*, allocator<AliFemtoBaseAnalysis*> >::iterator  AliFemtoAnalysisIterator;
43 #else
44 typedef list<AliFemtoBaseAnalysis*>            AliFemtoAnalysisCollection;
45 typedef list<AliFemtoBaseAnalysis*>::iterator  AliFemtoAnalysisIterator;
46 #endif
47
48 #endif