StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
StHbtXiCollection.hh
1 /***************************************************************************
2  *
3  * $Id: StHbtXiCollection.hh,v 1.1 2001/09/05 20:41:44 laue Exp $
4  *
5  * Author: Frank Laue, BNL
6  ***************************************************************************
7  *
8  * Description: part of STAR HBT Framework: StHbtMaker 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 StHbtXiCollection_hh
16 #define StHbtXiCollection_hh
17 #include "StHbtMaker/Infrastructure/StHbtXi.hh"
18 #include <list>
19 
20 #if !defined(ST_NO_NAMESPACES)
21 using std::list;
22 #endif
23 
24 #ifdef ST_NO_TEMPLATE_DEF_ARGS
25 typedef list<StHbtXi*, allocator<StHbtXi*> > StHbtXiCollection;
26 typedef list<StHbtXi*, allocator<StHbtXi*> >::iterator StHbtXiIterator;
27 #else
28 typedef list<StHbtXi*> StHbtXiCollection;
29 typedef list<StHbtXi*>::iterator StHbtXiIterator;
30 #endif
31 
32 #endif
33