]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PWG2/FEMTOSCOPY/AliFemto/Infrastructure/AliFemtoCorrFctnCollection.h
Pad size less then cell size + ideal geom in v2
[u/mrichter/AliRoot.git] / PWG2 / FEMTOSCOPY / AliFemto / Infrastructure / AliFemtoCorrFctnCollection.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 CorrFctnCollection contains pointers to all Correlation Functions
10  *   that are associated with a particular Analysis object.
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.2  2000/02/01 00:33:32  laue
19  * namespaces changed to run on the new Solaris Compiler CC5
20  * since we can use member templates in franks1Histo.h we are doing it
21  *
22  * Revision 1.1.1.1  1999/06/29 16:02:57  lisa
23  * Installation of AliFemtoMaker
24  *
25  **************************************************************************/
26
27 #ifndef AliFemtoCorrFctnCollection_hh
28 #define AliFemtoCorrFctnCollection_hh
29
30
31 #include <list>
32 #if !defined(ST_NO_NAMESPACES)
33 using std::list;
34 #endif
35 class AliFemtoCorrFctn;
36
37 #ifdef ST_NO_TEMPLATE_DEF_ARGS
38 typedef list<AliFemtoCorrFctn*, allocator<AliFemtoCorrFctn*> >            AliFemtoCorrFctnCollection;
39 typedef list<AliFemtoCorrFctn*, allocator<AliFemtoCorrFctn*> >::iterator  AliFemtoCorrFctnIterator;
40 #else
41 typedef list<AliFemtoCorrFctn*>            AliFemtoCorrFctnCollection;
42 typedef list<AliFemtoCorrFctn*>::iterator  AliFemtoCorrFctnIterator;
43 #endif
44
45 #endif