ROOT » MATH » SMATRIX » ROOT::Math::MatRepSym<float,7>

class ROOT::Math::MatRepSym<float,7>


      MatRepStd
      Standard Matrix representation for a general D1 x D2 matrix.
      This class is itself a template on the contained type T, the number of rows and the number of columns.
      Its data member is an array T[nrows*ncols] containing the matrix data.
      The data are stored in the row-major C convention.
      For example, for a matrix, M, of size 3x3, the data \f$ \left[a_0,a_1,a_2,.......,a_7,a_8 \right] \f$d are stored in the following order:
      \f[
      M = \left( \begin{array}{ccc}
      a_0 & a_1 & a_2  \\
      a_3 & a_4  & a_5  \\
      a_6 & a_7  & a_8   \end{array} \right)
      \f]

      @ingroup MatRep

Function Members (Methods)

public:
~MatRepSym<float,7>()
floatapply(unsigned int i) const
float*Array()
const float*Array() const
ROOT::Math::MatRepSym<float,7>MatRepSym<float,7>()
ROOT::Math::MatRepSym<float,7>MatRepSym<float,7>(const ROOT::Math::MatRepSym<float,7>&)
static intoff(int i)
static intoff0(int i)
static intoff1(int i)
static intoff2(int i, int j)
static unsigned intoffset(unsigned int i, unsigned int j)
float&operator()(unsigned int i, unsigned int j)
const float&operator()(unsigned int i, unsigned int j) const
ROOT::Math::MatRepSym<float,7U>&operator+=(const ROOT::Math::MatRepSym<float,7>& rhs)
ROOT::Math::MatRepSym<float,7U>&operator-=(const ROOT::Math::MatRepSym<float,7>& rhs)
ROOT::Math::MatRepSym<float,7U>&operator=(const ROOT::Math::MatRepSym<float,7>& rhs)
ROOT::Math::MatRepSym<float,7U>&operator=<ROOT::Math::MatRepSym<float, 7> >(const ROOT::Math::MatRepSym<float,7>&)
float&operator[](unsigned int i)
const float&operator[](unsigned int i) const

Data Members

public:
static ROOT::Math::MatRepSym<float,7>::(anonymous)kCols
static ROOT::Math::MatRepSym<float,7>::(anonymous)kRows
static ROOT::Math::MatRepSym<float,7>::(anonymous)kSize
private:
floatfArray[28]

Class Charts

Inheritance Inherited Members Includes Libraries
Class Charts

Function documentation

const T& operator()(unsigned int i, unsigned int j) const
T& operator()(unsigned int i, unsigned int j)
T& operator[](unsigned int i)
{ return fArray[i]; }
const T& operator[](unsigned int i) const
{ return fArray[i]; }
T apply(unsigned int i) const
{ return fArray[i]; }
T* Array()
{ return fArray; }
const T* Array() const
{ return fArray; }
MatRepStd<T, D1, D2>& operator+=(const ROOT::Math::MatRepSym<float,7>& rhs)
MatRepStd<T, D1, D2>& operator-=(const ROOT::Math::MatRepSym<float,7>& rhs)
MatRepStd<T, D1, D2>& operator=(const ROOT::Math::MatRepSym<float,7>& rhs)
return fArray[ off(int i)
constexpr int off0(int i)
{ return i==0 ? 0 : off0(i-1)+i;}
constexpr int off2(int i, int j)
{ return j<i ? off0(i)+j : off0(j)+i; }
constexpr int off1(int i)
{ return off2(i/D, i%D);}
offset(unsigned int i, unsigned int j)
if (j > i) std::swap(i, j);