00001
00002
00003
00004
00005 #ifndef ATLFAST_ICELLSELECTOR_H
00006 #define ATLFAST_ICELLSELECTOR_H
00007
00008 #include "AtlfastEvent/ICell.h"
00009
00010 namespace Atlfast {
00011
00013 class ICellSelector
00014 {
00015 public:
00017 virtual bool operator()(const ICell*) const =0;
00018
00020 virtual ~ICellSelector(){};
00021 };
00022
00023 }
00024 #endif
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046
00047
00048
00049