]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PWG2/FEMTOSCOPY/AliFemto/AliFemtoEventWriterCollection.h
Making the directory structure of AliFemto flat. All files go into one common directory
[u/mrichter/AliRoot.git] / PWG2 / FEMTOSCOPY / AliFemto / AliFemtoEventWriterCollection.h
1 /***************************************************************************
2  *
3  * $Id$
4  *
5  * Author: Frank Laue, Ohio State, laue@mps.ohio-state.edu
6  ***************************************************************************
7  *
8  * Description: part of STAR HBT Framework: AliFemtoMaker package
9  *  The EventWriterCollection is pointed to by the Manager, and holds pointers
10  *  to all EventWriter objects currently active
11  *
12  ***************************************************************************
13  *
14  **************************************************************************/
15
16 #ifndef AliFemtoEventWriterCollection_hh
17 #define AliFemtoEventWriterCollection_hh
18
19 #include "AliFemtoEventWriter.h"
20
21 #include <list>
22 #if !defined(ST_NO_NAMESPACES)
23 using std::list;
24 #endif
25
26 #ifdef ST_NO_TEMPLATE_DEF_ARGS
27 typedef list<AliFemtoEventWriter*, allocator<AliFemtoEventWriter*> >            AliFemtoEventWriterCollection;
28 typedef list<AliFemtoEventWriter*, allocator<AliFemtoEventWriter*> >::iterator  AliFemtoEventWriterIterator;
29 #else
30 typedef list<AliFemtoEventWriter*>            AliFemtoEventWriterCollection;
31 typedef list<AliFemtoEventWriter*>::iterator  AliFemtoEventWriterIterator;
32 #endif
33
34 #endif