00001 #ifndef StiDetectorGroups_H_INCLUDED
00002 #define StiDetectorGroups_H_INCLUDED
00003 #include <vector>
00004 #include "Sti/Base/Named.h"
00005 #include "Sti/Base/Described.h"
00006 class StiGenericDetectorGroup;
00007
00008 class StiDetectorGroups : public Named, public Described, public vector<StiGenericDetectorGroup * >
00009 {
00010 public:
00011 StiDetectorGroups(const string &name,const string &description) : Named(name), Described(description) {}
00012 virtual ~StiDetectorGroups() {}
00013 };
00014 #endif