/*************************************************************************** * * $Id$ * * Author: Mike Lisa, Ohio State, lisa@mps.ohio-state.edu *************************************************************************** * * Description: part of STAR HBT Framework: AliFemtoMaker package * The Collection of Kinks is the a component of the HbtEvent, * which is essentially the transient microDST * **************************************************************************** * * $Log$ * Revision 1.1.1.1 2007/03/07 10:14:49 mchojnacki * First version on CVS * * Revision 1.1 2001/05/25 23:23:59 lisa * Added in AliFemtoKink stuff * * ***************************************************************************/ #ifndef AliFemtoKinkCollection_hh #define AliFemtoKinkCollection_hh #include "Infrastructure/AliFemtoKink.h" #include #if !defined(ST_NO_NAMESPACES) using std::list; #endif #ifdef ST_NO_TEMPLATE_DEF_ARGS typedef list > AliFemtoKinkCollection; typedef list >::iterator AliFemtoKinkIterator; #else typedef list AliFemtoKinkCollection; typedef list::iterator AliFemtoKinkIterator; #endif #endif