#ifndef COSY_Rings #define COSY_Rings #ifndef ROOT_TClonesArray #include #endif #ifndef COSY_Ring #include "Ring.h" #endif class Leds; class Rings : public TClonesArray { private: Ring fCenter; Short_t fMinNumberLeds; void CalcCenters(const Leds &leds, Float_t min, Float_t max); public: Rings() : TClonesArray("Ring", 1) { fMinNumberLeds=5; } void SetMinNumberLeds(Short_t n) { fMinNumberLeds=n; } void CalcRings(Leds &leds, Float_t min=-1, Float_t max=-1); void Print(Option_t *o=NULL) const; const Ring &operator()(int i) const { return *(Ring*)At(i); } Ring &operator()(int i) { return *(Ring*)At(i); } const Ring &GetCenter() const { return fCenter; } ClassDef(Rings, 1) }; #endif