]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PWGCF/FEMTOSCOPY/AliFemto/AliFemtoV0Collection.h
Merge branch 'master_patch'
[u/mrichter/AliRoot.git] / PWGCF / FEMTOSCOPY / AliFemto / AliFemtoV0Collection.h
CommitLineData
76ce4b5b 1/***************************************************************************
2 *
3 * $Id$
4 *
5 * Author: Tom Humanic, Ohio State, humanic@mps.ohio-state.edu
6 ***************************************************************************
7 *
8 * Description: part of STAR HBT Framework: AliFemtoMaker package
9 * The Collection of v0s is the main component of the HbtEvent,
10 * which is essentially the transient microDST
11 *
12 ***************************************************************************/
13
14
15#ifndef AliFemtoV0Collection_hh
16#define AliFemtoV0Collection_hh
17#include "AliFemtoV0.h"
18#include <list>
19
20#if !defined(ST_NO_NAMESPACES)
21using std::list;
22#endif
23
24#ifdef ST_NO_TEMPLATE_DEF_ARGS
25typedef list<AliFemtoV0*, allocator<AliFemtoV0*> > AliFemtoV0Collection;
26typedef list<AliFemtoV0*, allocator<AliFemtoV0*> >::iterator AliFemtoV0Iterator;
27#else
28typedef list<AliFemtoV0*> AliFemtoV0Collection;
29typedef list<AliFemtoV0*>::iterator AliFemtoV0Iterator;
30#endif
31
32#endif
33