StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
StHbtKinkCollection.hh
1 /***************************************************************************
2  *
3  * $Id: StHbtKinkCollection.hh,v 1.1 2001/05/25 23:23:59 lisa Exp $
4  *
5  * Author: Mike Lisa, Ohio State, lisa@mps.ohio-state.edu
6  ***************************************************************************
7  *
8  * Description: part of STAR HBT Framework: StHbtMaker package
9  * The Collection of Kinks is the a component of the HbtEvent,
10  * which is essentially the transient microDST
11  *
12  ****************************************************************************
13  *
14  * $Log: StHbtKinkCollection.hh,v $
15  * Revision 1.1 2001/05/25 23:23:59 lisa
16  * Added in StHbtKink stuff
17  *
18  *
19  ***************************************************************************/
20 
21 
22 #ifndef StHbtKinkCollection_hh
23 #define StHbtKinkCollection_hh
24 #include "StHbtMaker/Infrastructure/StHbtKink.hh"
25 #include <list>
26 
27 #if !defined(ST_NO_NAMESPACES)
28 using std::list;
29 #endif
30 
31 #ifdef ST_NO_TEMPLATE_DEF_ARGS
32 typedef list<StHbtKink*, allocator<StHbtKink*> > StHbtKinkCollection;
33 typedef list<StHbtKink*, allocator<StHbtKink*> >::iterator StHbtKinkIterator;
34 #else
35 typedef list<StHbtKink*> StHbtKinkCollection;
36 typedef list<StHbtKink*>::iterator StHbtKinkIterator;
37 #endif
38 
39 #endif
40