]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PWG2/FEMTOSCOPY/AliFemto/AliFemtoAnalysisCollection.h
Lines getting the matched track moved to a method in AliCalorimeterUtils. Lines copie...
[u/mrichter/AliRoot.git] / PWG2 / FEMTOSCOPY / AliFemto / AliFemtoAnalysisCollection.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 AnalysisCollection is pointed to by the Manager, and holds pointers
10 * to all Analysis objects currently active
11 *
12 ***************************************************************************
13 *
14 * $Log$
a5b23aa6 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 *
d0e92d9a 18 * Revision 1.1.1.1 2007/04/25 15:38:41 panos
19 * Importing the HBT code dir
20 *
67427ff7 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
a5b23aa6 44class AliFemtoAnalysis;
67427ff7 45
46#ifdef ST_NO_TEMPLATE_DEF_ARGS
a5b23aa6 47typedef list<AliFemtoAnalysis*, allocator<AliFemtoAnalysis*> > AliFemtoAnalysisCollection;
48typedef list<AliFemtoAnalysis*, allocator<AliFemtoAnalysis*> >::iterator AliFemtoSimpleAnalysisIterator;
67427ff7 49#else
a5b23aa6 50typedef list<AliFemtoAnalysis*> AliFemtoAnalysisCollection;
51typedef list<AliFemtoAnalysis*>::iterator AliFemtoSimpleAnalysisIterator;
67427ff7 52#endif
53
54#endif