//-*- Mode: C++ -*- // ***************************************************************************** // * // @Autors: I.Kulakov; M.Zyzak; I.Kisel * // @e-mail: I.Kulakov@gsi.de; M.Zyzak@gsi.de; I.Kisel@compeng.uni-frankfurt.de * // * // ***************************************************************************** #ifndef ITSCASTRIP_H #define ITSCASTRIP_H class ITSCAStrip { public: ITSCAStrip():fS(0),fIsUsed(true){} ITSCAStrip(float f):fS(f),fIsUsed(false){} operator float() const { return fS; } bool IsUsed() const { return fIsUsed; } void SetAsUsed() { fIsUsed = true; } private: float fS; bool fIsUsed; }; #endif