00001 /*************************************************************************** 00002 * 00003 * $Id: StHbtKinkCollection.hh,v 1.1 2001/05/25 23:23:59 lisa Exp $ 00004 * 00005 * Author: Mike Lisa, Ohio State, lisa@mps.ohio-state.edu 00006 *************************************************************************** 00007 * 00008 * Description: part of STAR HBT Framework: StHbtMaker package 00009 * The Collection of Kinks is the a component of the HbtEvent, 00010 * which is essentially the transient microDST 00011 * 00012 **************************************************************************** 00013 * 00014 * $Log: StHbtKinkCollection.hh,v $ 00015 * Revision 1.1 2001/05/25 23:23:59 lisa 00016 * Added in StHbtKink stuff 00017 * 00018 * 00019 ***************************************************************************/ 00020 00021 00022 #ifndef StHbtKinkCollection_hh 00023 #define StHbtKinkCollection_hh 00024 #include "StHbtMaker/Infrastructure/StHbtKink.hh" 00025 #include <list> 00026 00027 #if !defined(ST_NO_NAMESPACES) 00028 using std::list; 00029 #endif 00030 00031 #ifdef ST_NO_TEMPLATE_DEF_ARGS 00032 typedef list<StHbtKink*, allocator<StHbtKink*> > StHbtKinkCollection; 00033 typedef list<StHbtKink*, allocator<StHbtKink*> >::iterator StHbtKinkIterator; 00034 #else 00035 typedef list<StHbtKink*> StHbtKinkCollection; 00036 typedef list<StHbtKink*>::iterator StHbtKinkIterator; 00037 #endif 00038 00039 #endif 00040
1.5.9