00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #ifndef ATLFAST_ICLUSTERSTRATEGY_H
00021 #define ATLFAST_ICLUSTERSTRATEGY_H
00022
00023
00024 #include <vector>
00025 #include "AtlfastCode/CellCollection.h"
00026 #include "AtlfastCode/ClusterCollection.h"
00027 class MsgStream;
00028
00029 namespace Atlfast {
00030 class Cell;
00031 class IClusterStrategy {
00032 public:
00033 virtual void makeClusters(
00034 MsgStream& log,
00035 std::vector<Cell*> storedCells,
00036 CellCollection* unusedCells,
00037 ClusterCollection* clusters
00038 ) const = 0;
00039 virtual ~IClusterStrategy(){}
00040 };
00041 }
00042 #endif
00043
00044
00045
00046
00047
00048