//-*- 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 CAFieldValue_H #define CAFieldValue_H struct CAFieldValue{ public: CAFieldValue():fcBz(0){} CAFieldValue(float f):fcBz(f){} operator float() const { return fcBz; } private: float fcBz; }; #endif