source: Sophya/trunk/SophyaLib/TArray/triangmtx.h@ 1624

Last change on this file since 1624 was 1624, checked in by cmv, 24 years ago

On enleve les SetTemp() inutiles cmv 6/8/01

File size: 2.1 KB
Line 
1// This may look like C code, but it is really -*- C++ -*-
2
3#ifndef TRIANGMTX_H_SEEN
4#define TRIANGMTX_H_SEEN
5
6#include "ndatablock.h"
7#include "pexceptions.h"
8
9// doit etre mis en dehors du namespace
10/*!
11 \class SOPHYA::TriangularMatrix
12 \ingroup TArray
13 Class for inferior triangular matrix (base class for the class Alm)
14*/
15
16namespace SOPHYA {
17
18//! Class for inferior triangular matrix (base class for the class Alm)
19template <class T>
20class TriangularMatrix {
21public :
22
23//! Default constructor
24TriangularMatrix() {};
25//! instanciate a triangular matrix from the number of rows
26TriangularMatrix(int rowSize) : long_diag_((uint_4)rowSize) {elem_.ReSize((uint_4) (rowSize*(rowSize+1)/2) ); };
27//! Copy constructor (possibility of sharing datas)
28TriangularMatrix(const TriangularMatrix<T>& a, bool share=false) : elem_(a.elem_, share), long_diag_(a.long_diag_) {;}
29
30//! resize the matrix with a new number of rows
31inline void ReSizeRow(int rowSize)
32 {
33 long_diag_=(uint_4)rowSize;
34 elem_.ReSize(long_diag_*(long_diag_+1)/2);
35 }
36
37//! Equal operator
38inline TriangularMatrix<T>& operator = (const TriangularMatrix<T>& a)
39{
40 elem_=a.elem_;
41 long_diag_ = a.long_diag_;
42 return *this;
43}
44
45//! () operator : access to elements row \b l and column \b m
46inline T& operator()(int l, int m)
47 {
48 return elem_(adr_ij(l,m));
49 }
50//! () operator : access to elements row \b l and column \b m
51inline T const& operator()(int l, int m) const
52 {
53 return *(elem_.Begin()+ adr_ij(l,m));
54 }
55
56//! Return number of rows
57inline int_4 rowNumber() const {return (int_4)long_diag_;}
58
59private:
60//! compute the address of an element in the single array representing the matrix
61inline uint_4 adr_ij(int i,int j) const
62{
63 // int adr= i*(i+1)/2+j;
64 // if ( adr >= elem_.Size() || adr <0 )
65 //{
66 // cout << " attention depassement dans triangularMatrix " << endl;
67 // cout << " l= " << i << " m= " << j << " tableau reserve longueur " << elem_.Size() << endl;
68 //}
69 return(i*(i+1)/2+j);
70}
71
72uint_4 long_diag_; //!< size of the square matrix
73NDataBlock<T> elem_; //!< Data block
74
75 };
76
77} // namespace SOPHYA
78
79#endif
Note: See TracBrowser for help on using the repository browser.