StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
StHbtSectoredPicoEventCollection.hh
1 /***************************************************************************
2  *
3  * $Id: StHbtSectoredPicoEventCollection.hh,v 1.1 2000/04/12 01:47:13 willson Exp $
4  *
5  * Author: Robert Willson, Ohio State, willson@bnl.gov
6  ***************************************************************************
7  *
8  * Description: part of STAR HBT Framework: StHbtMaker package
9  * A Collection of SectoredPicoEvents is what makes up the EventMixingBuffer
10  * of the SectoredAnalysis
11  *
12  ***************************************************************************
13  *
14  * $Log: StHbtSectoredPicoEventCollection.hh,v $
15  * Revision 1.1 2000/04/12 01:47:13 willson
16  * Initial Installation
17  *
18  *
19  **************************************************************************/
20 
21 #ifndef StHbtSectoredPicoEventCollection_hh
22 #define StHbtSectoredPicoEventCollection_hh
23 #include "StHbtMaker/Infrastructure/StHbtSectoredPicoEvent.hh"
24 #include <list>
25 
26 #if !defined(ST_NO_NAMESPACES)
27 using std::list;
28 #endif
29 
30 #ifdef ST_NO_TEMPLATE_DEF_ARGS
31 typedef list<StHbtSectoredPicoEvent*, allocator<StHbtSectoredPicoEvent*> > StHbtSectoredPicoEventCollection;
32 typedef list<StHbtSectoredPicoEvent*, allocator<StHbtSectoredPicoEvent*> >::iterator StHbtSectoredPicoEventIterator;
33 #else
34 typedef list<StHbtSectoredPicoEvent*> StHbtSectoredPicoEventCollection;
35 typedef list<StHbtSectoredPicoEvent*>::iterator StHbtSectoredPicoEventIterator;
36 #endif
37 
38 #endif