]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PWG2/FEMTOSCOPY/AliFemto/AliFemtoEventWriterCollection.h
Adding a reader for the Kine information
[u/mrichter/AliRoot.git] / PWG2 / FEMTOSCOPY / AliFemto / AliFemtoEventWriterCollection.h
CommitLineData
67427ff7 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
d0e92d9a 19#include "AliFemtoEventWriter.h"
67427ff7 20
21#include <list>
22#if !defined(ST_NO_NAMESPACES)
23using std::list;
24#endif
25
26#ifdef ST_NO_TEMPLATE_DEF_ARGS
27typedef list<AliFemtoEventWriter*, allocator<AliFemtoEventWriter*> > AliFemtoEventWriterCollection;
28typedef list<AliFemtoEventWriter*, allocator<AliFemtoEventWriter*> >::iterator AliFemtoEventWriterIterator;
29#else
30typedef list<AliFemtoEventWriter*> AliFemtoEventWriterCollection;
31typedef list<AliFemtoEventWriter*>::iterator AliFemtoEventWriterIterator;
32#endif
33
34#endif