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