]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PWGCF/FEMTOSCOPY/AliFemto/AliFemtoAnalysisCollection.h
Merge branch 'feature-movesplit'
[u/mrichter/AliRoot.git] / PWGCF / FEMTOSCOPY / AliFemto / AliFemtoAnalysisCollection.h
CommitLineData
76ce4b5b 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 2007/05/16 10:22:11 akisiel
16 * Making the directory structure of AliFemto flat. All files go into one common directory
17 *
18 * Revision 1.1.1.1 2007/04/25 15:38:41 panos
19 * Importing the HBT code dir
20 *
21 * Revision 1.1.1.1 2007/03/07 10:14:49 mchojnacki
22 * First version on CVS
23 *
24 * Revision 1.3 2000/03/17 17:23:05 laue
25 * Roberts new three particle correlations implemented.
26 *
27 * Revision 1.2 2000/02/01 00:33:31 laue
28 * namespaces changed to run on the new Solaris Compiler CC5
29 * since we can use member templates in franks1Histo.h we are doing it
30 *
31 * Revision 1.1.1.1 1999/06/29 16:02:57 lisa
32 * Installation of AliFemtoMaker
33 *
34 **************************************************************************/
35
36#ifndef AliFemtoAnalysisCollection_hh
37#define AliFemtoAnalysisCollection_hh
38
39
40#include <list>
41#if !defined(ST_NO_NAMESPACES)
42using std::list;
43#endif
44class AliFemtoAnalysis;
45
46#ifdef ST_NO_TEMPLATE_DEF_ARGS
47typedef list<AliFemtoAnalysis*, allocator<AliFemtoAnalysis*> > AliFemtoAnalysisCollection;
48typedef list<AliFemtoAnalysis*, allocator<AliFemtoAnalysis*> >::iterator AliFemtoSimpleAnalysisIterator;
49#else
50typedef list<AliFemtoAnalysis*> AliFemtoAnalysisCollection;
51typedef list<AliFemtoAnalysis*>::iterator AliFemtoSimpleAnalysisIterator;
52#endif
53
54#endif