00001
00002
00003
00004
00005
00006
00007
00008 #ifndef __ATLFAST_cellcollection__
00009 #define __ATLFAST_cellcollection__
00010
00011
00012 #include "GaudiKernel/ObjectVector.h"
00013 #include "AtlfastCode/Cell.h"
00014 #include <list>
00015
00016 namespace Atlfast {
00017
00018 typedef ObjectVector<Cell> CellCollection ;
00019 typedef std::list<Cell*> CellList;
00020 typedef std::list<Cell*>::iterator CellListI;
00021 typedef std::list<Cell*>::const_iterator CellListConstI;
00022 typedef std::vector<Cell*> CellVector;
00023 typedef std::vector<Cell*>::iterator CellVectorI;
00024 typedef std::vector<Cell*>::const_iterator CellVectotConstI;
00025
00026 }
00027
00028 #endif
00029
00030
00031