// ------------------------------------------------------------------------- // ----- CbmVisSector header file ----- // ----- Created 14/03/07 by E. Kryshen ----- // ------------------------------------------------------------------------- /** CbmVisSector *@author Evgeny Kryshen *@since 14.03.07 *@version 1.0 ** **/ #ifndef CBMVISSECTOR_H #define CBMVISSECTOR_H 1 #include "TPolyLine.h" class TString; class CbmVisSector : public TPolyLine{ ClassDef(CbmVisSector,1); public: CbmVisSector(Double_t x0, Double_t y0, Double_t lx, Double_t ly, Double_t phi); ~CbmVisSector(){} TString GetInfo(); protected: Double_t fX0,fY0; // sector coordinates in the global r.f. Double_t fLx,fLy; // sector dimensions Double_t fPhi; // sector rotation in the global r.f. }; #endif