StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
StHbtPicoEventCollectionVector.hh
1 /***************************************************************************
2  *
3  * $Id: StHbtPicoEventCollectionVector.hh,v 1.1 2000/07/16 21:44:11 laue 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  *
10  ***************************************************************************
11  *
12  * $Log: StHbtPicoEventCollectionVector.hh,v $
13  * Revision 1.1 2000/07/16 21:44:11 laue
14  * Collection and analysis for vertex dependent event mixing
15  *
16  *
17  **************************************************************************/
18 
19 #ifndef StHbtPicoEventCollectionVector_hh
20 #define StHbtPicoEventCollectionVector_hh
21 #include "StHbtMaker/Infrastructure/StHbtPicoEventCollection.hh"
22 #include <vector>
23 #include <list>
24 
25 #if !defined(ST_NO_NAMESPACES)
26 using std::vector;
27 using std::list;
28 #endif
29 
30 #ifdef ST_NO_TEMPLATE_DEF_ARGS
31 typedef vector<StHbtPicoEventCollection*, allocator<StHbtPicoEventCollection*> > StHbtPicoEventCollectionVector;
32 typedef vector<StHbtPicoEventCollection*, allocator<StHbtPicoEventCollection*> >::iterator StHbtPicoEventCollectionIterator;
33 #else
34 typedef vector<StHbtPicoEventCollection*> StHbtPicoEventCollectionVector;
35 typedef vector<StHbtPicoEventCollection*>::iterator StHbtPicoEventCollectionIterator;
36 #endif
37 
38 #endif