#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; } Int_t CalcRings(Leds &leds, Float_t min=-1, Float_t max=-1); void Print(Option_t *o=NULL) const; void Print(Option_t *o1, Option_t *o2) const { TClonesArray::Print(o1, o2); } void Print(const Option_t*, Int_t) const { } void Print(const Option_t*, const char*, Int_t) const { } void Print(const Option_t*, TPRegexp&, Int_t) 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