///////////////////////////////////////////////////////////////////////// // // class for symmetric matrix // R.Schicker 15-May-00 // ///////////////////////////////////////////////////////////////////////// #ifndef HSYMMAT_H #define HSYMMAT_H using namespace std; #include "TObject.h" #include "TArrayF.h" #include #include class HSymMat : public TObject { protected: Float_t *pData; //! Matrix elements Int_t size; Int_t dim; HSymMat(Int_t dim); Int_t getLinear(Int_t i,Int_t j) const { return (i