16#ifndef ALICEO2_FWDALIGN_SYMMATRIX_H
17#define ALICEO2_FWDALIGN_SYMMATRIX_H
54 void Clear(Option_t* option =
"")
override;
55 void Reset()
override;
57 Int_t
GetSize()
const override {
return fNrowIndex; }
74 Double_t
operator()(Int_t rown, Int_t coln)
const override;
75 Double_t&
operator()(Int_t rown, Int_t coln)
override;
78 Double_t&
DiagElem(Int_t
r)
override {
return (*
this)(
r,
r); }
84 void Print(
const Option_t* option =
"")
const override;
91 void Scale(Double_t coeff);
99 void MultiplyByVec(
const Double_t* vecIn, Double_t* vecOut)
const override;
101 void MultiplyByVec(
const TVectorD& vecIn, TVectorD& vecOut)
const override;
102 void AddToRow(Int_t
r, Double_t* valc, Int_t* indc, Int_t
n)
override;
109 Error(
"GetRowIndexArray",
"Dummy");
114 Error(
"GetRowIndexArray",
"Dummy");
119 Error(
"GetColIndexArray",
"Dummy");
124 Error(
"GetColIndexArray",
"Dummy");
129 Error(
"SetRowIndexArray",
"Dummy");
134 Error(
"SetColIndexArray",
"Dummy");
139 Error(
"GetSub",
"Dummy");
144 Error(
"GetSub",
"Dummy");
149 Error(
"ResizeTo",
"Dummy");
154 Error(
"ResizeTo",
"Dummy");
185 Bool_t
SolveChol(Double_t* brhs, Double_t* bsol, Bool_t
invert = kFALSE);
187 Bool_t
SolveChol(
const TVectorD& brhs, TVectorD& bsol, Bool_t
invert = kFALSE);
204 int SolveSpmInv(
double* vecB, Bool_t stabilize = kTRUE);
235 if (
row >= fNrowIndex) {
247 if (
row >= fNrowIndex) {
256 MultiplyByVec(vecIn.GetMatrixArray(), vecOut.GetMatrixArray());
262 for (
int i = fNrowIndex;
i--;) {
263 for (
int j =
i;
j--;) {
275 for (
int i =
n;
i--;) {
276 (*this)(indc[
i],
r) += valc[
i];
Abstract class (from AliROOT) for square matrix used for millepede2 operation.
void Swap(int &r, int &c) const
Fast symmetric matrix with dynamically expandable size.
SymMatrix()
default constructor
Double_t operator()(Int_t rown, Int_t coln) const override
void Scale(Double_t coeff)
SymMatrix & operator-=(const SymMatrix &src)
minus operator
Int_t GetSizeUsed() const
static Int_t fgCopyCnt
matrix copy counter
void Print(const Option_t *option="") const override
print itself
TMatrixDBase & GetSub(Int_t, Int_t, Int_t, Int_t, TMatrixDBase &, Option_t *) const override
int SolveSpmInv(double *vecB, Bool_t stabilize=kTRUE)
Obtain solution of a system of linear equations with symmetric matrix and the inverse (using 'singula...
~SymMatrix() override
destructor
const Double_t * GetMatrixArray() const override
Double_t ** fElemsAdd
Elements (rows) added dynamicaly.
Double_t & DiagElem(Int_t r) override
ClassDefOverride(SymMatrix, 0)
void SetEl(Int_t row, Int_t col, Double_t val)
Bool_t SolveChol(Double_t *brhs, Bool_t invert=kFALSE)
Solves the set of n linear equations A x = b.
void AddToRow(Int_t r, Double_t *valc, Int_t *indc, Int_t n) override
void MultiplyByVec(const Double_t *vecIn, Double_t *vecOut) const override
fill vecOut by matrix*vecIn
Int_t GetSize() const override
Double_t * GetMatrixArray() override
Float_t GetDensity() const override
get fraction of non-zero elements
Double_t DiagElem(Int_t r) const override
TMatrixDBase & SetColIndexArray(Int_t *) override
static SymMatrix * fgBuffer
buffer for fast solution
Double_t * fElems
Elements booked by constructor.
TMatrixDBase & ResizeTo(Int_t, Int_t, Int_t, Int_t, Int_t) override
Int_t GetSizeAdded() const
SymMatrix & operator=(const SymMatrix &src)
assignment operator
const Int_t * GetRowIndexArray() const override
Bool_t InvertChol()
Invert matrix using Choleski decomposition.
SymMatrix * DecomposeChol()
Return a matrix with Choleski decomposition.
Double_t GetEl(Int_t row, Int_t col) const
Bool_t SolveCholN(Double_t *bn, int nRHS, Bool_t invert=kFALSE)
Solves the set of n linear equations A x = b; this version solve multiple RHSs at once.
virtual Int_t GetIndex(Int_t row, Int_t col) const
void Clear(Option_t *option="") override
clear dynamic part
TMatrixDBase & SetRowIndexArray(Int_t *) override
Double_t * GetRow(Int_t r)
get pointer on the row
Int_t * GetColIndexArray() override
Int_t GetSizeBooked() const
void AddRows(int nrows=1)
add empty rows
const Int_t * GetColIndexArray() const override
Int_t * GetRowIndexArray() override
SymMatrix & operator+=(const SymMatrix &src)
add operator
TMatrixDBase & ResizeTo(Int_t, Int_t, Int_t) override
void SetSizeUsed(Int_t sz)
Bool_t Multiply(const SymMatrix &right)
multiply from the right
TMatrixDBase & SetSub(Int_t, Int_t, const TMatrixDBase &) override
a couple of static helper functions to create timestamp values for CCDB queries or override obsolete ...