/*************************************************************************** * * $Id$ * * Author: Mike Lisa, Ohio State, lisa@mps.ohio-state.edu *************************************************************************** * * Description: part of STAR HBT Framework: AliFemtoMaker package * A Collection of PicoEvents is what makes up the EventMixingBuffer * of each Analysis * *************************************************************************** * * $Log$ * Revision 1.1.1.1 2007/04/25 15:38:41 panos * Importing the HBT code dir * * Revision 1.1.1.1 2007/03/07 10:14:49 mchojnacki * First version on CVS * * Revision 1.2 2000/02/01 00:33:32 laue * namespaces changed to run on the new Solaris Compiler CC5 * since we can use member templates in franks1Histo.h we are doing it * * Revision 1.1.1.1 1999/06/29 16:02:57 lisa * Installation of AliFemtoMaker * **************************************************************************/ #ifndef AliFemtoPicoEventCollection_hh #define AliFemtoPicoEventCollection_hh #include "AliFemtoPicoEvent.h" #include #if !defined(ST_NO_NAMESPACES) using std::list; #endif #ifdef ST_NO_TEMPLATE_DEF_ARGS typedef list > AliFemtoPicoEventCollection; typedef list >::iterator AliFemtoPicoEventIterator; #else typedef list AliFemtoPicoEventCollection; typedef list::iterator AliFemtoPicoEventIterator; #endif #endif