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 #include "AtlfastEvent/CellCollection.h"
00024 #include "AtlfastEvent/ClusterCollection.h"
00025
00026 #include <vector>
00027
00028 class MsgStream;
00029
00030 namespace Atlfast {
00031 class Cell;
00032 class IClusterStrategy {
00033 public:
00034 virtual void makeClusters(
00035 MsgStream& log,
00036 std::vector<Cell*> storedCells,
00037 CellCollection* unusedCells,
00038 ClusterCollection* clusters
00039 ) const = 0;
00040 virtual ~IClusterStrategy(){}
00041 };
00042 }
00043 #endif
00044
00045
00046
00047
00048
00049