00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #ifndef StRpsCollection_hh
00021 #define StRpsCollection_hh
00022
00023 #include "StObject.h"
00024 #include "StContainers.h"
00025 #include "StRpsRomanPot.h"
00026
00027 class StRpsCollection : public StObject {
00028 public:
00029 StRpsCollection();
00030 ~StRpsCollection();
00031
00032 unsigned int numberOfRomanPots() const;
00033
00034 const StRpsRomanPot* romanPot(unsigned int) const;
00035 StRpsRomanPot* romanPot(unsigned int);
00036
00037 StPtrVecRpsCluster clusters() const;
00038 unsigned char siliconBunch() const;
00039
00040 void setSiliconBunch(unsigned char);
00041
00042 private:
00043 enum {mNumberOfRomanPots = 8};
00044 StRpsRomanPot mRomanPots[mNumberOfRomanPots];
00045 UChar_t mSiliconBunch;
00046
00047 ClassDef(StRpsCollection, 2)
00048 };
00049
00050 #endif