00001
00002
00003
00004
00005
00006
00007
00008 #ifndef ATLFAST_CLUSTERCOLLECTION_H
00009 #define ATLFAST_CLUSTERCOLLECTION_H
00010
00011
00012 #include "GaudiKernel/ObjectVector.h"
00013 #include "AtlfastCode/Cluster.h"
00014
00015 namespace Atlfast {
00016
00017 typedef ObjectVector<Cluster> ClusterCollection;
00018 typedef std::list<Cluster*> ClusList;
00019 typedef std::list<Cluster*>::iterator ClusListI;
00020 typedef std::list<Cluster*>::const_iterator ClusListConstI;
00021
00022 }
00023
00024 #endif
00025
00026
00027